summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorDavid Cramer <dcramer@gmail.com>2013-01-11 14:12:22 -0800
committerDavid Cramer <dcramer@gmail.com>2013-01-14 13:15:47 -0800
commit272de9eb6baad45abec029aae92c2b7d9478c841 (patch)
tree7f4f0ac6278565bc51655be3dafc445953f420a7 /django
parent4720117a31344483119856fb5ed803fe4c35936f (diff)
Send post_delete signals immediately
In a normal relational construct, if you're listening for an event that signals a child was deleted, you dont expect that the parent was deleted already. This change ensures that post_delete signals are fired immediately after objects are deleted in the graph.
Diffstat (limited to 'django')
-rw-r--r--django/db/models/deletion.py22
1 files changed, 12 insertions, 10 deletions
diff --git a/django/db/models/deletion.py b/django/db/models/deletion.py
index 1c3a582fc5..e4cd89233c 100644
--- a/django/db/models/deletion.py
+++ b/django/db/models/deletion.py
@@ -75,17 +75,17 @@ class Collector(object):
self.using = using
# Initially, {model: set([instances])}, later values become lists.
self.data = {}
- self.field_updates = {} # {model: {(field, value): set([instances])}}
+ self.field_updates = {} # {model: {(field, value): set([instances])}}
# fast_deletes is a list of queryset-likes that can be deleted without
# fetching the objects into memory.
- self.fast_deletes = []
+ self.fast_deletes = []
# Tracks deletion-order dependency for databases without transactions
# or ability to defer constraint checks. Only concrete model classes
# should be included, as the dependencies exist only between actual
# database tables; proxy models are represented here by their concrete
# parent.
- self.dependencies = {} # {model: set([models])}
+ self.dependencies = {} # {model: set([models])}
def add(self, objs, source=None, nullable=False, reverse_dependency=False):
"""
@@ -262,6 +262,14 @@ class Collector(object):
self.data = SortedDict([(model, self.data[model])
for model in sorted_models])
+ def send_post_delete_signals(self, model, instances):
+ if model._meta.auto_created:
+ return
+ for obj in instances:
+ signals.post_delete.send(
+ sender=model, instance=obj, using=self.using
+ )
+
@force_managed
def delete(self):
# sort instance collections
@@ -300,13 +308,7 @@ class Collector(object):
query = sql.DeleteQuery(model)
pk_list = [obj.pk for obj in instances]
query.delete_batch(pk_list, self.using)
-
- # send post_delete signals
- for model, obj in self.instances_with_model():
- if not model._meta.auto_created:
- signals.post_delete.send(
- sender=model, instance=obj, using=self.using
- )
+ self.send_post_delete_signals(model, instances)
# update collected instances
for model, instances_for_fieldvalues in six.iteritems(self.field_updates):