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
Carlos Ramos Carreño
neoppod
Commits
ff4242d4
Commit
ff4242d4
authored
Mar 06, 2017
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename {Node,Connection}.notify to send
parent
4bde7d76
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
59 additions
and
57 deletions
+59
-57
neo/admin/app.py
neo/admin/app.py
+1
-1
neo/client/app.py
neo/client/app.py
+2
-2
neo/lib/connection.py
neo/lib/connection.py
+4
-4
neo/lib/node.py
neo/lib/node.py
+9
-6
neo/master/app.py
neo/master/app.py
+15
-15
neo/master/backup_app.py
neo/master/backup_app.py
+6
-7
neo/master/handlers/__init__.py
neo/master/handlers/__init__.py
+2
-2
neo/master/handlers/administration.py
neo/master/handlers/administration.py
+4
-4
neo/master/handlers/client.py
neo/master/handlers/client.py
+2
-2
neo/master/handlers/secondary.py
neo/master/handlers/secondary.py
+1
-1
neo/master/recovery.py
neo/master/recovery.py
+2
-2
neo/master/transactions.py
neo/master/transactions.py
+1
-1
neo/master/verification.py
neo/master/verification.py
+1
-1
neo/storage/app.py
neo/storage/app.py
+1
-1
neo/storage/checker.py
neo/storage/checker.py
+1
-1
neo/storage/handlers/storage.py
neo/storage/handlers/storage.py
+2
-2
neo/storage/transactions.py
neo/storage/transactions.py
+2
-2
neo/tests/__init__.py
neo/tests/__init__.py
+2
-2
neo/tests/master/testMasterApp.py
neo/tests/master/testMasterApp.py
+1
-1
No files found.
neo/admin/app.py
View file @
ff4242d4
...
...
@@ -139,6 +139,6 @@ class Application(BaseApplication):
pass
row_list
.
append
((
offset
,
row
))
except
IndexError
:
conn
.
notify
(
Errors
.
ProtocolError
(
'invalid partition table offset'
))
conn
.
send
(
Errors
.
ProtocolError
(
'invalid partition table offset'
))
else
:
conn
.
answer
(
Packets
.
AnswerPartitionList
(
self
.
pt
.
getID
(),
row_list
))
neo/client/app.py
View file @
ff4242d4
...
...
@@ -569,7 +569,7 @@ class Application(ThreadedApplication):
p
=
Packets
.
AbortTransaction
(
txn_context
.
ttid
,
())
for
uuid
in
txn_context
.
involved_nodes
:
try
:
self
.
cp
.
connection_dict
[
uuid
].
notify
(
p
)
self
.
cp
.
connection_dict
[
uuid
].
send
(
p
)
except
(
KeyError
,
ConnectionClosed
):
pass
# Because we want to be sure that the involved nodes are notified,
...
...
@@ -579,7 +579,7 @@ class Application(ThreadedApplication):
# storage nodes keep a list of aborted transactions, but the
# difficult part would be to avoid a memory leak.
try
:
notify
=
self
.
master_conn
.
notify
notify
=
self
.
master_conn
.
send
except
AttributeError
:
pass
else
:
...
...
neo/lib/connection.py
View file @
ff4242d4
...
...
@@ -136,7 +136,7 @@ class HandlerSwitcher(object):
logging
.
error
(
'Unexpected answer %r in %r'
,
packet
,
connection
)
if
not
connection
.
isClosed
():
notification
=
Packets
.
Notify
(
'Unexpected answer: %r'
%
packet
)
connection
.
notify
(
notification
)
connection
.
send
(
notification
)
connection
.
abort
()
# handler.peerBroken(connection)
# apply a pending handler if no more answers are pending
...
...
@@ -379,7 +379,7 @@ class Connection(BaseConnection):
if
self
.
server
:
del
self
.
idle
self
.
client
=
False
self
.
notify
(
Packets
.
CloseClient
())
self
.
send
(
Packets
.
CloseClient
())
else
:
self
.
close
()
...
...
@@ -548,7 +548,7 @@ class Connection(BaseConnection):
self
.
em
.
addWriter
(
self
)
logging
.
packet
(
self
,
packet
,
True
)
def
notify
(
self
,
packet
):
def
send
(
self
,
packet
):
""" Then a packet with a new ID """
if
self
.
isClosed
():
raise
ConnectionClosed
...
...
@@ -672,7 +672,7 @@ class MTConnectionType(type):
if
__debug__
:
for
name
in
'answer'
,:
setattr
(
cls
,
name
,
cls
.
lockCheckWrapper
(
name
))
for
name
in
'close'
,
'
notify
'
:
for
name
in
'close'
,
'
send
'
:
setattr
(
cls
,
name
,
cls
.
__class__
.
lockWrapper
(
cls
,
name
))
for
name
in
(
'_delayedConnect'
,
'onTimeout'
,
'process'
,
'readable'
,
'writable'
):
...
...
neo/lib/node.py
View file @
ff4242d4
...
...
@@ -40,17 +40,20 @@ class Node(object):
self
.
_last_state_change
=
time
()
manager
.
add
(
self
)
def
notify
(
self
,
packet
):
@
property
def
send
(
self
):
assert
self
.
isConnected
(),
'Not connected'
self
.
_connection
.
notify
(
packet
)
return
self
.
_connection
.
send
def
ask
(
self
,
packet
,
*
args
,
**
kw
):
@
property
def
ask
(
self
):
assert
self
.
isConnected
(),
'Not connected'
self
.
_connection
.
ask
(
packet
,
*
args
,
**
kw
)
return
self
.
_connection
.
ask
def
answer
(
self
,
packet
,
msg_id
=
None
):
@
property
def
answer
(
self
):
assert
self
.
isConnected
(),
'Not connected'
self
.
_connection
.
answer
(
packet
,
msg_id
)
return
self
.
_connection
.
answer
def
getLastStateChange
(
self
):
return
self
.
_last_state_change
...
...
neo/master/app.py
View file @
ff4242d4
...
...
@@ -208,7 +208,7 @@ class Application(BaseApplication):
# Ask all connected nodes to reelect a single primary master.
for
conn
in
self
.
em
.
getClientList
():
conn
.
notify
(
Packets
.
ReelectPrimary
())
conn
.
send
(
Packets
.
ReelectPrimary
())
conn
.
abort
()
# Wait until the connections are closed.
...
...
@@ -257,7 +257,7 @@ class Application(BaseApplication):
for
node
in
self
.
nm
.
getIdentifiedList
():
node_list
=
node_dict
.
get
(
node
.
getType
())
if
node_list
and
node
.
isRunning
()
and
node
is
not
exclude
:
node
.
notify
(
Packets
.
NotifyNodeInformation
(
now
,
node_list
))
node
.
send
(
Packets
.
NotifyNodeInformation
(
now
,
node_list
))
def
broadcastPartitionChanges
(
self
,
cell_list
):
"""Broadcast a Notify Partition Changes packet."""
...
...
@@ -267,7 +267,7 @@ class Application(BaseApplication):
packet
=
Packets
.
NotifyPartitionChanges
(
ptid
,
cell_list
)
for
node
in
self
.
nm
.
getIdentifiedList
():
if
node
.
isRunning
()
and
not
node
.
isMaster
():
node
.
notify
(
packet
)
node
.
send
(
packet
)
def
provideService
(
self
):
"""
...
...
@@ -292,7 +292,7 @@ class Application(BaseApplication):
for
node
in
self
.
nm
.
getStorageList
(
only_identified
=
True
):
tid_dict
[
node
.
getUUID
()]
=
tid
if
node
.
isRunning
():
node
.
notify
(
packet
)
node
.
send
(
packet
)
self
.
pt
.
setBackupTidDict
(
tid_dict
)
def
playPrimaryRole
(
self
):
...
...
@@ -304,7 +304,7 @@ class Application(BaseApplication):
if
conn
.
isListening
():
conn
.
setHandler
(
identification
.
IdentificationHandler
(
self
))
else
:
conn
.
notify
(
packet
)
conn
.
send
(
packet
)
# Primary master should rather establish connections to all
# secondaries, rather than the other way around. This requires
# a bit more work when a new master joins a cluster but makes
...
...
@@ -375,12 +375,12 @@ class Application(BaseApplication):
for
node
in
self
.
nm
.
getIdentifiedList
():
if
node
.
isStorage
()
or
node
.
isClient
():
conn
=
node
.
getConnection
()
conn
.
notify
(
Packets
.
StopOperation
())
conn
.
send
(
Packets
.
StopOperation
())
if
node
.
isClient
():
conn
.
abort
()
continue
if
truncate
:
conn
.
notify
(
truncate
)
conn
.
send
(
truncate
)
if
node
.
isRunning
():
node
.
setPending
()
node_list
.
append
(
node
)
...
...
@@ -453,7 +453,7 @@ class Application(BaseApplication):
notification_packet
=
Packets
.
NotifyClusterInformation
(
state
)
for
node
in
self
.
nm
.
getIdentifiedList
():
conn
=
node
.
getConnection
()
conn
.
notify
(
notification_packet
)
conn
.
send
(
notification_packet
)
if
node
.
isClient
():
if
state
==
ClusterStates
.
RUNNING
:
handler
=
self
.
client_service_handler
...
...
@@ -512,9 +512,9 @@ class Application(BaseApplication):
conn
=
node
.
getConnection
()
if
node
.
isStorage
():
conn
.
setHandler
(
handler
)
conn
.
notify
(
Packets
.
NotifyNodeInformation
(
now
,
((
node
.
getType
(),
node
.
getAddress
(),
node
.
getUUID
(),
NodeStates
.
TEMPORARILY_DOWN
,
None
),)))
conn
.
send
(
Packets
.
NotifyNodeInformation
(
now
,
((
node
.
getType
(),
node
.
getAddress
(),
node
.
getUUID
(),
NodeStates
.
TEMPORARILY_DOWN
,
None
),)))
conn
.
abort
()
elif
conn
.
pending
():
conn
.
abort
()
...
...
@@ -549,13 +549,13 @@ class Application(BaseApplication):
c
.
answer
(
Packets
.
AnswerTransactionFinished
(
ttid
,
tid
),
msg_id
=
txn
.
getMessageId
())
else
:
c
.
notify
(
invalidate_objects
)
c
.
send
(
invalidate_objects
)
# Unlock Information to relevant storage nodes.
notify_unlock
=
Packets
.
NotifyUnlockInformation
(
ttid
)
getByUUID
=
self
.
nm
.
getByUUID
for
storage_uuid
in
txn
.
getUUIDList
():
getByUUID
(
storage_uuid
).
getConnection
().
notify
(
notify_unlock
)
getByUUID
(
storage_uuid
).
send
(
notify_unlock
)
# Notify storage that have replications blocked by this transaction,
# and clients that try to recover from a failure during tpc_finish.
...
...
@@ -566,7 +566,7 @@ class Application(BaseApplication):
# There should be only 1 client interested.
node
.
answer
(
Packets
.
AnswerFinalTID
(
tid
))
else
:
node
.
notify
(
notify_finished
)
node
.
send
(
notify_finished
)
assert
self
.
last_transaction
<
tid
,
(
self
.
last_transaction
,
tid
)
self
.
setLastTransaction
(
tid
)
...
...
@@ -583,7 +583,7 @@ class Application(BaseApplication):
self
.
tm
.
executeQueuedEvents
()
def
startStorage
(
self
,
node
):
node
.
notify
(
Packets
.
StartOperation
(
self
.
backup_tid
))
node
.
send
(
Packets
.
StartOperation
(
self
.
backup_tid
))
uuid
=
node
.
getUUID
()
assert
uuid
not
in
self
.
storage_starting_set
if
uuid
not
in
self
.
storage_ready_dict
:
...
...
neo/master/backup_app.py
View file @
ff4242d4
...
...
@@ -189,7 +189,7 @@ class BackupApplication(object):
"ask %s to replicate partition %u up to %s from %s"
,
uuid_str
(
cell
.
getUUID
()),
offset
,
dump
(
tid
),
uuid_str
(
primary_node
.
getUUID
()))
cell
.
getNode
().
getConnection
().
notify
(
p
)
cell
.
getNode
().
send
(
p
)
trigger_set
.
add
(
primary_node
)
for
node
in
trigger_set
:
self
.
triggerBackup
(
node
)
...
...
@@ -252,7 +252,7 @@ class BackupApplication(object):
cell
.
replicating
=
tid
for
node
,
untouched_dict
in
untouched_dict
.
iteritems
():
if
app
.
isStorageReady
(
node
.
getUUID
()):
node
.
notify
(
Packets
.
Replicate
(
tid
,
''
,
untouched_dict
))
node
.
send
(
Packets
.
Replicate
(
tid
,
''
,
untouched_dict
))
for
node
in
trigger_set
:
self
.
triggerBackup
(
node
)
count
=
sum
(
map
(
len
,
self
.
tid_list
))
...
...
@@ -288,8 +288,7 @@ class BackupApplication(object):
source_dict
[
offset
]
=
addr
logging
.
debug
(
"ask %s to replicate partition %u up to %s from %r"
,
uuid_str
(
node
.
getUUID
()),
offset
,
dump
(
tid
),
addr
)
node
.
getConnection
().
notify
(
Packets
.
Replicate
(
tid
,
self
.
name
,
source_dict
))
node
.
send
(
Packets
.
Replicate
(
tid
,
self
.
name
,
source_dict
))
def
notifyReplicationDone
(
self
,
node
,
offset
,
tid
):
app
=
self
.
app
...
...
@@ -306,7 +305,7 @@ class BackupApplication(object):
last_tid
=
app
.
getLastTransaction
()
if
tid
<
last_tid
:
tid
=
last_tid
node
.
notify
(
Packets
.
Replicate
(
tid
,
''
,
{
offset
:
None
}))
node
.
send
(
Packets
.
Replicate
(
tid
,
''
,
{
offset
:
None
}))
logging
.
debug
(
"partition %u: updating backup_tid of %r to %s"
,
offset
,
cell
,
dump
(
tid
))
cell
.
backup_tid
=
tid
...
...
@@ -330,7 +329,7 @@ class BackupApplication(object):
"ask %s to replicate partition %u up to %s from %s"
,
uuid_str
(
node
.
getUUID
()),
offset
,
dump
(
max_tid
),
uuid_str
(
primary_node
.
getUUID
()))
node
.
notify
(
Packets
.
Replicate
(
max_tid
,
''
,
node
.
send
(
Packets
.
Replicate
(
max_tid
,
''
,
{
offset
:
primary_node
.
getAddress
()}))
else
:
if
app
.
getClusterState
()
==
ClusterStates
.
BACKINGUP
:
...
...
@@ -346,5 +345,5 @@ class BackupApplication(object):
"ask %s to replicate partition %u up to %s from %s"
,
uuid_str
(
cell
.
getUUID
()),
offset
,
dump
(
tid
),
uuid_str
(
node
.
getUUID
()))
cell
.
getNode
().
notify
(
p
)
cell
.
getNode
().
send
(
p
)
return
result
neo/master/handlers/__init__.py
View file @
ff4242d4
...
...
@@ -89,7 +89,7 @@ class MasterHandler(EventHandler):
node_list
.
extend
(
n
.
asTuple
()
for
n
in
nm
.
getMasterList
())
node_list
.
extend
(
n
.
asTuple
()
for
n
in
nm
.
getClientList
())
node_list
.
extend
(
n
.
asTuple
()
for
n
in
nm
.
getStorageList
())
conn
.
notify
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
node_list
))
conn
.
send
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
node_list
))
def
askPartitionTable
(
self
,
conn
):
pt
=
self
.
app
.
pt
...
...
@@ -106,7 +106,7 @@ class BaseServiceHandler(MasterHandler):
def
connectionCompleted
(
self
,
conn
,
new
):
self
.
_notifyNodeInformation
(
conn
)
pt
=
self
.
app
.
pt
conn
.
notify
(
Packets
.
SendPartitionTable
(
pt
.
getID
(),
pt
.
getRowList
()))
conn
.
send
(
Packets
.
SendPartitionTable
(
pt
.
getID
(),
pt
.
getRowList
()))
def
connectionLost
(
self
,
conn
,
new_state
):
app
=
self
.
app
...
...
neo/master/handlers/administration.py
View file @
ff4242d4
...
...
@@ -103,7 +103,7 @@ class AdministrationHandler(MasterHandler):
node
.
setState
(
state
)
if
node
.
isConnected
():
# notify itself so it can shutdown
node
.
notify
(
Packets
.
NotifyNodeInformation
(
node
.
send
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
[
node
.
asTuple
()]))
# close to avoid handle the closure as a connection lost
node
.
getConnection
().
abort
()
...
...
@@ -122,7 +122,7 @@ class AdministrationHandler(MasterHandler):
# ignores non-running nodes
assert
not
node
.
isRunning
()
if
node
.
isConnected
():
node
.
notify
(
Packets
.
NotifyNodeInformation
(
node
.
send
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
[
node
.
asTuple
()]))
app
.
broadcastNodesInformation
([
node
])
...
...
@@ -161,7 +161,7 @@ class AdministrationHandler(MasterHandler):
node_list
.
append
(
node
)
repair
=
Packets
.
NotifyRepair
(
*
args
)
for
node
in
node_list
:
node
.
notify
(
repair
)
node
.
send
(
repair
)
conn
.
answer
(
Errors
.
Ack
(
''
))
def
tweakPartitionTable
(
self
,
conn
,
uuid_list
):
...
...
@@ -225,6 +225,6 @@ class AdministrationHandler(MasterHandler):
).
getAddress
()
else
:
source
=
''
,
None
node
.
getConnection
().
notify
(
Packets
.
CheckPartition
(
node
.
send
(
Packets
.
CheckPartition
(
offset
,
source
,
min_tid
,
max_tid
))
conn
.
answer
(
Errors
.
Ack
(
''
))
neo/master/handlers/client.py
View file @
ff4242d4
...
...
@@ -38,7 +38,7 @@ class ClientServiceHandler(MasterHandler):
node_list
=
[
nm
.
getByUUID
(
conn
.
getUUID
()).
asTuple
()]
# for id_timestamp
node_list
.
extend
(
n
.
asTuple
()
for
n
in
nm
.
getMasterList
())
node_list
.
extend
(
n
.
asTuple
()
for
n
in
nm
.
getStorageList
())
conn
.
notify
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
node_list
))
conn
.
send
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
node_list
))
def
askBeginTransaction
(
self
,
conn
,
tid
):
"""
...
...
@@ -132,7 +132,7 @@ class ClientServiceHandler(MasterHandler):
p
=
Packets
.
AbortTransaction
(
tid
,
())
getByUUID
=
app
.
nm
.
getByUUID
for
involved
in
involved
:
getByUUID
(
involved
).
notify
(
p
)
getByUUID
(
involved
).
send
(
p
)
# like ClientServiceHandler but read-only & only for tid <= backup_tid
...
...
neo/master/handlers/secondary.py
View file @
ff4242d4
...
...
@@ -39,7 +39,7 @@ class SecondaryMasterHandler(MasterHandler):
def
_notifyNodeInformation
(
self
,
conn
):
node_list
=
[
n
.
asTuple
()
for
n
in
self
.
app
.
nm
.
getMasterList
()]
conn
.
notify
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
node_list
))
conn
.
send
(
Packets
.
NotifyNodeInformation
(
monotonic_time
(),
node_list
))
class
PrimaryHandler
(
EventHandler
):
""" Handler used by secondaries to handle primary master"""
...
...
neo/master/recovery.py
View file @
ff4242d4
...
...
@@ -89,7 +89,7 @@ class RecoveryManager(MasterHandler):
truncate
=
Packets
.
Truncate
(
app
.
truncate_tid
)
for
node
in
node_list
:
conn
=
node
.
getConnection
()
conn
.
notify
(
truncate
)
conn
.
send
(
truncate
)
self
.
connectionCompleted
(
conn
,
False
)
continue
node_list
=
pt
.
getConnectedNodeList
()
...
...
@@ -182,4 +182,4 @@ class RecoveryManager(MasterHandler):
def
_notifyAdmins
(
self
,
*
packets
):
for
node
in
self
.
app
.
nm
.
getAdminList
(
only_identified
=
True
):
for
packet
in
packets
:
node
.
notify
(
packet
)
node
.
send
(
packet
)
neo/master/transactions.py
View file @
ff4242d4
...
...
@@ -316,7 +316,7 @@ class TransactionManager(EventQueue):
logging
.
info
(
'Deadlock avoidance triggered by %s for %s:'
' new locking tid for TXN %s is %s'
,
uuid_str
(
storage_id
),
uuid_str
(
client
.
getUUID
()),
dump
(
ttid
),
dump
(
locking_tid
))
client
.
notify
(
Packets
.
NotifyDeadlock
(
ttid
,
locking_tid
))
client
.
send
(
Packets
.
NotifyDeadlock
(
ttid
,
locking_tid
))
def
vote
(
self
,
app
,
ttid
,
uuid_list
):
"""
...
...
neo/master/verification.py
View file @
ff4242d4
...
...
@@ -131,7 +131,7 @@ class VerificationManager(BaseServiceHandler):
if
uuid_set
:
packet
=
Packets
.
ValidateTransaction
(
ttid
,
tid
)
for
node
in
getIdentifiedList
(
pool_set
=
uuid_set
):
node
.
notify
(
packet
)
node
.
send
(
packet
)
def
answerLastIDs
(
self
,
conn
,
loid
,
ltid
):
self
.
_uuid_set
.
remove
(
conn
.
getUUID
())
...
...
neo/storage/app.py
View file @
ff4242d4
...
...
@@ -235,7 +235,7 @@ class Application(BaseApplication):
self
.
master_conn
.
setHandler
(
initialization
.
InitializationHandler
(
self
))
while
not
self
.
operational
:
_poll
()
self
.
master_conn
.
notify
(
Packets
.
NotifyReady
())
self
.
master_conn
.
send
(
Packets
.
NotifyReady
())
def
doOperation
(
self
):
"""Handle everything, including replications and transactions."""
...
...
neo/storage/checker.py
View file @
ff4242d4
...
...
@@ -181,7 +181,7 @@ class Checker(object):
uuid_list
.
append
(
conn
.
getUUID
())
self
.
app
.
closeClient
(
conn
)
p
=
Packets
.
NotifyPartitionCorrupted
(
self
.
partition
,
uuid_list
)
self
.
app
.
master_conn
.
notify
(
p
)
self
.
app
.
master_conn
.
send
(
p
)
if
len
(
self
.
conn_dict
)
<=
1
:
logging
.
warning
(
"check of partition %u aborted"
,
self
.
partition
)
self
.
queue
.
clear
()
...
...
neo/storage/handlers/storage.py
View file @
ff4242d4
...
...
@@ -210,7 +210,7 @@ class StorageOperationHandler(EventHandler):
"partition %u dropped"
%
partition
))
return
oid_list
,
user
,
desc
,
ext
,
packed
,
ttid
=
t
conn
.
notify
(
Packets
.
AddTransaction
(
conn
.
send
(
Packets
.
AddTransaction
(
tid
,
user
,
desc
,
ext
,
packed
,
ttid
,
oid_list
))
yield
conn
.
answer
(
Packets
.
AnswerFetchTransactions
(
...
...
@@ -253,7 +253,7 @@ class StorageOperationHandler(EventHandler):
conn
.
answer
(
Errors
.
ReplicationError
(
"partition %u dropped or truncated"
%
partition
))
return
conn
.
notify
(
Packets
.
AddObject
(
oid
,
serial
,
*
object
[
2
:]))
conn
.
send
(
Packets
.
AddObject
(
oid
,
serial
,
*
object
[
2
:]))
yield
conn
.
answer
(
Packets
.
AnswerFetchObjects
(
pack_tid
,
next_tid
,
next_oid
,
object_dict
),
msg_id
)
...
...
neo/storage/transactions.py
View file @
ff4242d4
...
...
@@ -147,7 +147,7 @@ class TransactionManager(EventQueue):
# are now locked normally and we don't rely anymore on other
# readable cells to check locks: we're really up-to-date.
for
partition
in
notify
:
self
.
_app
.
master_conn
.
notify
(
Packets
.
NotifyReplicationDone
(
self
.
_app
.
master_conn
.
send
(
Packets
.
NotifyReplicationDone
(
partition
,
replicated
.
pop
(
partition
)))
for
oid
,
ttid
in
store_lock_dict
.
iteritems
():
if
getPartition
(
oid
)
in
notify
:
...
...
@@ -355,7 +355,7 @@ class TransactionManager(EventQueue):
# Ask master to give the client a new locking tid, which will
# be used to ask all involved storage nodes to rebase the
# already locked oids for this transaction.
self
.
_app
.
master_conn
.
notify
(
Packets
.
NotifyDeadlock
(
self
.
_app
.
master_conn
.
send
(
Packets
.
NotifyDeadlock
(
ttid
,
transaction
.
locking_tid
))
self
.
_rebase
(
transaction
,
ttid
)
raise
DelayEvent
...
...
neo/tests/__init__.py
View file @
ff4242d4
...
...
@@ -326,7 +326,7 @@ class NeoUnitTestBase(NeoTestBase):
def
checkNoPacketSent
(
self
,
conn
):
""" check if no packet were sent """
self
.
_checkNoPacketSend
(
conn
,
'
notify
'
)
self
.
_checkNoPacketSend
(
conn
,
'
send
'
)
self
.
_checkNoPacketSend
(
conn
,
'answer'
)
self
.
_checkNoPacketSend
(
conn
,
'ask'
)
...
...
@@ -372,7 +372,7 @@ class NeoUnitTestBase(NeoTestBase):
def
checkNotifyPacket
(
self
,
conn
,
packet_type
,
packet_number
=
0
):
""" Check if a notify-packet with the right type is sent """
calls
=
conn
.
mockGetNamedCalls
(
'
notify
'
)
calls
=
conn
.
mockGetNamedCalls
(
'
send
'
)
packet
=
calls
.
pop
(
packet_number
).
getParam
(
0
)
self
.
assertTrue
(
isinstance
(
packet
,
protocol
.
Packet
))
self
.
assertEqual
(
type
(
packet
),
packet_type
)
...
...
neo/tests/master/testMasterApp.py
View file @
ff4242d4
...
...
@@ -92,7 +92,7 @@ class MasterAppTests(NeoUnitTestBase):
self
.
app
.
broadcastNodesInformation
([
s_node
])
# check conn
self
.
assertFalse
(
client_conn
.
mockGetNamedCalls
(
'
notify
'
))
self
.
assertFalse
(
client_conn
.
mockGetNamedCalls
(
'
send
'
))
self
.
checkNoPacketSent
(
master_conn
)
self
.
checkNotifyNodeInformation
(
storage_conn
)
...
...
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