Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
f60d4208
Commit
f60d4208
authored
Sep 20, 2019
by
Jason Madden
Committed by
GitHub
Sep 20, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #269 from zopefoundation/issue268
TransactionalUndo closes storages it opens.
parents
79fe4737
b3c2514b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
173 additions
and
24 deletions
+173
-24
CHANGES.rst
CHANGES.rst
+7
-2
src/ZODB/DB.py
src/ZODB/DB.py
+54
-21
src/ZODB/tests/testDB.py
src/ZODB/tests/testDB.py
+112
-1
No files found.
CHANGES.rst
View file @
f60d4208
...
@@ -13,12 +13,17 @@
...
@@ -13,12 +13,17 @@
- Drop support for Python 3.4.
- Drop support for Python 3.4.
- Fix ``DB.undo()`` and ``DB.undoMultiple()`` to close the storage
they open behind the scenes when the transaction is committed or
rolled back. See `issue 268
<https://github.com/zopefoundation/ZODB/issues/268>`_.
5.5.1 (2018-10-25)
5.5.1 (2018-10-25)
==================
==================
- Fix KeyError on releasing resources of a Connection when closing the DB.
- Fix KeyError on releasing resources of a Connection when closing the DB.
This requires at least version 2.4 of the `
transaction
` package.
This requires at least version 2.4 of the `
`transaction`
` package.
See `issue 208 <https://github.com/zopefoundation/ZODB/issues/208>`.
See `issue 208 <https://github.com/zopefoundation/ZODB/issues/208>`
_
.
5.5.0 (2018-10-13)
5.5.0 (2018-10-13)
==================
==================
...
...
src/ZODB/DB.py
View file @
f60d4208
...
@@ -14,32 +14,29 @@
...
@@ -14,32 +14,29 @@
"""Database objects
"""Database objects
"""
"""
from
__future__
import
print_function
from
__future__
import
print_function
import
sys
import
sys
import
logging
import
logging
import
datetime
import
datetime
import
time
import
time
import
warnings
import
warnings
from
.
import
utils
from
persistent.TimeStamp
import
TimeStamp
import
six
from
ZODB.broken
import
find_global
from
ZODB.utils
import
z64
from
ZODB.Connection
import
Connection
,
TransactionMetaData
,
noop
from
ZODB._compat
import
Pickler
,
_protocol
,
BytesIO
import
ZODB.serialize
import
transaction
import
transaction.weakset
import
transaction.weakset
from
zope.interface
import
implementer
from
zope.interface
import
implementer
from
ZODB
import
utils
from
ZODB.interfaces
import
IDatabase
from
ZODB.interfaces
import
IDatabase
from
ZODB.interfaces
import
IMVCCStorage
from
ZODB.interfaces
import
IMVCCStorage
from
ZODB.broken
import
find_global
import
transaction
from
ZODB.utils
import
z64
from
ZODB.Connection
import
Connection
,
TransactionMetaData
,
noop
from
persistent.TimeStamp
import
TimeStamp
import
ZODB.serialize
import
six
from
ZODB
import
valuedoc
from
.
import
POSException
,
valuedoc
logger
=
logging
.
getLogger
(
'ZODB.DB'
)
logger
=
logging
.
getLogger
(
'ZODB.DB'
)
...
@@ -1056,19 +1053,43 @@ class TransactionalUndo(object):
...
@@ -1056,19 +1053,43 @@ class TransactionalUndo(object):
def
__init__
(
self
,
db
,
tids
):
def
__init__
(
self
,
db
,
tids
):
self
.
_db
=
db
self
.
_db
=
db
self
.
_storage
=
getattr
(
db
.
_mvcc_storage
,
'undo_instance'
,
db
.
_mvcc_storage
.
new_instance
)()
self
.
_tids
=
tids
self
.
_tids
=
tids
self
.
_storage
=
None
def
abort
(
self
,
transaction
):
def
abort
(
self
,
transaction
):
pass
pass
def
close
(
self
):
if
self
.
_storage
is
not
None
:
# We actually want to release the storage we've created,
# not close it. releasing it frees external resources
# dedicated to this instance, closing might make permanent
# changes that affect other instances.
self
.
_storage
.
release
()
self
.
_storage
=
None
def
tpc_begin
(
self
,
transaction
):
def
tpc_begin
(
self
,
transaction
):
assert
self
.
_storage
is
None
,
"Already in an active transaction"
tdata
=
TransactionMetaData
(
tdata
=
TransactionMetaData
(
transaction
.
user
,
transaction
.
user
,
transaction
.
description
,
transaction
.
description
,
transaction
.
extension
)
transaction
.
extension
)
transaction
.
set_data
(
self
,
tdata
)
transaction
.
set_data
(
self
,
tdata
)
# `undo_instance` is not part of any IStorage interface;
# it is defined in our MVCCAdapter. Regardless, we're opening
# a new storage instance, and so we must close it to be sure
# to reclaim resources in a timely manner.
#
# Once the tpc_begin method has been called, the transaction manager will
# guarantee to call either `tpc_finish` or `tpc_abort`, so those are the only
# methods we need to be concerned about calling close() from.
db_mvcc_storage
=
self
.
_db
.
_mvcc_storage
self
.
_storage
=
getattr
(
db_mvcc_storage
,
'undo_instance'
,
db_mvcc_storage
.
new_instance
)()
self
.
_storage
.
tpc_begin
(
tdata
)
self
.
_storage
.
tpc_begin
(
tdata
)
def
commit
(
self
,
transaction
):
def
commit
(
self
,
transaction
):
...
@@ -1081,15 +1102,27 @@ class TransactionalUndo(object):
...
@@ -1081,15 +1102,27 @@ class TransactionalUndo(object):
self
.
_storage
.
tpc_vote
(
transaction
)
self
.
_storage
.
tpc_vote
(
transaction
)
def
tpc_finish
(
self
,
transaction
):
def
tpc_finish
(
self
,
transaction
):
try
:
transaction
=
transaction
.
data
(
self
)
transaction
=
transaction
.
data
(
self
)
self
.
_storage
.
tpc_finish
(
transaction
)
self
.
_storage
.
tpc_finish
(
transaction
)
finally
:
self
.
close
()
def
tpc_abort
(
self
,
transaction
):
def
tpc_abort
(
self
,
transaction
):
try
:
transaction
=
transaction
.
data
(
self
)
transaction
=
transaction
.
data
(
self
)
self
.
_storage
.
tpc_abort
(
transaction
)
self
.
_storage
.
tpc_abort
(
transaction
)
finally
:
self
.
close
()
def
sortKey
(
self
):
def
sortKey
(
self
):
return
"%s:%s"
%
(
self
.
_storage
.
sortKey
(),
id
(
self
))
# The transaction sorts data managers first before it calls
# `tpc_begin`, so we can't use our own storage because it's
# not open yet. Fortunately new_instances of a storage are
# supposed to return the same sort key as the original storage
# did.
return
"%s:%s"
%
(
self
.
_db
.
_mvcc_storage
.
sortKey
(),
id
(
self
))
def
connection
(
*
args
,
**
kw
):
def
connection
(
*
args
,
**
kw
):
"""Create a database :class:`connection <ZODB.Connection.Connection>`.
"""Create a database :class:`connection <ZODB.Connection.Connection>`.
...
...
src/ZODB/tests/testDB.py
View file @
f60d4208
...
@@ -110,6 +110,117 @@ class DBTests(ZODB.tests.util.TestCase):
...
@@ -110,6 +110,117 @@ class DBTests(ZODB.tests.util.TestCase):
check
(
db
.
undoLog
(
0
,
3
)
,
True
)
check
(
db
.
undoLog
(
0
,
3
)
,
True
)
check
(
db
.
undoInfo
(
0
,
3
)
,
True
)
check
(
db
.
undoInfo
(
0
,
3
)
,
True
)
class
TransactionalUndoTests
(
unittest
.
TestCase
):
def
_makeOne
(
self
):
from
ZODB.DB
import
TransactionalUndo
class
MockStorage
(
object
):
instance_count
=
0
close_count
=
0
release_count
=
0
begin_count
=
0
abort_count
=
0
def
new_instance
(
self
):
self
.
instance_count
+=
1
return
self
def
tpc_begin
(
self
,
tx
):
self
.
begin_count
+=
1
def
close
(
self
):
self
.
close_count
+=
1
def
release
(
self
):
self
.
release_count
+=
1
def
sortKey
(
self
):
return
'MockStorage'
class
MockDB
(
object
):
def
__init__
(
self
):
self
.
storage
=
self
.
_mvcc_storage
=
MockStorage
()
return
TransactionalUndo
(
MockDB
(),
[
1
])
def
test_only_new_instance_on_begin
(
self
):
undo
=
self
.
_makeOne
()
self
.
assertIsNone
(
undo
.
_storage
)
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
instance_count
)
undo
.
tpc_begin
(
transaction
.
get
())
self
.
assertIsNotNone
(
undo
.
_storage
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
instance_count
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
begin_count
)
self
.
assertIsNotNone
(
undo
.
_storage
)
# And we can't begin again
with
self
.
assertRaises
(
AssertionError
):
undo
.
tpc_begin
(
transaction
.
get
())
def
test_close_many
(
self
):
undo
=
self
.
_makeOne
()
self
.
assertIsNone
(
undo
.
_storage
)
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
instance_count
)
undo
.
close
()
# Not open, didn't go through
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
close_count
)
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
release_count
)
undo
.
tpc_begin
(
transaction
.
get
())
undo
.
close
()
undo
.
close
()
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
close_count
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
release_count
)
self
.
assertIsNone
(
undo
.
_storage
)
def
test_sortKey
(
self
):
# We get the same key whether or not we're open
undo
=
self
.
_makeOne
()
key
=
undo
.
sortKey
()
self
.
assertIn
(
'MockStorage'
,
key
)
undo
.
tpc_begin
(
transaction
.
get
())
key2
=
undo
.
sortKey
()
self
.
assertEqual
(
key
,
key2
)
def
test_tpc_abort_closes
(
self
):
undo
=
self
.
_makeOne
()
undo
.
tpc_begin
(
transaction
.
get
())
undo
.
_db
.
storage
.
tpc_abort
=
lambda
tx
:
None
undo
.
tpc_abort
(
transaction
.
get
())
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
close_count
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
release_count
)
def
test_tpc_abort_closes_on_exception
(
self
):
undo
=
self
.
_makeOne
()
undo
.
tpc_begin
(
transaction
.
get
())
with
self
.
assertRaises
(
AttributeError
):
undo
.
tpc_abort
(
transaction
.
get
())
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
close_count
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
release_count
)
def
test_tpc_finish_closes
(
self
):
undo
=
self
.
_makeOne
()
undo
.
tpc_begin
(
transaction
.
get
())
undo
.
_db
.
storage
.
tpc_finish
=
lambda
tx
:
None
undo
.
tpc_finish
(
transaction
.
get
())
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
close_count
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
release_count
)
def
test_tpc_finish_closes_on_exception
(
self
):
undo
=
self
.
_makeOne
()
undo
.
tpc_begin
(
transaction
.
get
())
with
self
.
assertRaises
(
AttributeError
):
undo
.
tpc_finish
(
transaction
.
get
())
self
.
assertEqual
(
0
,
undo
.
_db
.
storage
.
close_count
)
self
.
assertEqual
(
1
,
undo
.
_db
.
storage
.
release_count
)
def
test_invalidateCache
():
def
test_invalidateCache
():
"""The invalidateCache method invalidates a connection caches for all of
"""The invalidateCache method invalidates a connection caches for all of
the connections attached to a database::
the connections attached to a database::
...
@@ -423,7 +534,7 @@ def cleanup_on_close():
...
@@ -423,7 +534,7 @@ def cleanup_on_close():
"""
"""
def
test_suite
():
def
test_suite
():
s
=
unittest
.
makeSuite
(
DBTests
)
s
=
unittest
.
defaultTestLoader
.
loadTestsFromName
(
__name__
)
s
.
addTest
(
doctest
.
DocTestSuite
(
s
.
addTest
(
doctest
.
DocTestSuite
(
setUp
=
ZODB
.
tests
.
util
.
setUp
,
tearDown
=
ZODB
.
tests
.
util
.
tearDown
,
setUp
=
ZODB
.
tests
.
util
.
setUp
,
tearDown
=
ZODB
.
tests
.
util
.
tearDown
,
checker
=
checker
checker
=
checker
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment