Skip to content

Commit

Permalink
Merge branch 'master' of github.com:zopefoundation/ZODB
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Jul 4, 2016
2 parents a2ae670 + 50f6ba2 commit d5a765f
Show file tree
Hide file tree
Showing 14 changed files with 145 additions and 72 deletions.
8 changes: 7 additions & 1 deletion CHANGES.rst
Expand Up @@ -11,7 +11,7 @@ release and to make complient storages introspectable.
5.0.0a2 (2016-07-01)
====================

See the 4.4.0 release.
See the 4.4.x releases.

5.0.0a1 (2016-06-20)
====================
Expand All @@ -29,6 +29,12 @@ Concurrency Control (MVCC) implementation:
This change allows server-nased storages like ZEO and NEO to be
implemented more simply and cleanly.

4.4.1 (2016-07-01)
==================

Added IMultiCommitStorage to directly represent the changes in the 4.4.0
release and to make complient storages introspectable.

4.4.0 (2016-06-30)
==================

Expand Down
6 changes: 3 additions & 3 deletions src/ZODB/BaseStorage.py
Expand Up @@ -221,7 +221,7 @@ def tpc_vote(self, transaction):
if transaction is not self._transaction:
raise POSException.StorageTransactionError(
"tpc_vote called with wrong transaction")
self._vote()
return self._vote()

def _vote(self):
"""Subclasses should redefine this to supply transaction vote actions.
Expand Down Expand Up @@ -333,8 +333,8 @@ def copy(source, dest, verbose=0):
r.data_txn, transaction)
else:
pre = preget(oid, None)
s = dest.store(oid, pre, r.data, r.version, transaction)
preindex[oid] = s
dest.store(oid, pre, r.data, r.version, transaction)
preindex[oid] = tid

dest.tpc_vote(transaction)
dest.tpc_finish(transaction)
Expand Down
8 changes: 4 additions & 4 deletions src/ZODB/Connection.py
Expand Up @@ -504,12 +504,12 @@ def _commit(self, transaction):
raise InvalidObjectReference(obj, obj._p_jar)
elif oid in self._added:
assert obj._p_serial == z64
elif obj._p_changed:
self._modified.append(oid)
else:
elif oid in self._creating or not obj._p_changed:
# Nothing to do. It's been said that it's legal, e.g., for
# an object to set _p_changed to false after it's been
# changed and registered.
# And new objects that are registered after any referrer are
# already processed.
continue

self._store_objects(ObjectWriter(obj), transaction)
Expand Down Expand Up @@ -677,7 +677,7 @@ def tpc_vote(self, transaction):
raise

if s:
if type(s[0]) is bytes:
if type(next(iter(s))) is bytes:
for oid in s:
self._handle_serial(oid)
return
Expand Down
8 changes: 4 additions & 4 deletions src/ZODB/blob.py
Expand Up @@ -710,9 +710,8 @@ def storeBlob(self, oid, oldserial, data, blobfilename, version,
"""Stores data that has a BLOB attached."""
assert not version, "Versions aren't supported."
serial = self.store(oid, oldserial, data, '', transaction)
self._blob_storeblob(oid, serial, blobfilename)

return self._tid
self._blob_storeblob(oid, self._tid, blobfilename)
return serial

def temporaryDirectory(self):
return self.fshelper.temp_dir
Expand Down Expand Up @@ -761,8 +760,9 @@ def tpc_finish(self, *arg, **kw):
# We need to override the base storage's tpc_finish instead of
# providing a _finish method because methods found on the proxied
# object aren't rebound to the proxy
self.__storage.tpc_finish(*arg, **kw)
tid = self.__storage.tpc_finish(*arg, **kw)
self._blob_tpc_finish()
return tid

def tpc_abort(self, *arg, **kw):
# We need to override the base storage's abort instead of
Expand Down
2 changes: 1 addition & 1 deletion src/ZODB/interfaces.py
Expand Up @@ -923,7 +923,7 @@ def undo(transaction_id, transaction):
two-phase commit (after tpc_begin but before tpc_vote). It
returns a serial (transaction id) and a sequence of object ids
for objects affected by the transaction. The serial is ignored
and may be None.
and may be None. The return from this method may be None.
"""
# Used by DB (Actually, by TransactionalUndo)

Expand Down
65 changes: 65 additions & 0 deletions src/ZODB/multicommitadapter.py
@@ -0,0 +1,65 @@
"""Adapt non-IMultiCommitStorage storages to IMultiCommitStorage
"""

import zope.interface

from .ConflictResolution import ResolvedSerial

class MultiCommitAdapter:

def __init__(self, storage):
self._storage = storage
ifaces = zope.interface.providedBy(storage)
zope.interface.alsoProvides(self, ifaces)
self._resolved = set() # {OID}, here to make linters happy

def __getattr__(self, name):
v = getattr(self._storage, name)
self.__dict__[name] = v
return v

def tpc_begin(self, *args):
self._storage.tpc_begin(*args)
self._resolved = set()

def store(self, oid, *args):
if self._storage.store(oid, *args) == ResolvedSerial:
self._resolved.add(oid)

