Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
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
Levin Zimmermann
neoppod
Commits
fb8eaf3b
Commit
fb8eaf3b
authored
Oct 25, 2016
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
d58435ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
62 additions
and
10 deletions
+62
-10
neo/master/handlers/client.py
neo/master/handlers/client.py
+12
-3
neo/storage/handlers/client.py
neo/storage/handlers/client.py
+50
-7
No files found.
neo/master/handlers/client.py
View file @
fb8eaf3b
...
...
@@ -119,9 +119,11 @@ class ClientServiceHandler(MasterHandler):
self
.
app
.
tm
.
abort
(
tid
,
conn
.
getUUID
())
# like ClientServiceHandler but read-only & only up-to backup_tid
# like ClientServiceHandler but read-only & only for tid <= backup_tid
# XXX naming -> (?) ClientReadOnlyHandler
class
ClientROServiceHandler
(
ClientServiceHandler
):
# XXX somehow make sure to propagate this to raiseReadOnlyError() on client ?
def
_readOnly
(
self
,
*
args
,
**
kw
):
raise
NotReadyError
(
'read-only access'
)
askBeginTransaction
=
_readOnly
...
...
@@ -131,5 +133,12 @@ class ClientROServiceHandler(ClientServiceHandler):
askPack
=
_readOnly
abortTransaction
=
_readOnly
# XXX also override askLastIDs to return backup_tid as last_tid ?
# XXX ----//---- askLastTransaction ?
# XXX LastIDs is not used by client at all, and it requires work to determine
# last_oid up to backup_tid, so just make it non-functional for client.
askLastIDs
=
_readOnly
# like in MasterHandler but returns backup_tid instead of last_tid
def
askLastTransaction
(
self
,
conn
):
backup_tid
=
self
.
app
.
backup_tid
assert
backup_tid
is
not
None
# in BACKUPING mode it is always set
conn
.
answer
(
Packets
.
AnswerLastTransaction
(
backup_tid
))
neo/storage/handlers/client.py
View file @
fb8eaf3b
...
...
@@ -16,7 +16,7 @@
from
neo.lib
import
logging
from
neo.lib.handler
import
EventHandler
from
neo.lib.util
import
dump
,
makeChecksum
from
neo.lib.util
import
dump
,
makeChecksum
,
add64
from
neo.lib.protocol
import
Packets
,
LockState
,
Errors
,
ProtocolError
,
\
ZERO_HASH
,
INVALID_PARTITION
from
..transactions
import
ConflictError
,
DelayedError
,
NotRegisteredError
...
...
@@ -130,7 +130,7 @@ class ClientOperationHandler(EventHandler):
conn
.
answer
(
Packets
.
AnswerTIDsFrom
(
self
.
app
.
dm
.
getReplicationTIDList
(
min_tid
,
max_tid
,
length
,
partition
)))
def
askTIDs
(
self
,
conn
,
first
,
last
,
partition
):
def
_askTIDs
(
self
,
first
,
last
,
partition
):
# This method is complicated, because I must return TIDs only
# about usable partitions assigned to me.
if
first
>=
last
:
...
...
@@ -143,6 +143,10 @@ class ClientOperationHandler(EventHandler):
partition_list
=
[
partition
]
tid_list
=
app
.
dm
.
getTIDList
(
first
,
last
-
first
,
partition_list
)
return
tid_list
def
askTIDs
(
self
,
conn
,
first
,
last
,
partition
):
tid_list
=
self
.
_askTIDs
(
first
,
last
,
partition
)
conn
.
answer
(
Packets
.
AnswerTIDs
(
tid_list
))
def
askFinalTID
(
self
,
conn
,
ttid
):
...
...
@@ -223,7 +227,7 @@ class ClientOperationHandler(EventHandler):
conn
.
answer
(
Packets
.
AnswerCheckCurrentSerial
(
0
,
oid
,
serial
))
# like ClientOperationHandler but read-only & only
up-to
backup_tid
# like ClientOperationHandler but read-only & only
for tid <=
backup_tid
# XXX naming -> ClientReadOnlyHandler ?
class
ClientROOperationHandler
(
ClientOperationHandler
):
...
...
@@ -234,9 +238,48 @@ class ClientROOperationHandler(ClientOperationHandler):
askVoteTransaction
=
_readOnly
askStoreObject
=
_readOnly
askFinalTID
=
_readOnly
# askObjectUndoSerial is used in undo() but itself is read-only query
# askObjectUndoSerial is used in undo() but itself is read-only query
XXX or cut <= backup_tid ?
askCheckCurrentSerial
=
_readOnly
# takes write lock & is only used when going to commit
# XXX askTIDsFrom - cut tids in reply to backup_tid ?
# XXX askTIDs ----//---- ?
# XXX askObjectHistory ----//---- ?
# below operations: like in ClientOperationHandler but cut tid <= backup_tid
def
askTransactionInformation
(
self
,
conn
,
tid
):
backup_tid
=
self
.
app
.
dm
.
getBackupTID
()
if
tid
>
backup_tid
:
p
=
Errors
.
TidNotFound
(
'tids > %s are not fully fetched yet'
%
dump
(
backup_tid
))
conn
.
answer
(
p
)
return
super
(
ClientROOperationHandler
,
self
).
askTransactionInformation
(
conn
,
tid
)
def
askObject
(
self
,
conn
,
oid
,
serial
,
tid
):
backup_tid
=
self
.
app
.
dm
.
getBackupTID
()
if
serial
and
serial
>
backup_tid
:
# obj lookup will find nothing, but return properly either
# OidDoesNotExist or OidNotFound
serial
=
ZERO_TID
if
tid
:
tid
=
min
(
tid
,
add64
(
backup_tid
,
1
))
# limit "latest obj" query to tid <= backup_tid
if
not
serial
and
not
tid
:
tid
=
add64
(
backup_tid
,
1
)
super
(
ClientROOperationHandler
,
self
).
askObject
(
conn
,
oid
,
serial
,
tid
)
def
askTIDsFrom
(
self
,
conn
,
min_tid
,
max_tid
,
length
,
partition
):
backup_tid
=
self
.
app
.
dm
.
getBackupTID
()
max_tid
=
min
(
max_tid
,
backup_tid
)
# NOTE we don't need to adjust min_tid: if min_tid > max_tid
# db.getReplicationTIDList will return empty [], which is correct
super
(
ClientROOperationHandler
,
self
).
askTIDsFrom
(
conn
,
min_tid
,
max_tid
,
length
,
partition
)
def
askTIDs
(
self
,
conn
,
first
,
last
,
partition
):
backup_tid
=
self
.
app
.
dm
.
getBackupTID
()
tid_list
=
self
.
_askTIDs
(
first
,
last
,
partition
)
tid_list
=
filter
(
lambda
tid
:
tid
<=
backup_tid
,
tid_list
)
conn
.
answer
(
Packets
.
AnswerTIDs
(
tid_list
))
# FIXME askObjectHistory to limit tid <= backup_tid
# TODO dm.getObjectHistory has to be first fixed for this
#def askObjectHistory(self, conn, oid, first, last):
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