Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
c2c97752
Commit
c2c97752
authored
Aug 12, 2015
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename parameter of polling methods now that _poll computes the timeout itself
parent
eef52c27
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
26 deletions
+26
-26
neo/lib/event.py
neo/lib/event.py
+8
-8
neo/tests/testEvent.py
neo/tests/testEvent.py
+1
-1
neo/tests/threaded/__init__.py
neo/tests/threaded/__init__.py
+14
-14
neo/tests/threaded/testReplication.py
neo/tests/threaded/testReplication.py
+3
-3
No files found.
neo/lib/event.py
View file @
c2c97752
...
...
@@ -104,10 +104,10 @@ class EpollEventManager(object):
if
conn
not
in
pending_processing
:
pending_processing
.
append
(
conn
)
def
poll
(
self
,
timeout
=
1
):
def
poll
(
self
,
blocking
=
1
):
if
not
self
.
_pending_processing
:
# Fetch messages from polled file descriptors
self
.
_poll
(
timeout
=
timeout
)
self
.
_poll
(
blocking
)
if
not
self
.
_pending_processing
:
return
to_process
=
self
.
_pending_processing
.
pop
(
0
)
...
...
@@ -120,10 +120,10 @@ class EpollEventManager(object):
# Non-blocking call: as we handled a packet, we should just offer
# poll a chance to fetch & send already-available data, but it must
# not delay us.
self
.
_poll
(
timeout
=
0
)
self
.
_poll
(
0
)
def
_poll
(
self
,
timeout
=
1
):
if
timeout
:
def
_poll
(
self
,
blocking
):
if
blocking
:
timeout
=
None
for
conn
in
self
.
connection_dict
.
itervalues
():
t
=
conn
.
getTimeout
()
...
...
@@ -133,9 +133,9 @@ class EpollEventManager(object):
# Make sure epoll_wait does not return too early, because it has a
# granularity of 1ms and Python 2.7 rounds the timeout towards zero.
# See also https://bugs.python.org/issue20452 (fixed in Python 3).
timeout
=
.
001
+
max
(
0
,
timeout
-
time
())
if
timeout
else
-
1
blocking
=
.
001
+
max
(
0
,
timeout
-
time
())
if
timeout
else
-
1
try
:
event_list
=
self
.
epoll
.
poll
(
timeout
)
event_list
=
self
.
epoll
.
poll
(
blocking
)
except
IOError
,
exc
:
if
exc
.
errno
in
(
0
,
EAGAIN
):
logging
.
info
(
'epoll.poll triggered undocumented error %r'
,
...
...
@@ -144,7 +144,7 @@ class EpollEventManager(object):
raise
return
if
not
event_list
:
if
timeout
>
0
:
if
blocking
>
0
:
timeout_conn
.
onTimeout
()
return
wlist
=
[]
...
...
neo/tests/testEvent.py
View file @
c2c97752
...
...
@@ -96,7 +96,7 @@ class EventTests(NeoUnitTestBase):
(
r_connector
.
getDescriptor
(),
EPOLLIN
),
(
w_connector
.
getDescriptor
(),
EPOLLOUT
),
)})
em
.
poll
(
timeout
=
1
)
em
.
poll
(
1
)
# check it called poll on epoll
self
.
assertEqual
(
len
(
em
.
epoll
.
mockGetNamedCalls
(
"poll"
)),
1
)
call
=
em
.
epoll
.
mockGetNamedCalls
(
"poll"
)[
0
]
...
...
neo/tests/threaded/__init__.py
View file @
c2c97752
...
...
@@ -113,7 +113,7 @@ class Serialized(object):
class
SerializedEventManager
(
EventManager
):
_lock
=
None
_
timeout
=
0
_
blocking
=
0
@
classmethod
def
decorate
(
cls
,
func
):
...
...
@@ -135,10 +135,10 @@ class SerializedEventManager(EventManager):
self
.
__class__
=
SerializedEventManager
self
.
_super__init__
()
def
_poll
(
self
,
timeout
=
1
):
def
_poll
(
self
,
blocking
):
if
self
.
_pending_processing
:
assert
timeout
==
0
,
timeout
elif
0
==
self
.
_
timeout
==
timeout
==
Serialized
.
pending
==
len
(
assert
blocking
==
0
,
blocking
elif
0
==
self
.
_
blocking
==
blocking
==
Serialized
.
pending
==
len
(
self
.
writer_set
):
return
else
:
...
...
@@ -151,11 +151,11 @@ class SerializedEventManager(EventManager):
# TODO: Detect where a message is sent to jump immediately to nodes
# that will do something.
Serialized
.
tic
(
self
.
_lock
)
if
timeout
!=
0
:
timeout
=
self
.
_timeout
if
timeout
!=
0
and
Serialized
.
pending
==
1
:
Serialized
.
pending
=
timeout
=
0
EventManager
.
_poll
(
self
,
timeout
)
if
blocking
!=
0
:
blocking
=
self
.
_blocking
if
blocking
!=
0
and
Serialized
.
pending
==
1
:
Serialized
.
pending
=
blocking
=
0
EventManager
.
_poll
(
self
,
blocking
)
def
addReader
(
self
,
conn
):
EventManager
.
addReader
(
self
,
conn
)
...
...
@@ -336,12 +336,12 @@ class ClientApplication(Node, neo.client.app.Application):
processe packets upon NEOCluster.tic() calls.
"""
if
master
:
self
.
em
.
_
timeout
=
1
self
.
em
.
_
blocking
=
1
if
not
self
.
em
.
_lock
.
acquire
(
0
):
Serialized
.
background
()
else
:
Serialized
.
release
(
wake_other
=
0
);
Serialized
.
acquire
()
self
.
em
.
_
timeout
=
0
self
.
em
.
_
blocking
=
0
def
__del__
(
self
):
try
:
...
...
@@ -365,7 +365,7 @@ class NeoCTL(neo.neoctl.app.NeoCTL):
@
SerializedEventManager
.
decorate
def
__init__
(
self
,
*
args
,
**
kw
):
super
(
NeoCTL
,
self
).
__init__
(
*
args
,
**
kw
)
self
.
em
.
_
timeout
=
1
self
.
em
.
_
blocking
=
1
class
LoggerThreadName
(
str
):
...
...
@@ -672,7 +672,7 @@ class NEOCluster(object):
return
db
def
stop
(
self
):
if
hasattr
(
self
,
'_db'
)
and
self
.
client
.
em
.
_
timeout
==
0
:
if
hasattr
(
self
,
'_db'
)
and
self
.
client
.
em
.
_
blocking
==
0
:
self
.
client
.
setPoll
(
True
)
self
.
__dict__
.
pop
(
'_db'
,
self
.
client
).
close
()
try
:
...
...
@@ -714,7 +714,7 @@ class NEOCluster(object):
def
getZODBStorage
(
self
,
**
kw
):
# automatically put client in master mode
if
self
.
client
.
em
.
_
timeout
==
0
:
if
self
.
client
.
em
.
_
blocking
==
0
:
self
.
client
.
setPoll
(
True
)
return
Storage
.
Storage
(
None
,
self
.
name
,
_app
=
self
.
client
,
**
kw
)
...
...
neo/tests/threaded/testReplication.py
View file @
c2c97752
...
...
@@ -256,12 +256,12 @@ class ReplicationTests(NEOThreadedTest):
# force ping to have expired
# connection will be closed before upstream master has time
# to answer
def
_poll
(
orig
,
self
,
timeout
):
def
_poll
(
orig
,
self
,
blocking
):
if
backup
.
master
.
em
is
self
:
p
.
revert
()
conn
.
onTimeout
()
else
:
orig
(
self
,
timeout
)
orig
(
self
,
blocking
)
with
Patch
(
EventManager
,
_poll
=
_poll
)
as
p
:
backup
.
tic
(
force
=
1
)
new_conn
,
=
backup
.
master
.
getConnectionList
(
backup
.
upstream
.
master
)
...
...
@@ -285,7 +285,7 @@ class ReplicationTests(NEOThreadedTest):
Serialized
.
tic
();
count
[
0
]
or
Serialized
.
tic
()
t
=
time
.
time
()
# XXX: review API for checking timeouts
backup
.
storage
.
em
.
_
timeout
=
1
backup
.
storage
.
em
.
_
blocking
=
1
Serialized
.
tic
();
self
.
assertEqual
(
count
[
0
],
2
)
Serialized
.
tic
();
self
.
assertEqual
(
count
[
0
],
3
)
self
.
assertTrue
(
t
+
1
<=
time
.
time
())
...
...
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