def storeBlob(self, oid, *args):
s = self._storage.storeBlob(oid, *args)
if s:
if isinstance(s, bytes):
s = ((oid, s), )

for oid, serial in s:
if s == ResolvedSerial:
self._resolved.add(oid)

def undo(self, transaction_id, transaction):
r = self._storage.undo(transaction_id, transaction)
if r:
self._resolved.update(r[1])

def tpc_vote(self, *args):
s = self._storage.tpc_vote(*args)
for (oid, serial) in (s or ()):
if serial == ResolvedSerial:
self._resolved.add(oid)

return self._resolved

def tpc_finish(self, transaction, f=lambda tid: None):

t = []

def func(tid):
t.append(tid)
f(tid)

self._storage.tpc_finish(transaction, func)

return t[0]

def __len__(self):
return len(self._storage)
7 changes: 5 additions & 2 deletions src/ZODB/mvccadapter.py
Expand Up @@ -244,8 +244,11 @@ def undo(self, transaction_id, transaction):
def tpc_vote(self, transaction):
result = self._storage.tpc_vote(transaction)
if result:
for oid, serial in result:
self._undone.add(oid)
if isinstance(next(iter(result)), bytes):
self._undone.update(result)
else:
for oid, _ in result:
self._undone.add(oid)

def tpc_finish(self, transaction, func = lambda tid: None):

Expand Down
2 changes: 1 addition & 1 deletion src/ZODB/tests/MVCCMappingStorage.py
Expand Up @@ -112,7 +112,7 @@ def poll_invalidations(self):

def tpc_finish(self, transaction, func = lambda tid: None):
self._data_snapshot = None
MappingStorage.tpc_finish(self, transaction, func)
return MappingStorage.tpc_finish(self, transaction, func)

def tpc_abort(self, transaction):
self._data_snapshot = None
Expand Down
7 changes: 6 additions & 1 deletion src/ZODB/tests/TransactionalUndoStorage.py
Expand Up @@ -111,7 +111,12 @@ def _begin_undos_vote(self, t, *tids):
undo_result = self._storage.undo(tid, t)
if undo_result:
oids.extend(undo_result[1])
oids.extend(oid for (oid, _) in self._storage.tpc_vote(t) or ())
v = self._storage.tpc_vote(t)
if v:
if isinstance(next(iter(v)), bytes):
oids.extend(v)
else:
oids.extend(oid for (oid, _) in v)
return oids

def undo(self, tid, note):
Expand Down
45 changes: 12 additions & 33 deletions src/ZODB/tests/blob_packing.txt
Expand Up @@ -31,41 +31,20 @@ Put some revisions of a blob object in our database and on the filesystem:
>>> import os
>>> tids = []
>>> times = []
>>> nothing = transaction.begin()
>>> times.append(new_time())
>>> blob = Blob()
>>> with blob.open('w') as file:
... _ = file.write(b'this is blob data 0')
>>> root['blob'] = blob
>>> transaction.commit()
>>> tids.append(blob._p_serial)

>>> nothing = transaction.begin()
>>> times.append(new_time())
>>> with root['blob'].open('w') as file:
... _ = file.write(b'this is blob data 1')
>>> transaction.commit()
>>> tids.append(blob._p_serial)

>>> nothing = transaction.begin()
>>> times.append(new_time())
>>> with root['blob'].open('w') as file:
... _ = file.write(b'this is blob data 2')
>>> transaction.commit()
>>> tids.append(blob._p_serial)

>>> nothing = transaction.begin()
>>> times.append(new_time())
>>> with root['blob'].open('w') as file:
... _ = file.write(b'this is blob data 3')
>>> transaction.commit()
>>> tids.append(blob._p_serial)

>>> nothing = transaction.begin()
>>> times.append(new_time())
>>> with root['blob'].open('w') as file:
... _ = file.write(b'this is blob data 4')
>>> transaction.commit()
>>> for i in range(5):
... _ = transaction.begin()
... times.append(new_time())
... with blob.open('w') as file:
... _ = file.write(b'this is blob data ' + str(i).encode())
... if i:
... tids.append(blob._p_serial)
... else:
... root['blob'] = blob
... transaction.commit()

>>> blob._p_activate()
>>> tids.append(blob._p_serial)

>>> oid = root['blob']._p_oid
Expand Down
18 changes: 1 addition & 17 deletions src/ZODB/tests/blob_transaction.txt
Expand Up @@ -390,10 +390,6 @@ stored are discarded.
... '', t)

>>> serials = blob_storage.tpc_vote(t)
>>> if s1 is None:
... s1 = [s for (oid, s) in serials if oid == blob._p_oid][0]
>>> if s2 is None:
... s2 = [s for (oid, s) in serials if oid == new_oid][0]

>>> blob_storage.tpc_abort(t)

Expand All @@ -402,14 +398,7 @@ Now, the serial for the existing blob should be the same:
>>> blob_storage.load(blob._p_oid, '') == (olddata, oldserial)
True

And we shouldn't be able to read the data that we saved:

