diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-10-04 13:50:36 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-10-04 13:50:36 -0400 |
| commit | 1c3e3225521647cc843a633e34ed84e1ca4e797a (patch) | |
| tree | f844e59c46b8df996c77e27f65dd6840ce1e49ed | |
| parent | f3e12698fbf03bc7c11a90f6d78d2b2a5efa70fd (diff) | |
| download | sqlalchemy-1c3e3225521647cc843a633e34ed84e1ca4e797a.tar.gz | |
- [feature] The Session will produce warnings
when unsupported methods are used inside the
"execute" portion of the flush. These are
the familiar methods add(), delete(), etc.
as well as collection and related-object
manipulations, as called within mapper-level
flush events
like after_insert(), after_update(), etc.
It's been prominently documented for a long
time that SQLAlchemy cannot guarantee
results when the Session is manipulated within
the execution of the flush plan,
however users are still doing it, so now
there's a warning. Maybe someday the Session
will be enhanced to support these operations
inside of the flush, but for now, results
can't be guaranteed.
| -rw-r--r-- | CHANGES | 18 | ||||
| -rw-r--r-- | lib/sqlalchemy/orm/session.py | 30 | ||||
| -rw-r--r-- | lib/sqlalchemy/orm/unitofwork.py | 15 | ||||
| -rw-r--r-- | test/orm/test_session.py | 93 |
4 files changed, 153 insertions, 3 deletions
@@ -228,6 +228,24 @@ underneath "0.7.xx". need autoflush w pre-attached object. [ticket:2464] + - [feature] The Session will produce warnings + when unsupported methods are used inside the + "execute" portion of the flush. These are + the familiar methods add(), delete(), etc. + as well as collection and related-object + manipulations, as called within mapper-level + flush events + like after_insert(), after_update(), etc. + It's been prominently documented for a long + time that SQLAlchemy cannot guarantee + results when the Session is manipulated within + the execution of the flush plan, + however users are still doing it, so now + there's a warning. Maybe someday the Session + will be enhanced to support these operations + inside of the flush, but for now, results + can't be guaranteed. + - [feature] ORM entities can be passed to select() as well as the select_from(), correlate(), and correlate_except() diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index 1df9d45ca..dcbd6ba7e 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -555,6 +555,7 @@ class Session(_SessionClassMethods): self.bind = bind self.__binds = {} self._flushing = False + self._warn_on_events = False self.transaction = None self.hash_key = _new_sessionid() self.autoflush = autoflush @@ -1323,7 +1324,7 @@ class Session(_SessionClassMethods): self._deleted.pop(state, None) state.deleted = True - def add(self, instance): + def add(self, instance, _warn=True): """Place an object in the ``Session``. Its state will be persisted to the database on the next flush @@ -1333,6 +1334,9 @@ class Session(_SessionClassMethods): is ``expunge()``. """ + if _warn and self._warn_on_events: + self._flush_warning("Session.add()") + try: state = attributes.instance_state(instance) except exc.NO_STATE: @@ -1343,8 +1347,11 @@ class Session(_SessionClassMethods): def add_all(self, instances): """Add the given collection of instances to this ``Session``.""" + if self._warn_on_events: + self._flush_warning("Session.add_all()") + for instance in instances: - self.add(instance) + self.add(instance, _warn=False) def _save_or_update_state(self, state): self._save_or_update_impl(state) @@ -1362,6 +1369,9 @@ class Session(_SessionClassMethods): The database delete operation occurs upon ``flush()``. """ + if self._warn_on_events: + self._flush_warning("Session.delete()") + try: state = attributes.instance_state(instance) except exc.NO_STATE: @@ -1436,6 +1446,9 @@ class Session(_SessionClassMethods): """ + if self._warn_on_events: + self._flush_warning("Session.merge()") + _recursive = {} if load: @@ -1744,6 +1757,13 @@ class Session(_SessionClassMethods): finally: self._flushing = False + def _flush_warning(self, method): + util.warn("Usage of the '%s' operation is not currently supported " + "within the execution stage of the flush process. " + "Results may not be consistent. Consider using alternative " + "event listeners or connection-level operations instead." + % method) + def _is_clean(self): return not self.identity_map.check_modified() and \ not self._deleted and \ @@ -1811,7 +1831,11 @@ class Session(_SessionClassMethods): flush_context.transaction = transaction = self.begin( subtransactions=True) try: - flush_context.execute() + self._warn_on_events = True + try: + flush_context.execute() + finally: + self._warn_on_events = False self.dispatch.after_flush(self, flush_context) diff --git a/lib/sqlalchemy/orm/unitofwork.py b/lib/sqlalchemy/orm/unitofwork.py index 5fb7a55e5..1cba58321 100644 --- a/lib/sqlalchemy/orm/unitofwork.py +++ b/lib/sqlalchemy/orm/unitofwork.py @@ -34,6 +34,9 @@ def track_cascade_events(descriptor, prop): sess = sessionlib._state_session(state) if sess: + if sess._warn_on_events: + sess._flush_warning("collection append") + prop = state.manager.mapper._props[key] item_state = attributes.instance_state(item) if prop.cascade.save_update and \ @@ -48,7 +51,15 @@ def track_cascade_events(descriptor, prop): sess = sessionlib._state_session(state) if sess: + prop = state.manager.mapper._props[key] + + if sess._warn_on_events: + sess._flush_warning( + "collection remove" + if prop.uselist + else "related attribute delete") + # expunge pending orphans item_state = attributes.instance_state(item) if prop.cascade.delete_orphan and \ @@ -64,6 +75,10 @@ def track_cascade_events(descriptor, prop): sess = sessionlib._state_session(state) if sess: + + if sess._warn_on_events: + sess._flush_warning("related attribute set") + prop = state.manager.mapper._props[key] if newvalue is not None: newvalue_state = attributes.instance_state(newvalue) diff --git a/test/orm/test_session.py b/test/orm/test_session.py index 914aefa81..b9cc41d28 100644 --- a/test/orm/test_session.py +++ b/test/orm/test_session.py @@ -16,6 +16,8 @@ from sqlalchemy.orm import mapper, relationship, backref, joinedload, \ from sqlalchemy.util import pypy from sqlalchemy.testing import fixtures from test.orm import _fixtures +from sqlalchemy import event, ForeignKey + class SessionTest(_fixtures.FixtureTest): run_inserts = None @@ -1386,3 +1388,94 @@ class TLTransactionTest(fixtures.MappedTest): sess.flush() self.bind.commit() + + +class FlushWarningsTest(fixtures.MappedTest): + run_setup_mappers = 'each' + + @classmethod + def define_tables(cls, metadata): + Table('user', metadata, + Column('id', Integer, primary_key=True, + test_needs_autoincrement=True), + Column('name', String(20)) + ) + + Table('address', metadata, + Column('id', Integer, primary_key=True, + test_needs_autoincrement=True), + Column('user_id', Integer, ForeignKey('user.id')), + Column('email', String(20)) + ) + + @classmethod + def setup_classes(cls): + class User(cls.Basic): + pass + class Address(cls.Basic): + pass + + @classmethod + def setup_mappers(cls): + user, User = cls.tables.user, cls.classes.User + address, Address = cls.tables.address, cls.classes.Address + mapper(User, user, properties={ + 'addresses': relationship(Address, backref="user") + }) + mapper(Address, address) + + def test_o2m_cascade_add(self): + Address = self.classes.Address + def evt(mapper, conn, instance): + instance.addresses.append(Address(email='x1')) + self._test(evt, "collection append") + + def test_o2m_cascade_remove(self): + def evt(mapper, conn, instance): + del instance.addresses[0] + self._test(evt, "collection remove") + + def test_m2o_cascade_add(self): + User = self.classes.User + def evt(mapper, conn, instance): + instance.addresses[0].user = User(name='u2') + self._test(evt, "related attribute set") + + def test_m2o_cascade_remove(self): + def evt(mapper, conn, instance): + a1 = instance.addresses[0] + del a1.user + self._test(evt, "related attribute delete") + + def test_plain_add(self): + Address = self.classes.Address + def evt(mapper, conn, instance): + object_session(instance).add(Address(email='x1')) + self._test(evt, "Session.add\(\)") + + def test_plain_merge(self): + Address = self.classes.Address + def evt(mapper, conn, instance): + object_session(instance).merge(Address(email='x1')) + self._test(evt, "Session.merge\(\)") + + def test_plain_delete(self): + Address = self.classes.Address + def evt(mapper, conn, instance): + object_session(instance).delete(Address(email='x1')) + self._test(evt, "Session.delete\(\)") + + def _test(self, fn, method): + User = self.classes.User + Address = self.classes.Address + + s = Session() + event.listen(User, "after_insert", fn) + + u1 = User(name='u1', addresses=[Address(name='a1')]) + s.add(u1) + assert_raises_message( + sa.exc.SAWarning, + "Usage of the '%s'" % method, + s.commit + ) |
