summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/__init__.py2
-rw-r--r--lib/sqlalchemy/orm/dependency.py53
-rw-r--r--lib/sqlalchemy/orm/sync.py3
-rw-r--r--lib/sqlalchemy/orm/unitofwork.py56
4 files changed, 69 insertions, 45 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index 376b13e64..774ac24d9 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -114,6 +114,6 @@ from sqlalchemy.engine import create_engine, engine_from_config
__all__ = sorted(name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)))
-__version__ = '0.6beta3'
+__version__ = '0.6uow_refactor'
del inspect, sys
diff --git a/lib/sqlalchemy/orm/dependency.py b/lib/sqlalchemy/orm/dependency.py
index dd595a052..316c5382d 100644
--- a/lib/sqlalchemy/orm/dependency.py
+++ b/lib/sqlalchemy/orm/dependency.py
@@ -10,7 +10,7 @@
from sqlalchemy import sql, util
import sqlalchemy.exceptions as sa_exc
-from sqlalchemy.orm import attributes, exc, sync, unitofwork
+from sqlalchemy.orm import attributes, exc, sync, unitofwork, util as mapperutil
from sqlalchemy.orm.interfaces import ONETOMANY, MANYTOONE, MANYTOMANY
@@ -42,21 +42,13 @@ class DependencyProcessor(object):
"child are present" %
self.prop)
- def _get_instrumented_attribute(self):
- """Return the ``InstrumentedAttribute`` handled by this
- ``DependencyProecssor``.
-
- """
- return self.parent.class_manager.get_impl(self.key)
-
def hasparent(self, state):
"""return True if the given object instance has a parent,
according to the ``InstrumentedAttribute`` handled by this
``DependencyProcessor``.
"""
- # TODO: use correct API for this
- return self._get_instrumented_attribute().hasparent(state)
+ return self.parent.class_manager.get_impl(self.key).hasparent(state)
def per_property_preprocessors(self, uow):
"""establish actions and dependencies related to a flush.
@@ -326,7 +318,7 @@ class OneToManyDP(DependencyProcessor):
(parent_saves, after_save),
(after_save, child_saves),
(after_save, child_deletes),
-
+
(child_saves, parent_deletes),
(child_deletes, parent_deletes),
@@ -397,6 +389,7 @@ class OneToManyDP(DependencyProcessor):
uowcommit.register_object(child, isdelete=True)
else:
uowcommit.register_object(child)
+
if should_null_fks:
for child in history.unchanged:
if child is not None:
@@ -404,15 +397,23 @@ class OneToManyDP(DependencyProcessor):
def presort_saves(self, uowcommit, states):
+ children_added = uowcommit.memo(('children_added', self), set)
+
for state in states:
+ pks_changed = self._pks_changed(uowcommit, state)
+
history = uowcommit.get_attribute_history(
state,
self.key,
- passive=True)
+ passive=not pks_changed
+ or self.passive_updates)
if history:
for child in history.added:
if child is not None:
- uowcommit.register_object(child)
+ uowcommit.register_object(child, cancel_delete=True)
+
+ children_added.update(history.added)
+
for child in history.deleted:
if not self.cascade.delete_orphan:
uowcommit.register_object(child, isdelete=False)
@@ -422,11 +423,8 @@ class OneToManyDP(DependencyProcessor):
uowcommit.register_object(
attributes.instance_state(c),
isdelete=True)
- if self._pks_changed(uowcommit, state):
- if not history:
- history = uowcommit.get_attribute_history(
- state, self.key,
- passive=self.passive_updates)
+
+ if pks_changed:
if history:
for child in history.unchanged:
if child is not None:
@@ -442,6 +440,8 @@ class OneToManyDP(DependencyProcessor):
# safely for any cascade but is unnecessary if delete cascade
# is on.
if self.post_update or not self.passive_deletes == 'all':
+ children_added = uowcommit.memo(('children_added', self), set)
+
for state in states:
history = uowcommit.get_attribute_history(
state,
@@ -461,7 +461,8 @@ class OneToManyDP(DependencyProcessor):
uowcommit,
[state])
if self.post_update or not self.cascade.delete:
- for child in history.unchanged:
+ for child in set(history.unchanged).\
+ difference(children_added):
if child is not None:
self._synchronize(
state,
@@ -472,7 +473,11 @@ class OneToManyDP(DependencyProcessor):
child,
uowcommit,
[state])
-
+ # technically, we can even remove each child from the
+ # collection here too. but this would be a somewhat
+ # inconsistent behavior since it wouldn't happen if the old
+ # parent wasn't deleted but child was moved.
+
def process_saves(self, uowcommit, states):
for state in states:
history = uowcommit.get_attribute_history(state, self.key, passive=True)
@@ -731,10 +736,10 @@ class DetectKeySwitch(DependencyProcessor):
self._process_key_switches(states, uowcommit)
def _key_switchers(self, uow, states):
- if ('pk_switchers', self) in uow.attributes:
- switched, notswitched = uow.attributes[('pk_switchers', self)]
- else:
- uow.attributes[('pk_switchers', self)] = (switched, notswitched) = (set(), set())
+ switched, notswitched = uow.memo(
+ ('pk_switchers', self),
+ lambda: (set(), set())
+ )
allstates = switched.union(notswitched)
for s in states:
diff --git a/lib/sqlalchemy/orm/sync.py b/lib/sqlalchemy/orm/sync.py
index b9ddbb6e7..184ae8c84 100644
--- a/lib/sqlalchemy/orm/sync.py
+++ b/lib/sqlalchemy/orm/sync.py
@@ -75,8 +75,7 @@ def source_modified(uowcommit, source, source_mapper, synchronize_pairs):
except exc.UnmappedColumnError:
_raise_col_to_prop(False, source_mapper, l, None, r)
history = uowcommit.get_attribute_history(source, prop.key, passive=True)
- if len(history.deleted):
- return True
+ return bool(history.deleted)
else:
return False
diff --git a/lib/sqlalchemy/orm/unitofwork.py b/lib/sqlalchemy/orm/unitofwork.py
index 1095c1347..2c616943f 100644
--- a/lib/sqlalchemy/orm/unitofwork.py
+++ b/lib/sqlalchemy/orm/unitofwork.py
@@ -12,13 +12,12 @@ organizes them in order of dependency, and executes.
"""
-from sqlalchemy import util, log, topological
+from sqlalchemy import util, topological
from sqlalchemy.orm import attributes, interfaces
from sqlalchemy.orm import util as mapperutil
from sqlalchemy.orm.util import _state_mapper
# Load lazily
-object_session = None
_state_session = None
class UOWEventHandler(interfaces.AttributeExtension):
@@ -90,10 +89,10 @@ class UOWTransaction(object):
# as a parent.
self.mappers = util.defaultdict(set)
- # a set of Preprocess objects, which gather
+ # a dictionary of Preprocess objects, which gather
# additional states impacted by the flush
# and determine if a flush action is needed
- self.presort_actions = set()
+ self.presort_actions = {}
# dictionary of PostSortRec objects, each
# one issues work during the flush within
@@ -121,6 +120,13 @@ class UOWTransaction(object):
return state in self.states and self.states[state][0]
+ def memo(self, key, callable_):
+ if key in self.attributes:
+ return self.attributes[key]
+ else:
+ self.attributes[key] = ret = callable_()
+ return ret
+
def remove_state_actions(self, state):
"""remove pending actions for a state from the uowtransaction."""
@@ -139,10 +145,10 @@ class UOWTransaction(object):
# if the cached lookup was "passive" and now we want non-passive, do a non-passive
# lookup and re-cache
if cached_passive and not passive:
- history = attributes.get_state_history(state, key, passive=False)
+ history = state.get_history(key, passive=False)
self.attributes[hashkey] = (history, passive)
else:
- history = attributes.get_state_history(state, key, passive=passive)
+ history = state.get_history(key, passive=passive)
self.attributes[hashkey] = (history, passive)
if not history or not state.get_impl(key).uses_objects:
@@ -151,9 +157,12 @@ class UOWTransaction(object):
return history.as_state()
def register_preprocessor(self, processor, fromparent):
- self.presort_actions.add(Preprocess(processor, fromparent))
+ key = (processor, fromparent)
+ if key not in self.presort_actions:
+ self.presort_actions[key] = Preprocess(processor, fromparent)
- def register_object(self, state, isdelete=False, listonly=False):
+ def register_object(self, state, isdelete=False,
+ listonly=False, cancel_delete=False):
if not self.session._contains_state(state):
return
@@ -166,11 +175,8 @@ class UOWTransaction(object):
self.mappers[mapper].add(state)
self.states[state] = (isdelete, listonly)
else:
- existing_isdelete, existing_listonly = self.states[state]
- self.states[state] = (
- existing_isdelete or isdelete,
- existing_listonly and listonly
- )
+ if not listonly and (isdelete or cancel_delete):
+ self.states[state] = (isdelete, False)
def issue_post_update(self, state, post_update_cols):
mapper = state.manager.mapper.base_mapper
@@ -180,11 +186,23 @@ class UOWTransaction(object):
@util.memoized_property
def _mapper_for_dep(self):
+ """return a dynamic mapping of (Mapper, DependencyProcessor) to
+ True or False, indicating if the DependencyProcessor operates
+ on objects of that Mapper.
+
+ The result is stored in the dictionary persistently once
+ calculated.
+
+ """
return util.PopulateDict(
lambda tup:tup[0]._props.get(tup[1].key) is tup[1].prop
)
def filter_states_for_dep(self, dep, states):
+ """Filter the given list of InstanceStates to those relevant to the
+ given DependencyProcessor.
+
+ """
mapper_for_dep = self._mapper_for_dep
return [s for s in states if mapper_for_dep[(s.manager.mapper, dep)]]
@@ -196,12 +214,16 @@ class UOWTransaction(object):
yield state
def _generate_actions(self):
+ """Generate the full, unsorted collection of PostSortRecs as
+ well as dependency pairs for this UOWTransaction.
+
+ """
# execute presort_actions, until all states
# have been processed. a presort_action might
# add new states to the uow.
while True:
ret = False
- for action in list(self.presort_actions):
+ for action in list(self.presort_actions.values()):
if action.execute(self):
ret = True
if not ret:
@@ -211,7 +233,7 @@ class UOWTransaction(object):
self.cycles = cycles = topological.find_cycles(
self.dependencies,
self.postsort_actions.values())
-
+
if cycles:
# if yes, break the per-mapper actions into
# per-state actions
@@ -248,7 +270,7 @@ class UOWTransaction(object):
#sort = topological.sort(self.dependencies, postsort_actions)
#print "--------------"
#print self.dependencies
- #print postsort_actions
+ #print list(sort)
#print "COUNT OF POSTSORT ACTIONS", len(postsort_actions)
# execute
@@ -281,8 +303,6 @@ class UOWTransaction(object):
# debug... would like to see how many do this
self.session._register_newly_persistent(state)
-log.class_logger(UOWTransaction)
-
class IterateMappersMixin(object):
def _mappers(self, uow):
if self.fromparent: