Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
accd8c02
Commit
accd8c02
authored
Jul 06, 2016
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server side
parent
02bb6611
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
238 additions
and
35 deletions
+238
-35
src/ZEO/StorageServer.py
src/ZEO/StorageServer.py
+66
-35
src/ZEO/tests/test_client_side_conflict_resolution.py
src/ZEO/tests/test_client_side_conflict_resolution.py
+110
-0
src/ZEO/tests/utils.py
src/ZEO/tests/utils.py
+62
-0
No files found.
src/ZEO/StorageServer.py
View file @
accd8c02
...
...
@@ -89,6 +89,8 @@ class ZEOStorage:
def
__init__
(
self
,
server
,
read_only
=
0
):
self
.
server
=
server
self
.
client_side_conflict_resolution
=
(
server
.
client_side_conflict_resolution
)
# timeout and stats will be initialized in register()
self
.
read_only
=
read_only
# The authentication protocol may define extra methods.
...
...
@@ -334,6 +336,7 @@ class ZEOStorage:
t
.
_extension
=
ext
self
.
serials
=
[]
self
.
conflicts
=
{}
self
.
invalidated
=
[]
self
.
txnlog
=
CommitLog
()
self
.
blob_log
=
[]
...
...
@@ -413,6 +416,7 @@ class ZEOStorage:
self
.
locked
,
delay
=
self
.
server
.
lock_storage
(
self
,
delay
)
if
self
.
locked
:
result
=
None
try
:
self
.
log
(
"Preparing to commit transaction: %d objects, %d bytes"
...
...
@@ -433,13 +437,29 @@ class ZEOStorage:
oid
,
oldserial
,
data
,
blobfilename
=
self
.
blob_log
.
pop
()
self
.
_store
(
oid
,
oldserial
,
data
,
blobfilename
)
serials
=
self
.
storage
.
tpc_vote
(
self
.
transaction
)
if
serials
:
if
not
isinstance
(
serials
[
0
],
bytes
):
serials
=
(
oid
for
(
oid
,
serial
)
in
serials
if
serial
==
ResolvedSerial
)
self
.
serials
.
extend
(
serials
)
if
not
self
.
conflicts
:
try
:
serials
=
self
.
storage
.
tpc_vote
(
self
.
transaction
)
except
ConflictError
as
err
:
if
(
self
.
client_side_conflict_resolution
and
err
.
oid
and
err
.
serials
and
err
.
data
):
self
.
conflicts
[
err
.
oid
]
=
dict
(
oid
=
err
.
oid
,
serials
=
err
.
serials
,
data
=
err
.
data
)
else
:
raise
else
:
if
serials
:
self
.
serials
.
extend
(
serials
)
result
=
self
.
serials
if
self
.
conflicts
:
result
=
list
(
self
.
conflicts
.
values
())
self
.
storage
.
tpc_abort
(
self
.
transaction
)
self
.
server
.
unlock_storage
(
self
)
self
.
locked
=
False
self
.
server
.
stop_waiting
(
self
)
except
Exception
as
err
:
self
.
storage
.
tpc_abort
(
self
.
transaction
)
...
...
@@ -457,9 +477,9 @@ class ZEOStorage:
raise
else
:
if
delay
is
not
None
:
delay
.
reply
(
self
.
serials
)
delay
.
reply
(
result
)
else
:
return
self
.
serials
return
result
else
:
return
delay
...
...
@@ -559,28 +579,25 @@ class ZEOStorage:
oid
,
serial
,
self
.
transaction
)
def
_store
(
self
,
oid
,
serial
,
data
,
blobfile
=
None
):
if
blobfile
is
None
:
newserial
=
self
.
storage
.
store
(
oid
,
serial
,
data
,
''
,
self
.
transaction
)
try
:
if
blobfile
is
None
:
self
.
storage
.
store
(
oid
,
serial
,
data
,
''
,
self
.
transaction
)
else
:
self
.
storage
.
storeBlob
(
oid
,
serial
,
data
,
blobfile
,
''
,
self
.
transaction
)
except
ConflictError
as
err
:
if
self
.
client_side_conflict_resolution
and
err
.
serials
:
self
.
conflicts
[
oid
]
=
dict
(
oid
=
oid
,
serials
=
err
.
serials
,
data
=
data
)
else
:
raise
else
:
newserial
=
self
.
storage
.
storeBlob
(
oid
,
serial
,
data
,
blobfile
,
''
,
self
.
transaction
)
if
serial
!=
b"
\
0
\
0
\
0
\
0
\
0
\
0
\
0
\
0
"
:
self
.
invalidated
.
append
(
oid
)
if
newserial
:
if
oid
in
self
.
conflicts
:
del
self
.
conflicts
[
oid
]
self
.
serials
.
append
(
oid
)
if
isinstance
(
newserial
,
bytes
):
newserial
=
[(
oid
,
newserial
)]
for
oid
,
s
in
newserial
:
if
s
==
ResolvedSerial
:
self
.
stats
.
conflicts_resolved
+=
1
self
.
log
(
"conflict resolved oid=%s"
%
oid_repr
(
oid
),
BLATHER
)
self
.
serials
.
append
(
oid
)
if
serial
!=
b"
\
0
\
0
\
0
\
0
\
0
\
0
\
0
\
0
"
:
self
.
invalidated
.
append
(
oid
)
def
_restore
(
self
,
oid
,
serial
,
data
,
prev_txn
):
self
.
storage
.
restore
(
oid
,
serial
,
data
,
''
,
prev_txn
,
...
...
@@ -697,6 +714,7 @@ class StorageServer:
invalidation_age
=
None
,
transaction_timeout
=
None
,
ssl
=
None
,
client_side_conflict_resolution
=
False
,
):
"""StorageServer constructor.
...
...
@@ -767,15 +785,23 @@ class StorageServer:
for
name
,
storage
in
storages
.
items
():
self
.
_setup_invq
(
name
,
storage
)
storage
.
registerDB
(
StorageServerDB
(
self
,
name
))
if
client_side_conflict_resolution
:
# XXX this may go away later, when storages grow
# configuration for this.
storage
.
tryToResolveConflict
=
never_resolve_conflict
self
.
invalidation_age
=
invalidation_age
self
.
zeo_storages_by_storage_id
=
{}
# {storage_id -> [ZEOStorage]}
self
.
acceptor
=
Acceptor
(
self
,
addr
,
ssl
)
if
isinstance
(
addr
,
tuple
)
and
addr
[
0
]:
self
.
addr
=
self
.
acceptor
.
addr
else
:
self
.
addr
=
addr
self
.
loop
=
self
.
acceptor
.
loop
ZODB
.
event
.
notify
(
Serving
(
self
,
address
=
self
.
acceptor
.
addr
))
self
.
client_side_conflict_resolution
=
client_side_conflict_resolution
if
addr
is
not
None
:
self
.
acceptor
=
Acceptor
(
self
,
addr
,
ssl
)
if
isinstance
(
addr
,
tuple
)
and
addr
[
0
]:
self
.
addr
=
self
.
acceptor
.
addr
else
:
self
.
addr
=
addr
self
.
loop
=
self
.
acceptor
.
loop
ZODB
.
event
.
notify
(
Serving
(
self
,
address
=
self
.
acceptor
.
addr
))
self
.
stats
=
{}
self
.
timeouts
=
{}
for
name
in
self
.
storages
.
keys
():
...
...
@@ -1313,3 +1339,8 @@ default_cert_authenticate = 'SIGNED'
def
ssl_config
(
section
):
from
.sslconfig
import
ssl_config
return
ssl_config
(
section
,
True
)
def
never_resolve_conflict
(
oid
,
committedSerial
,
oldSerial
,
newpickle
,
committedData
=
b''
):
raise
ConflictError
(
oid
=
oid
,
serials
=
(
committedSerial
,
oldSerial
),
data
=
newpickle
)
src/ZEO/tests/test_client_side_conflict_resolution.py
0 → 100644
View file @
accd8c02
import
unittest
import
zope.testing.setupstack
from
BTrees.Length
import
Length
from
ZODB
import
serialize
from
ZODB.DemoStorage
import
DemoStorage
from
ZODB.utils
import
p64
,
z64
,
maxtid
from
ZODB.broken
import
find_global
from
.utils
import
StorageServer
class
Var
(
object
):
def
__eq__
(
self
,
other
):
self
.
value
=
other
return
True
class
ClientSideConflictResolutionTests
(
zope
.
testing
.
setupstack
.
TestCase
):
def
test_server_side
(
self
):
# First, verify default conflict resolution.
server
=
StorageServer
(
self
,
DemoStorage
())
zs
=
server
.
zs
reader
=
serialize
.
ObjectReader
(
factory
=
lambda
conn
,
*
args
:
find_global
(
*
args
))
writer
=
serialize
.
ObjectWriter
()
ob
=
Length
(
0
)
ob
.
_p_oid
=
z64
# 2 non-conflicting transactions:
zs
.
tpc_begin
(
1
,
''
,
''
,
{})
zs
.
storea
(
ob
.
_p_oid
,
z64
,
writer
.
serialize
(
ob
),
1
)
self
.
assertEqual
(
zs
.
vote
(
1
),
[])
tid1
=
server
.
unpack_result
(
zs
.
tpc_finish
(
1
))
server
.
assert_calls
(
self
,
(
'info'
,
{
'length'
:
1
,
'size'
:
Var
()}))
ob
.
change
(
1
)
zs
.
tpc_begin
(
2
,
''
,
''
,
{})
zs
.
storea
(
ob
.
_p_oid
,
tid1
,
writer
.
serialize
(
ob
),
2
)
self
.
assertEqual
(
zs
.
vote
(
2
),
[])
tid2
=
server
.
unpack_result
(
zs
.
tpc_finish
(
2
))
server
.
assert_calls
(
self
,
(
'info'
,
{
'size'
:
Var
(),
'length'
:
1
}))
# Now, a cnflicting one:
zs
.
tpc_begin
(
3
,
''
,
''
,
{})
zs
.
storea
(
ob
.
_p_oid
,
tid1
,
writer
.
serialize
(
ob
),
3
)
# Vote returns the object id, indicating that a conflict was resolved.
self
.
assertEqual
(
zs
.
vote
(
3
),
[
ob
.
_p_oid
])
tid3
=
server
.
unpack_result
(
zs
.
tpc_finish
(
3
))
p
,
serial
,
next_serial
=
zs
.
loadBefore
(
ob
.
_p_oid
,
maxtid
)
self
.
assertEqual
((
serial
,
next_serial
),
(
tid3
,
None
))
self
.
assertEqual
(
reader
.
getClassName
(
p
),
'BTrees.Length.Length'
)
self
.
assertEqual
(
reader
.
getState
(
p
),
2
)
# Now, we'll create a server that expects the client to
# resolve conflicts:
server
=
StorageServer
(
self
,
DemoStorage
(),
client_side_conflict_resolution
=
True
)
zs
=
server
.
zs
# 2 non-conflicting transactions:
zs
.
tpc_begin
(
1
,
''
,
''
,
{})
zs
.
storea
(
ob
.
_p_oid
,
z64
,
writer
.
serialize
(
ob
),
1
)
self
.
assertEqual
(
zs
.
vote
(
1
),
[])
tid1
=
server
.
unpack_result
(
zs
.
tpc_finish
(
1
))
server
.
assert_calls
(
self
,
(
'info'
,
{
'size'
:
Var
(),
'length'
:
1
}))
ob
.
change
(
1
)
zs
.
tpc_begin
(
2
,
''
,
''
,
{})
zs
.
storea
(
ob
.
_p_oid
,
tid1
,
writer
.
serialize
(
ob
),
2
)
self
.
assertEqual
(
zs
.
vote
(
2
),
[])
tid2
=
server
.
unpack_result
(
zs
.
tpc_finish
(
2
))
server
.
assert_calls
(
self
,
(
'info'
,
{
'length'
:
1
,
'size'
:
Var
()}))
# Now, a conflicting one:
zs
.
tpc_begin
(
3
,
''
,
''
,
{})
zs
.
storea
(
ob
.
_p_oid
,
tid1
,
writer
.
serialize
(
ob
),
3
)
# Vote returns an object, indicating that a conflict was not resolved.
self
.
assertEqual
(
zs
.
vote
(
3
),
[
dict
(
oid
=
ob
.
_p_oid
,
serials
=
(
tid2
,
tid1
),
data
=
writer
.
serialize
(
ob
),
)],
)
# Now, it's up to the client to resolve the conflict. It can
# do this by making another store call. In this call, we use
# tid2 as the starting tid:
ob
.
change
(
1
)
zs
.
storea
(
ob
.
_p_oid
,
tid2
,
writer
.
serialize
(
ob
),
3
)
self
.
assertEqual
(
zs
.
vote
(
3
),
[
ob
.
_p_oid
])
tid3
=
server
.
unpack_result
(
zs
.
tpc_finish
(
3
))
server
.
assert_calls
(
self
,
(
'info'
,
{
'size'
:
Var
(),
'length'
:
1
}))
p
,
serial
,
next_serial
=
zs
.
loadBefore
(
ob
.
_p_oid
,
maxtid
)
self
.
assertEqual
((
serial
,
next_serial
),
(
tid3
,
None
))
self
.
assertEqual
(
reader
.
getClassName
(
p
),
'BTrees.Length.Length'
)
self
.
assertEqual
(
reader
.
getState
(
p
),
3
)
def
test_suite
():
return
unittest
.
makeSuite
(
ClientSideConflictResolutionTests
)
src/ZEO/tests/utils.py
0 → 100644
View file @
accd8c02
"""Testing helpers
"""
import
ZEO.StorageServer
from
..asyncio.server
import
best_protocol_version
class
ServerProtocol
:
method
=
(
'register'
,
)
def
__init__
(
self
,
zs
,
protocol_version
=
best_protocol_version
,
addr
=
'test-address'
):
self
.
calls
=
[]
self
.
addr
=
addr
self
.
zs
=
zs
self
.
protocol_version
=
protocol_version
zs
.
notify_connected
(
self
)
closed
=
False
def
close
(
self
):
if
not
self
.
closed
:
self
.
closed
=
True
self
.
zs
.
notify_disconnected
()
def
call_soon_threadsafe
(
self
,
func
,
*
args
):
func
(
*
args
)
def
async
(
self
,
*
args
):
self
.
calls
.
append
(
args
)
class
StorageServer
:
"""Create a client interface to a StorageServer.
This is for testing StorageServer. It interacts with the storgr
server through its network interface, but without creating a
network connection.
"""
def
__init__
(
self
,
test
,
storage
,
protocol_version
=
best_protocol_version
,
**
kw
):
self
.
test
=
test
self
.
storage_server
=
ZEO
.
StorageServer
.
StorageServer
(
None
,
{
'1'
:
storage
},
**
kw
)
self
.
zs
=
self
.
storage_server
.
create_client_handler
()
self
.
protocol
=
ServerProtocol
(
self
.
zs
,
protocol_version
=
protocol_version
)
self
.
zs
.
register
(
'1'
,
kw
.
get
(
'read_only'
,
False
))
def
assert_calls
(
self
,
test
,
*
argss
):
if
argss
:
for
args
in
argss
:
test
.
assertEqual
(
self
.
protocol
.
calls
.
pop
(
0
),
args
)
else
:
test
.
assertEqual
(
self
.
protocol
.
calls
,
())
def
unpack_result
(
self
,
result
):
"""For methods that return Result objects, unwrap the results
"""
result
,
callback
=
result
.
args
callback
()
return
result
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