Commit 27f3a173 authored by Jim Fulton's avatar Jim Fulton Committed by GitHub

Merge pull request #98 from zopefoundation/issue97

Call _p_resolveConflict() even if a conflicting change doesn't change the state
parents b53c7019 7d436f39
...@@ -2,6 +2,12 @@ ...@@ -2,6 +2,12 @@
Change History Change History
================ ================
4.4.4 (unreleased)
==================
- Call _p_resolveConflict() even if a conflicting change doesn't change the
state. This reverts to the behaviour of 3.10.3 and older.
4.4.3 (2016-08-04) 4.4.3 (2016-08-04)
================== ==================
......
...@@ -271,13 +271,6 @@ def tryToResolveConflict(self, oid, committedSerial, oldSerial, newpickle, ...@@ -271,13 +271,6 @@ def tryToResolveConflict(self, oid, committedSerial, oldSerial, newpickle,
if not committedData: if not committedData:
committedData = self.loadSerial(oid, committedSerial) committedData = self.loadSerial(oid, committedSerial)
if newpickle == oldData:
# old -> new diff is empty, so merge is trivial
return committedData
if committedData == oldData:
# old -> committed diff is empty, so merge is trivial
return newpickle
newstate = unpickler.load() newstate = unpickler.load()
old = state(self, oid, oldSerial, prfactory, oldData) old = state(self, oid, oldSerial, prfactory, oldData)
committed = state(self, oid, committedSerial, prfactory, committedData) committed = state(self, oid, committedSerial, prfactory, committedData)
......
...@@ -40,6 +40,15 @@ def tearDown(test): ...@@ -40,6 +40,15 @@ def tearDown(test):
class ResolveableWhenStateDoesNotChange(persistent.Persistent): class ResolveableWhenStateDoesNotChange(persistent.Persistent):
def _p_resolveConflict(self, old, committed, new): def _p_resolveConflict(self, old, committed, new):
if new == old:
# old -> new diff is empty, so merge is trivial
committed['resolved'] = 'committed'
return committed
elif committed == old:
# old -> committed diff is empty, so merge is trivial
new['resolved'] = 'new'
return new
# 3-way merge
raise ZODB.POSException.ConflictError raise ZODB.POSException.ConflictError
class Unresolvable(persistent.Persistent): class Unresolvable(persistent.Persistent):
...@@ -47,8 +56,17 @@ class Unresolvable(persistent.Persistent): ...@@ -47,8 +56,17 @@ class Unresolvable(persistent.Persistent):
def succeed_with_resolution_when_state_is_unchanged(): def succeed_with_resolution_when_state_is_unchanged():
""" """
If a conflicting change doesn't change the state, then don't even If a conflicting change doesn't change the state, then we must still call
bother calling _p_resolveConflict _p_resolveConflict, even if in most cases the result would be either
committed or new (as shown above in ResolveableWhenStateDoesNotChange).
One use case is to implement an "asynchronous" cache:
- Initially, a cache value is not filled (e.g. None is used to describe
this state).
- A transaction fills the cache (actually done by a background application)
(None -> "foo").
- A concurrent transaction invalidates the cache due to some user action
(None -> None), and pushes a new background task to fill the cache.
Then the expected resolved value is None, and not "foo".
>>> db = ZODB.DB('t.fs') # FileStorage! >>> db = ZODB.DB('t.fs') # FileStorage!
>>> storage = db.storage >>> storage = db.storage
...@@ -63,23 +81,23 @@ def succeed_with_resolution_when_state_is_unchanged(): ...@@ -63,23 +81,23 @@ def succeed_with_resolution_when_state_is_unchanged():
>>> oid = conn.root.x._p_oid >>> oid = conn.root.x._p_oid
So, let's try resolving when the old and committed states are the same So, let's try resolving when the old and committed states are the same
bit the new state (pickle) is different: but the new state (pickle) is different:
>>> p = storage.tryToResolveConflict( >>> p = storage.tryToResolveConflict(
... oid, serial1, serial1, storage.loadSerial(oid, serial2)) ... oid, serial1, serial1, storage.loadSerial(oid, serial2))
>>> p == storage.loadSerial(oid, serial2) >>> conn._reader.getState(p)['resolved']
True 'new'
And when the old and new states are the same bit the committed state And when the old and new states are the same but the committed state
is different: is different:
>>> p = storage.tryToResolveConflict( >>> p = storage.tryToResolveConflict(
... oid, serial2, serial1, storage.loadSerial(oid, serial1)) ... oid, serial2, serial1, storage.loadSerial(oid, serial1))
>>> p == storage.loadSerial(oid, serial2) >>> conn._reader.getState(p)['resolved']
True 'committed'
But we still conflict if both the committed and new are different than But we still conflict if both the committed and new are different than
the original: the original:
...@@ -92,7 +110,9 @@ the original: ...@@ -92,7 +110,9 @@ the original:
ConflictError: database conflict error (oid 0x01, ... ConflictError: database conflict error (oid 0x01, ...
Of course, none of this applies if content doesn't support conflict resolution. Of course, there's also no automatic trivial merge if content doesn't support
conflict resolution. Touching an object without change is a common locking
mechanism.
>>> conn.root.y = Unresolvable() >>> conn.root.y = Unresolvable()
>>> conn.root.y.v = 1 >>> conn.root.y.v = 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment