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
70ba5ccb
Commit
70ba5ccb
authored
Sep 24, 2010
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finish z64-ification of lastTransaction.
parent
b0b24cea
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
20 deletions
+21
-20
src/ZEO/ClientStorage.py
src/ZEO/ClientStorage.py
+18
-17
src/ZEO/ServerStub.py
src/ZEO/ServerStub.py
+1
-1
src/ZEO/cache.py
src/ZEO/cache.py
+2
-2
No files found.
src/ZEO/ClientStorage.py
View file @
70ba5ccb
...
@@ -1339,25 +1339,25 @@ class ClientStorage(object):
...
@@ -1339,25 +1339,25 @@ class ClientStorage(object):
# it should set self._server. If it goes through full cache
# it should set self._server. If it goes through full cache
# verification, then endVerify() should self._server.
# verification, then endVerify() should self._server.
l
tid
=
server
.
lastTransaction
()
server_
tid
=
server
.
lastTransaction
()
if
not
self
.
_cache
:
if
not
self
.
_cache
:
logger
.
info
(
"%s No verification necessary -- empty cache"
,
logger
.
info
(
"%s No verification necessary -- empty cache"
,
self
.
__name__
)
self
.
__name__
)
if
l
tid
!=
utils
.
z64
:
if
server_
tid
!=
utils
.
z64
:
self
.
_cache
.
setLastTid
(
l
tid
)
self
.
_cache
.
setLastTid
(
server_
tid
)
self
.
finish_verification
()
self
.
finish_verification
()
return
"empty cache"
return
"empty cache"
last_inval
_tid
=
self
.
_cache
.
getLastTid
()
cache
_tid
=
self
.
_cache
.
getLastTid
()
if
last_inval_tid
is
not
None
:
if
cache_tid
!=
utils
.
z64
:
if
ltid
==
last_inval
_tid
:
if
server_tid
==
cache
_tid
:
logger
.
info
(
logger
.
info
(
"%s No verification necessary"
"%s No verification necessary"
" (
last_inval
_tid up-to-date %r)"
,
" (
cache
_tid up-to-date %r)"
,
self
.
__name__
,
l
tid
)
self
.
__name__
,
server_
tid
)
self
.
finish_verification
()
self
.
finish_verification
()
return
"no verification"
return
"no verification"
elif
ltid
<
last_inval
_tid
:
elif
server_tid
<
cache
_tid
:
message
=
(
"%s Client has seen newer transactions than server!"
message
=
(
"%s Client has seen newer transactions than server!"
%
self
.
__name__
)
%
self
.
__name__
)
logger
.
critical
(
message
)
logger
.
critical
(
message
)
...
@@ -1365,23 +1365,24 @@ class ClientStorage(object):
...
@@ -1365,23 +1365,24 @@ class ClientStorage(object):
# log some hints about last transaction
# log some hints about last transaction
logger
.
info
(
"%s last inval tid: %r %s
\
n
"
,
logger
.
info
(
"%s last inval tid: %r %s
\
n
"
,
self
.
__name__
,
last_inval
_tid
,
self
.
__name__
,
cache
_tid
,
tid2time
(
last_inval
_tid
))
tid2time
(
cache
_tid
))
logger
.
info
(
"%s last transaction: %r %s"
,
logger
.
info
(
"%s last transaction: %r %s"
,
self
.
__name__
,
ltid
,
ltid
and
tid2time
(
ltid
))
self
.
__name__
,
server_tid
,
server_tid
and
tid2time
(
server_tid
))
pair
=
server
.
getInvalidations
(
last_inval
_tid
)
pair
=
server
.
getInvalidations
(
cache
_tid
)
if
pair
is
not
None
:
if
pair
is
not
None
:
logger
.
info
(
"%s Recovering %d invalidations"
,
logger
.
info
(
"%s Recovering %d invalidations"
,
self
.
__name__
,
len
(
pair
[
1
]))
self
.
__name__
,
len
(
pair
[
1
]))
self
.
finish_verification
(
pair
)
self
.
finish_verification
(
pair
)
return
"quick verification"
return
"quick verification"
elif
l
tid
!=
utils
.
z64
:
elif
server_
tid
!=
utils
.
z64
:
# Hm, to have gotten here, the cache is non-empty, but
# Hm, to have gotten here, the cache is non-empty, but
# it has no last tid. This doesn't seem like good situation.
# it has no last tid. This doesn't seem like good situation.
# We'll have to verify the cache, if we're willing.
# We'll have to verify the cache, if we're willing.
self
.
_cache
.
setLastTid
(
l
tid
)
self
.
_cache
.
setLastTid
(
server_
tid
)
zope
.
event
.
notify
(
ZEO
.
interfaces
.
StaleCache
(
self
))
zope
.
event
.
notify
(
ZEO
.
interfaces
.
StaleCache
(
self
))
...
@@ -1398,8 +1399,8 @@ class ClientStorage(object):
...
@@ -1398,8 +1399,8 @@ class ClientStorage(object):
if
self
.
_cache
and
self
.
_drop_cache_rather_verify
:
if
self
.
_cache
and
self
.
_drop_cache_rather_verify
:
logger
.
critical
(
"%s dropping stale cache"
,
self
.
__name__
)
logger
.
critical
(
"%s dropping stale cache"
,
self
.
__name__
)
self
.
_cache
.
clear
()
self
.
_cache
.
clear
()
if
l
tid
:
if
server_
tid
:
self
.
_cache
.
setLastTid
(
l
tid
)
self
.
_cache
.
setLastTid
(
server_
tid
)
self
.
finish_verification
()
self
.
finish_verification
()
return
"cache dropped"
return
"cache dropped"
...
...
src/ZEO/ServerStub.py
View file @
70ba5ccb
...
@@ -310,7 +310,7 @@ class StorageServer308(StorageServer):
...
@@ -310,7 +310,7 @@ class StorageServer308(StorageServer):
def
__init__
(
self
,
rpc
):
def
__init__
(
self
,
rpc
):
if
rpc
.
peer_protocol_version
==
'Z200'
:
if
rpc
.
peer_protocol_version
==
'Z200'
:
self
.
lastTransaction
=
lambda
:
None
self
.
lastTransaction
=
lambda
:
z64
self
.
getInvalidations
=
lambda
tid
:
None
self
.
getInvalidations
=
lambda
tid
:
None
self
.
getAuthProtocol
=
lambda
:
None
self
.
getAuthProtocol
=
lambda
:
None
...
...
src/ZEO/cache.py
View file @
70ba5ccb
...
@@ -177,7 +177,7 @@ class ClientCache(object):
...
@@ -177,7 +177,7 @@ class ClientCache(object):
# tid for the most recent transaction we know about. This is also
# tid for the most recent transaction we know about. This is also
# stored near the start of the file.
# stored near the start of the file.
self
.
tid
=
None
self
.
tid
=
z64
# Always the offset into the file of the start of a block.
# Always the offset into the file of the start of a block.
# New and relocated objects are always written starting at
# New and relocated objects are always written starting at
...
@@ -458,7 +458,7 @@ class ClientCache(object):
...
@@ -458,7 +458,7 @@ class ClientCache(object):
def
setLastTid
(
self
,
tid
):
def
setLastTid
(
self
,
tid
):
if
(
not
tid
)
or
(
tid
==
z64
):
if
(
not
tid
)
or
(
tid
==
z64
):
return
return
if
(
self
.
tid
is
not
None
)
and
(
tid
<=
self
.
tid
)
and
self
:
if
(
tid
<=
self
.
tid
)
and
self
.
_len
:
if
tid
==
self
.
tid
:
if
tid
==
self
.
tid
:
return
# Be a little forgiving
return
# Be a little forgiving
raise
ValueError
(
"new last tid (%s) must be greater than "
raise
ValueError
(
"new last tid (%s) must be greater than "
...
...
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