Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
import copy
|
|
|
|
|
|
|
|
from django.db.models.query import QuerySet, EmptyQuerySet, insert_query
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.dispatch import dispatcher
|
|
|
|
from django.db.models import signals
|
2006-06-15 22:05:33 +08:00
|
|
|
from django.db.models.fields import FieldDoesNotExist
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def ensure_default_manager(sender):
|
|
|
|
cls = sender
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
if not getattr(cls, '_default_manager', None) and not cls._meta.abstract:
|
2006-05-02 09:31:56 +08:00
|
|
|
# Create the default manager, if needed.
|
2006-06-15 22:05:33 +08:00
|
|
|
try:
|
|
|
|
cls._meta.get_field('objects')
|
|
|
|
raise ValueError, "Model %s must specify a custom Manager, because it has a field named 'objects'" % cls.__name__
|
|
|
|
except FieldDoesNotExist:
|
|
|
|
pass
|
2006-05-02 09:31:56 +08:00
|
|
|
cls.add_to_class('objects', Manager())
|
|
|
|
|
|
|
|
dispatcher.connect(ensure_default_manager, signal=signals.class_prepared)
|
|
|
|
|
|
|
|
class Manager(object):
|
|
|
|
# Tracks each time a Manager instance is created. Used to retain order.
|
|
|
|
creation_counter = 0
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(Manager, self).__init__()
|
|
|
|
# Increase the creation counter, and save our local copy.
|
|
|
|
self.creation_counter = Manager.creation_counter
|
|
|
|
Manager.creation_counter += 1
|
|
|
|
self.model = None
|
|
|
|
|
|
|
|
def contribute_to_class(self, model, name):
|
|
|
|
# TODO: Use weakref because of possible memory leak / circular reference.
|
|
|
|
self.model = model
|
|
|
|
setattr(model, name, ManagerDescriptor(self))
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
if not getattr(model, '_default_manager', None) or self.creation_counter < model._default_manager.creation_counter:
|
2006-05-02 09:31:56 +08:00
|
|
|
model._default_manager = self
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def _copy_to_model(self, model):
|
|
|
|
"""
|
|
|
|
Makes a copy of the manager and assigns it to 'model', which should be
|
|
|
|
a child of the existing model (used when inheriting a manager from an
|
|
|
|
abstract base class).
|
|
|
|
"""
|
|
|
|
assert issubclass(model, self.model)
|
|
|
|
mgr = copy.copy(self)
|
|
|
|
mgr.model = model
|
|
|
|
return mgr
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
#######################
|
|
|
|
# PROXIES TO QUERYSET #
|
|
|
|
#######################
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2007-01-23 10:11:08 +08:00
|
|
|
def get_empty_query_set(self):
|
|
|
|
return EmptyQuerySet(self.model)
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def get_query_set(self):
|
|
|
|
"""Returns a new QuerySet object. Subclasses can override this method
|
2007-08-07 04:27:04 +08:00
|
|
|
to easily customize the behavior of the Manager.
|
2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
return QuerySet(self.model)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2007-01-23 10:11:08 +08:00
|
|
|
def none(self):
|
|
|
|
return self.get_empty_query_set()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
def all(self):
|
|
|
|
return self.get_query_set()
|
|
|
|
|
|
|
|
def count(self):
|
|
|
|
return self.get_query_set().count()
|
|
|
|
|
|
|
|
def dates(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().dates(*args, **kwargs)
|
|
|
|
|
|
|
|
def distinct(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().distinct(*args, **kwargs)
|
|
|
|
|
|
|
|
def extra(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().extra(*args, **kwargs)
|
|
|
|
|
|
|
|
def get(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().get(*args, **kwargs)
|
|
|
|
|
2006-06-28 04:36:25 +08:00
|
|
|
def get_or_create(self, **kwargs):
|
|
|
|
return self.get_query_set().get_or_create(**kwargs)
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
2006-06-28 04:36:25 +08:00
|
|
|
def create(self, **kwargs):
|
|
|
|
return self.get_query_set().create(**kwargs)
|
2006-06-07 08:09:29 +08:00
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
def filter(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().filter(*args, **kwargs)
|
|
|
|
|
2006-05-06 08:26:24 +08:00
|
|
|
def complex_filter(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().complex_filter(*args, **kwargs)
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
def exclude(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().exclude(*args, **kwargs)
|
|
|
|
|
|
|
|
def in_bulk(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().in_bulk(*args, **kwargs)
|
|
|
|
|
|
|
|
def iterator(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().iterator(*args, **kwargs)
|
|
|
|
|
|
|
|
def latest(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().latest(*args, **kwargs)
|
|
|
|
|
|
|
|
def order_by(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().order_by(*args, **kwargs)
|
|
|
|
|
|
|
|
def select_related(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().select_related(*args, **kwargs)
|
|
|
|
|
|
|
|
def values(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().values(*args, **kwargs)
|
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
def values_list(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().values_list(*args, **kwargs)
|
|
|
|
|
|
|
|
def update(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().update(*args, **kwargs)
|
|
|
|
|
|
|
|
def reverse(self, *args, **kwargs):
|
|
|
|
return self.get_query_set().reverse(*args, **kwargs)
|
|
|
|
|
|
|
|
def _insert(self, values, **kwargs):
|
|
|
|
return insert_query(self.model, values, **kwargs)
|
|
|
|
|
|
|
|
def _update(self, values, **kwargs):
|
|
|
|
return self.get_query_set()._update(values, **kwargs)
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
class ManagerDescriptor(object):
|
|
|
|
# This class ensures managers aren't accessible via model instances.
|
|
|
|
# For example, Poll.objects works, but poll_obj.objects raises AttributeError.
|
|
|
|
def __init__(self, manager):
|
|
|
|
self.manager = manager
|
|
|
|
|
|
|
|
def __get__(self, instance, type=None):
|
|
|
|
if instance != None:
|
|
|
|
raise AttributeError, "Manager isn't accessible via %s instances" % type.__name__
|
|
|
|
return self.manager
|
2007-09-16 02:01:29 +08:00
|
|
|
|
|
|
|
class EmptyManager(Manager):
|
|
|
|
def get_query_set(self):
|
|
|
|
return self.get_empty_query_set()
|