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
9077cfcd
Commit
9077cfcd
authored
Jan 17, 2012
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Automatically set connection on node when establishing a connection.
parent
9502dd02
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
32 additions
and
23 deletions
+32
-23
neo/client/app.py
neo/client/app.py
+1
-1
neo/client/handlers/storage.py
neo/client/handlers/storage.py
+1
-1
neo/client/pool.py
neo/client/pool.py
+1
-3
neo/lib/bootstrap.py
neo/lib/bootstrap.py
+2
-2
neo/lib/connection.py
neo/lib/connection.py
+3
-1
neo/master/app.py
neo/master/app.py
+8
-4
neo/neoctl/neoctl.py
neo/neoctl/neoctl.py
+5
-2
neo/storage/replicator.py
neo/storage/replicator.py
+1
-1
neo/tests/client/testClientApp.py
neo/tests/client/testClientApp.py
+6
-2
neo/tests/client/testStorageHandler.py
neo/tests/client/testStorageHandler.py
+1
-1
neo/tests/testConnection.py
neo/tests/testConnection.py
+3
-2
neo/tests/threaded/__init__.py
neo/tests/threaded/__init__.py
+0
-3
No files found.
neo/client/app.py
View file @
9077cfcd
...
...
@@ -306,7 +306,7 @@ class Application(object):
# Connect to master
conn
=
MTClientConnection
(
self
.
em
,
self
.
notifications_handler
,
addr
=
self
.
trying_master_node
.
getAddress
()
,
node
=
self
.
trying_master_node
,
connector
=
self
.
connector_handler
(),
dispatcher
=
self
.
dispatcher
)
# Query for primary master node
...
...
neo/client/handlers/storage.py
View file @
9077cfcd
...
...
@@ -59,7 +59,7 @@ class StorageBootstrapHandler(AnswerBaseHandler):
assert
node
is
not
None
,
conn
.
getAddress
()
conn
.
setUUID
(
uuid
)
node
.
setUUID
(
uuid
)
node
.
setConnection
(
conn
)
assert
node
.
getConnection
()
is
conn
,
(
node
.
getConnection
(),
conn
)
class
StorageAnswersHandler
(
AnswerBaseHandler
):
""" Handle all messages related to ZODB operations """
...
...
neo/client/pool.py
View file @
9077cfcd
...
...
@@ -56,12 +56,10 @@ class ConnectionPool(object):
@
profiler_decorator
def
_initNodeConnection
(
self
,
node
):
"""Init a connection to a given storage node."""
addr
=
node
.
getAddress
()
assert
addr
is
not
None
app
=
self
.
app
neo
.
lib
.
logging
.
debug
(
'trying to connect to %s - %s'
,
node
,
node
.
getState
())
conn
=
MTClientConnection
(
app
.
em
,
app
.
storage_event_handler
,
addr
,
conn
=
MTClientConnection
(
app
.
em
,
app
.
storage_event_handler
,
node
,
connector
=
app
.
connector_handler
(),
dispatcher
=
app
.
dispatcher
)
p
=
Packets
.
RequestIdentification
(
NodeTypes
.
CLIENT
,
app
.
uuid
,
None
,
app
.
name
)
...
...
neo/lib/bootstrap.py
View file @
9077cfcd
...
...
@@ -144,8 +144,8 @@ class BootstrapManager(EventHandler):
sleep
(
1
)
if
conn
is
None
:
# open the connection
addr
=
self
.
current
.
getAddress
()
conn
=
ClientConnection
(
em
,
self
,
addr
,
connector_handler
())
conn
=
ClientConnection
(
em
,
self
,
self
.
current
,
connector_handler
())
# still processing
em
.
poll
(
1
)
node
=
nm
.
getByUUID
(
conn
.
getUUID
())
...
...
neo/lib/connection.py
View file @
9077cfcd
...
...
@@ -632,8 +632,10 @@ class ClientConnection(Connection):
connecting
=
True
def
__init__
(
self
,
event_manager
,
handler
,
addr
,
connector
):
def
__init__
(
self
,
event_manager
,
handler
,
node
,
connector
):
addr
=
node
.
getAddress
()
Connection
.
__init__
(
self
,
event_manager
,
handler
,
connector
,
addr
)
node
.
setConnection
(
self
)
handler
.
connectionStarted
(
self
)
try
:
try
:
...
...
neo/master/app.py
View file @
9077cfcd
...
...
@@ -151,6 +151,7 @@ class Application(object):
self
.
unconnected_master_node_set
.
clear
()
self
.
negotiating_master_node_set
.
clear
()
self
.
listening_conn
.
setHandler
(
election
.
ServerElectionHandler
(
self
))
getByAddress
=
self
.
nm
.
getByAddress
while
True
:
...
...
@@ -166,7 +167,10 @@ class Application(object):
while
(
self
.
unconnected_master_node_set
or
self
.
negotiating_master_node_set
):
for
addr
in
self
.
unconnected_master_node_set
:
ClientConnection
(
self
.
em
,
client_handler
,
addr
=
addr
,
ClientConnection
(
self
.
em
,
client_handler
,
# XXX: Ugly, but the whole election code will be
# replaced soon
node
=
getByAddress
(
addr
),
connector
=
self
.
connector_handler
())
self
.
negotiating_master_node_set
.
add
(
addr
)
self
.
unconnected_master_node_set
.
clear
()
...
...
@@ -297,7 +301,7 @@ class Application(object):
node
=
nm
.
getByUUID
(
conn_uuid
)
assert
node
is
not
None
assert
node
.
isMaster
()
and
not
conn
.
isClient
()
assert
node
.
_connection
is
None
and
node
.
isUnknown
()
assert
node
.
isUnknown
()
# this may trigger 'unexpected answer' warnings on remote side
conn
.
close
()
...
...
@@ -331,13 +335,13 @@ class Application(object):
# Restart completely. Non-optimized
# but lower level code needs to be stabilized first.
addr
=
self
.
primary_master_node
.
getAddress
()
for
conn
in
self
.
em
.
getConnectionList
():
conn
.
close
()
# Reconnect to primary master node.
primary_handler
=
secondary
.
PrimaryHandler
(
self
)
ClientConnection
(
self
.
em
,
primary_handler
,
addr
=
addr
,
ClientConnection
(
self
.
em
,
primary_handler
,
node
=
self
.
primary_master_node
,
connector
=
self
.
connector_handler
())
# and another for the future incoming connections
...
...
neo/neoctl/neoctl.py
View file @
9077cfcd
...
...
@@ -20,6 +20,7 @@ from neo.lib.connection import ClientConnection
from
neo.lib.event
import
EventManager
from
neo.lib.protocol
import
ClusterStates
,
NodeStates
,
ErrorCodes
,
Packets
from
neo.lib.util
import
getConnectorFromAddress
from
neo.lib.node
import
NodeManager
from
.handler
import
CommandEventHandler
class
NotReadyException
(
Exception
):
...
...
@@ -33,19 +34,21 @@ class NeoCTL(object):
def
__init__
(
self
,
address
):
connector_name
=
getConnectorFromAddress
(
address
)
self
.
connector_handler
=
getConnectorHandler
(
connector_name
)
self
.
server
=
address
self
.
nm
=
nm
=
NodeManager
()
self
.
server
=
nm
.
createAdmin
(
address
=
address
)
self
.
em
=
EventManager
()
self
.
handler
=
CommandEventHandler
(
self
)
self
.
response_queue
=
[]
def
close
(
self
):
self
.
em
.
close
()
self
.
nm
.
close
()
del
self
.
__dict__
def
__getConnection
(
self
):
if
not
self
.
connected
:
self
.
connection
=
ClientConnection
(
self
.
em
,
self
.
handler
,
addr
=
self
.
server
,
connector
=
self
.
connector_handler
())
node
=
self
.
server
,
connector
=
self
.
connector_handler
())
while
self
.
connection
is
not
None
:
if
self
.
connected
:
break
...
...
neo/storage/replicator.py
View file @
9077cfcd
...
...
@@ -250,7 +250,7 @@ class Replicator(object):
if
connection
is
None
or
connection
.
getAddress
()
!=
addr
:
handler
=
replication
.
ReplicationHandler
(
app
)
self
.
current_connection
=
ClientConnection
(
app
.
em
,
handler
,
addr
=
addr
,
connector
=
app
.
connector_handler
())
node
=
node
,
connector
=
app
.
connector_handler
())
p
=
Packets
.
RequestIdentification
(
NodeTypes
.
STORAGE
,
app
.
uuid
,
app
.
server
,
app
.
name
)
self
.
current_connection
.
ask
(
p
)
...
...
neo/tests/client/testClientApp.py
View file @
9077cfcd
...
...
@@ -783,7 +783,7 @@ class ClientApplicationTests(NeoUnitTestBase):
# fourth iteration : connection to primary master succeeded
def
_ask5
(
_
):
app
.
trying_master_node
=
app
.
primary_master_node
=
Mock
({
'getAddress'
:
(
'1
92.168.1.1'
,
10000
),
'getAddress'
:
(
'1
27.0.0.1'
,
10011
),
'__str__'
:
'Fake master node'
,
})
# third iteration : node not ready
...
...
@@ -792,19 +792,23 @@ class ClientApplicationTests(NeoUnitTestBase):
# second iteration : master node changed
def
_ask3
(
_
):
app
.
primary_master_node
=
Mock
({
'getAddress'
:
(
'1
92.168.1.1'
,
1000
0
),
'getAddress'
:
(
'1
27.0.0.1'
,
1001
0
),
'__str__'
:
'Fake master node'
,
})
# first iteration : connection failed
def
_ask2
(
_
):
app
.
trying_master_node
=
None
# do nothing for the first call
# Case of an unknown primary_uuid (XXX: handler should probably raise,
# it's not normal for a node to inform of a primary uuid without
# telling us what its address is.)
def
_ask1
(
_
):
pass
ask_func_list
=
[
_ask1
,
_ask2
,
_ask3
,
_ask4
,
_ask5
,
_ask6
,
_ask7
,
_ask8
]
def
_ask_base
(
conn
,
_
,
handler
=
None
):
ask_func_list
.
pop
(
0
)(
conn
)
app
.
nm
.
getByAddress
(
conn
.
getAddress
()).
_connection
=
None
app
.
_ask
=
_ask_base
# faked environnement
app
.
connector_handler
=
DoNothingConnector
...
...
neo/tests/client/testStorageHandler.py
View file @
9077cfcd
...
...
@@ -57,7 +57,7 @@ class StorageBootstrapHandlerTests(NeoUnitTestBase):
def
test_acceptIdentification2
(
self
):
uuid
=
self
.
getNewUUID
()
conn
=
self
.
getConnection
()
node
=
Mock
()
node
=
Mock
(
{
'getConnection'
:
conn
}
)
self
.
app
.
nm
=
Mock
({
'getByAddress'
:
node
})
self
.
handler
.
acceptIdentification
(
conn
,
NodeTypes
.
STORAGE
,
uuid
,
10
,
0
,
None
)
...
...
neo/tests/testConnection.py
View file @
9077cfcd
...
...
@@ -39,6 +39,7 @@ class ConnectionTests(NeoUnitTestBase):
self
.
em
=
Mock
({
'__repr__'
:
'Fake Em'
})
self
.
handler
=
Mock
({
'__repr__'
:
'Fake Handler'
})
self
.
address
=
(
"127.0.0.7"
,
93413
)
self
.
node
=
Mock
({
'getAddress'
:
self
.
address
})
def
_makeListeningConnection
(
self
,
addr
):
# create instance after monkey patches
...
...
@@ -54,7 +55,7 @@ class ConnectionTests(NeoUnitTestBase):
def
_makeClientConnection
(
self
):
self
.
connector
=
DoNothingConnector
()
return
ClientConnection
(
event_manager
=
self
.
em
,
handler
=
self
.
handler
,
connector
=
self
.
connector
,
addr
=
self
.
address
)
connector
=
self
.
connector
,
node
=
self
.
node
)
def
_makeServerConnection
(
self
):
self
.
connector
=
DoNothingConnector
()
...
...
@@ -843,7 +844,7 @@ class MTConnectionTests(ConnectionTests):
def
_makeClientConnection
(
self
):
self
.
connector
=
DoNothingConnector
()
return
MTClientConnection
(
event_manager
=
self
.
em
,
handler
=
self
.
handler
,
connector
=
self
.
connector
,
addr
=
self
.
address
,
connector
=
self
.
connector
,
node
=
self
.
node
,
dispatcher
=
self
.
dispatcher
)
def
test_MTClientConnectionQueueParameter
(
self
):
...
...
neo/tests/threaded/__init__.py
View file @
9077cfcd
...
...
@@ -346,9 +346,6 @@ class NeoCTL(neo.neoctl.app.NeoCTL):
super
(
NeoCTL
,
self
).
__init__
(
cluster
.
admin
.
getVirtualAddress
())
self
.
em
.
_timeout
=
-
1
server
=
property
(
lambda
self
:
ServerNode
.
resolv
(
self
.
_server
),
lambda
self
,
address
:
setattr
(
self
,
'_server'
,
address
))
class
LoggerThreadName
(
str
):
...
...
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