summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/events.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-10-28 19:07:56 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-10-28 19:07:56 -0400
commitfb10b94e710a531203b73bd440aa149e18e3d06d (patch)
treeade43c52ccd3bee851730da435529b0e91a26a82 /lib/sqlalchemy/orm/events.py
parenta13812606cc49909eb0bdceccfd899359e098ca2 (diff)
downloadsqlalchemy-fb10b94e710a531203b73bd440aa149e18e3d06d.tar.gz
- do a straight __subclasses__ traversal here, so that we aren't
iterating through all mappers in memory when a new event is tacked onto an unmapped superclass, also removes the strong ref that was breaking some GC teardown tests
Diffstat (limited to 'lib/sqlalchemy/orm/events.py')
-rw-r--r--lib/sqlalchemy/orm/events.py24
1 files changed, 15 insertions, 9 deletions
diff --git a/lib/sqlalchemy/orm/events.py b/lib/sqlalchemy/orm/events.py
index 858c6e5a3..8f9680911 100644
--- a/lib/sqlalchemy/orm/events.py
+++ b/lib/sqlalchemy/orm/events.py
@@ -336,32 +336,36 @@ class _EventsHold(object):
else:
collection = target.all_holds[target.class_] = []
- collection.append((target.class_, identifier, fn, raw, propagate))
+ collection.append((identifier, fn, raw, propagate))
if propagate:
- for subject_dispatch, (subclass, subject) in \
- target.established.items():
- if issubclass(subclass, target.class_):
- subject_dispatch._listen(subject, identifier, fn,
+ stack = list(target.class_.__subclasses__())
+ while stack:
+ subclass = stack.pop(0)
+ stack.extend(subclass.__subclasses__())
+ subject = target.resolve(subclass)
+ if subject is not None:
+ subject.dispatch._listen(subject, identifier, fn,
raw=raw, propagate=propagate)
@classmethod
def populate(cls, class_, subject):
- cls.established[subject.dispatch] = (class_, subject)
for subclass in class_.__mro__:
if subclass in cls.all_holds:
if subclass is class_:
collection = cls.all_holds.pop(subclass)
else:
collection = cls.all_holds[subclass]
- for target, ident, fn, raw, propagate in collection:
+ for ident, fn, raw, propagate in collection:
if propagate or subclass is class_:
subject.dispatch._listen(subject, ident,
fn, raw, propagate)
class _InstanceEventsHold(_EventsHold):
all_holds = weakref.WeakKeyDictionary()
- established = weakref.WeakKeyDictionary()
+
+ def resolve(self, class_):
+ return orm.instrumentation.manager_of_class(class_)
class HoldInstanceEvents(_EventsHold.HoldEvents, InstanceEvents):
pass
@@ -1029,7 +1033,9 @@ class MapperEvents(event.Events):
class _MapperEventsHold(_EventsHold):
all_holds = weakref.WeakKeyDictionary()
- established = weakref.WeakKeyDictionary()
+
+ def resolve(self, class_):
+ return orm.util._mapper_or_none(class_)
class HoldMapperEvents(_EventsHold.HoldEvents, MapperEvents):
pass