>>> blob_storage.loadBlob(blob._p_oid, s1)
Traceback (most recent call last):
...
POSKeyError: 'No blob file at <BLOB STORAGE PATH>'

Of course the old data should be unaffected:
The old data should be unaffected:

>>> with open(blob_storage.loadBlob(blob._p_oid, oldserial)) as fp:
... fp.read()
Expand All @@ -422,11 +411,6 @@ Similarly, the new object wasn't added to the storage:
...
POSKeyError: 0x...

>>> blob_storage.loadBlob(blob._p_oid, s2)
Traceback (most recent call last):
...
POSKeyError: 'No blob file at <BLOB STORAGE PATH>'

.. clean up

>>> tm1.abort()
Expand Down
7 changes: 6 additions & 1 deletion src/ZODB/tests/testConnection.py
Expand Up @@ -1011,9 +1011,14 @@ def doctest_lp485456_setattr_in_setstate_doesnt_cause_multiple_stores():
storing '\x00\x00\x00\x00\x00\x00\x00\x00'
storing '\x00\x00\x00\x00\x00\x00\x00\x01'
>>> conn.add(C())
Retry with the new object registered before its referrer.
>>> z = C()
>>> conn.add(z)
>>> conn.root.z = z
>>> transaction.commit()
storing '\x00\x00\x00\x00\x00\x00\x00\x02'
storing '\x00\x00\x00\x00\x00\x00\x00\x00'
We still see updates:
Expand Down
32 changes: 29 additions & 3 deletions src/ZODB/tests/testFileStorage.py
Expand Up @@ -21,7 +21,6 @@
import ZODB.FileStorage
import ZODB.tests.hexstorage
import ZODB.tests.testblob
import ZODB.tests.util
import zope.testing.setupstack
from ZODB import POSException
from ZODB import DB
Expand All @@ -37,6 +36,7 @@
from ZODB._compat import dump, dumps, _protocol

from . import util
from .. import multicommitadapter

class FileStorageTests(
StorageTestBase.StorageTestBase,
Expand Down Expand Up @@ -324,6 +324,12 @@ def open(self, **kwargs):
self._storage = ZODB.tests.hexstorage.HexStorage(
ZODB.FileStorage.FileStorage('FileStorageTests.fs',**kwargs))

class MultiFileStorageTests(FileStorageTests):

def open(self, **kwargs):
self._storage = multicommitadapter.MultiCommitAdapter(
ZODB.FileStorage.FileStorage('FileStorageTests.fs', **kwargs))


class FileStorageTestsWithBlobsEnabled(FileStorageTests):

Expand All @@ -333,6 +339,7 @@ def open(self, **kwargs):
kwargs['blob_dir'] = 'blobs'
FileStorageTests.open(self, **kwargs)


class FileStorageHexTestsWithBlobsEnabled(FileStorageTests):

def open(self, **kwargs):
Expand All @@ -342,6 +349,16 @@ def open(self, **kwargs):
FileStorageTests.open(self, **kwargs)
self._storage = ZODB.tests.hexstorage.HexStorage(self._storage)


class MultiFileStorageTestsWithBlobsEnabled(MultiFileStorageTests):

def open(self, **kwargs):
if 'blob_dir' not in kwargs:
kwargs = kwargs.copy()
kwargs['blob_dir'] = 'blobs'
MultiFileStorageTests.open(self, **kwargs)


class FileStorageRecoveryTest(
StorageTestBase.StorageTestBase,
RecoveryStorage.RecoveryStorage,
Expand Down Expand Up @@ -704,12 +721,13 @@ def test_suite():
FileStorageNoRestoreRecoveryTest,
FileStorageTestsWithBlobsEnabled, FileStorageHexTestsWithBlobsEnabled,
AnalyzeDotPyTest,
MultiFileStorageTests, MultiFileStorageTestsWithBlobsEnabled,
]:
suite.addTest(unittest.makeSuite(klass, "check"))
suite.addTest(doctest.DocTestSuite(
setUp=zope.testing.setupstack.setUpDirectory,
tearDown=util.tearDown,
checker=ZODB.tests.util.checker))
checker=util.checker))
suite.addTest(ZODB.tests.testblob.storage_reusable_suite(
'BlobFileStorage',
lambda name, blob_dir:
Expand All @@ -725,10 +743,18 @@ def test_suite():
test_blob_storage_recovery=True,
test_packing=True,
))
suite.addTest(ZODB.tests.testblob.storage_reusable_suite(
'BlobMultiFileStorage',
lambda name, blob_dir:
multicommitadapter.MultiCommitAdapter(
ZODB.FileStorage.FileStorage('%s.fs' % name, blob_dir=blob_dir)),
test_blob_storage_recovery=True,
test_packing=True,
))
suite.addTest(PackableStorage.IExternalGC_suite(
lambda : ZODB.FileStorage.FileStorage(
'data.fs', blob_dir='blobs', pack_gc=False)))
suite.layer = ZODB.tests.util.MininalTestLayer('testFileStorage')
suite.layer = util.MininalTestLayer('testFileStorage')
return suite

if __name__=='__main__':
Expand Down

0 comments on commit d5a765f

Please sign in to comment.