Removed CollectionManager, moved work to QuerySet

As CollectionManager has been replaced with QuerySet and
QuerySetManager, collection.py has been renamed queryset.py.
This commit is contained in:
Harry Marr
2009-11-22 16:46:08 +00:00
parent 70ee0f57ea
commit d4fc5c9260
6 changed files with 67 additions and 62 deletions

View File

@@ -1,4 +1,4 @@
from collection import CollectionManager
from queryset import QuerySetManager
import pymongo
@@ -153,7 +153,7 @@ class TopLevelDocumentMetaclass(DocumentMetaclass):
# Set up collection manager, needs the class to have fields so use
# DocumentMetaclass before instantiating CollectionManager object
new_class = super_new(cls, name, bases, attrs)
new_class.objects = CollectionManager(new_class)
new_class.objects = QuerySetManager(new_class)
return new_class

View File

@@ -18,7 +18,8 @@ class Document(BaseDocument):
"""Save the document to the database. If the document already exists,
it will be updated, otherwise it will be created.
"""
self.objects._save_document(self)
_id = self.objects._collection.save(self._to_mongo())
self._id = _id
@classmethod
def drop_collection(cls):

View File

@@ -145,7 +145,8 @@ class ReferenceField(BaseField):
# Dereference DBRefs
if isinstance(value, (pymongo.dbref.DBRef)):
value = _get_db().dereference(value)
instance._data[self.name] = self.document_type._from_son(value)
if value is not None:
instance._data[self.name] = self.document_type._from_son(value)
return super(ReferenceField, self).__get__(instance, owner)

View File

@@ -8,14 +8,18 @@ class QuerySet(object):
providing Document objects as the results.
"""
def __init__(self, document, collection, query):
def __init__(self, document, collection):
self._document = document
self._collection = collection
self._query = QuerySet._transform_query(**query)
self._query['_types'] = self._document._class_name
self._query = {'_types': self._document._class_name}
self._cursor_obj = None
def __call__(self, **query):
"""Filter the selected documents by calling the queryset with a query.
"""
self._query.update(QuerySet._transform_query(**query))
return self
@property
def _cursor(self):
if not self._cursor_obj:
@@ -42,6 +46,25 @@ class QuerySet(object):
return mongo_query
def first(self):
"""Retrieve the first object matching the query.
"""
result = self._collection.find_one(self._query)
if result is not None:
result = self._document._from_son(result)
return result
def with_id(self, object_id):
"""Retrieve the object matching the _id provided.
"""
if not isinstance(object_id, pymongo.objectid.ObjectId):
object_id = pymongo.objectid.ObjectId(object_id)
result = self._collection.find_one(object_id)
if result is not None:
result = self._document._from_son(result)
return result
def next(self):
"""Wrap the result in a Document object.
"""
@@ -74,42 +97,22 @@ class QuerySet(object):
return self
class CollectionManager(object):
class QuerySetManager(object):
def __init__(self, document):
"""Set up the collection manager for a specific document.
"""
db = _get_db()
self._document = document
self._collection_name = document._meta['collection']
# This will create the collection if it doesn't exist
self._collection = db[self._collection_name]
def _save_document(self, document):
"""Save the provided document to the collection.
def __get__(self, instance, owner):
"""Descriptor for instantiating a new QuerySet object when
Document.objects is accessed.
"""
_id = self._collection.save(document._to_mongo())
document._id = _id
def find(self, **query):
"""Query the collection for documents matching the provided query.
"""
return QuerySet(self._document, self._collection, query)
def find_one(self, object_id=None, **query):
"""Query the collection for document matching the provided query.
"""
if object_id:
# Use just object_id if provided
if not isinstance(object_id, pymongo.objectid.ObjectId):
object_id = pymongo.objectid.ObjectId(object_id)
query = object_id
else:
# Otherwise, use the query provided
query = QuerySet._transform_query(**query)
query['_types'] = self._document._class_name
result = self._collection.find_one(query)
if result is not None:
result = self._document._from_son(result)
return result
if instance is not None:
# Document class being used rather than a document object
return self
# self._document should be the same as owner
return QuerySet(self._document, self._collection)