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
f7f8533a
Commit
f7f8533a
authored
Mar 11, 2023
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small optimization in epoll loop
parent
90a5aa17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
21 deletions
+19
-21
neo/lib/connection.py
neo/lib/connection.py
+2
-1
neo/lib/event.py
neo/lib/event.py
+17
-20
No files found.
neo/lib/connection.py
View file @
f7f8533a
...
@@ -482,6 +482,7 @@ class Connection(BaseConnection):
...
@@ -482,6 +482,7 @@ class Connection(BaseConnection):
def
readable
(
self
):
def
readable
(
self
):
"""Called when self is readable."""
"""Called when self is readable."""
# last known remote activity
# last known remote activity
empty_queue
=
not
self
.
_queue
try
:
try
:
try
:
try
:
if
self
.
connector
.
receive
(
self
.
read_buf
):
if
self
.
connector
.
receive
(
self
.
read_buf
):
...
@@ -499,7 +500,7 @@ class Connection(BaseConnection):
...
@@ -499,7 +500,7 @@ class Connection(BaseConnection):
except
PacketMalformedError
,
e
:
except
PacketMalformedError
,
e
:
logging
.
error
(
'malformed packet from %r: %s'
,
self
,
e
)
logging
.
error
(
'malformed packet from %r: %s'
,
self
,
e
)
self
.
_closure
()
self
.
_closure
()
return
not
not
self
.
_queue
return
empty_queue
and
not
not
self
.
_queue
def
hasPendingMessages
(
self
):
def
hasPendingMessages
(
self
):
"""
"""
...
...
neo/lib/event.py
View file @
f7f8533a
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import
os
import
os
from
collections
import
deque
from
time
import
time
from
time
import
time
from
select
import
epoll
,
EPOLLIN
,
EPOLLOUT
,
EPOLLERR
,
EPOLLHUP
from
select
import
epoll
,
EPOLLIN
,
EPOLLOUT
,
EPOLLERR
,
EPOLLHUP
from
errno
import
EAGAIN
,
EEXIST
,
EINTR
,
ENOENT
from
errno
import
EAGAIN
,
EEXIST
,
EINTR
,
ENOENT
...
@@ -41,7 +42,7 @@ class EpollEventManager(object):
...
@@ -41,7 +42,7 @@ class EpollEventManager(object):
self
.
reader_set
=
set
()
self
.
reader_set
=
set
()
self
.
writer_set
=
set
()
self
.
writer_set
=
set
()
self
.
epoll
=
epoll
()
self
.
epoll
=
epoll
()
self
.
_pending_processing
=
[]
self
.
_pending_processing
=
deque
()
self
.
_trigger_list
=
[]
self
.
_trigger_list
=
[]
self
.
_trigger_fd
,
w
=
os
.
pipe
()
self
.
_trigger_fd
,
w
=
os
.
pipe
()
os
.
close
(
w
)
os
.
close
(
w
)
...
@@ -112,12 +113,13 @@ class EpollEventManager(object):
...
@@ -112,12 +113,13 @@ class EpollEventManager(object):
self
.
addReader
(
conn
)
self
.
addReader
(
conn
)
def
unregister
(
self
,
conn
,
close
=
False
):
def
unregister
(
self
,
conn
,
close
=
False
):
new_pending_processing
=
[
x
for
x
in
self
.
_pending_processing
try
:
if
x
is
not
conn
]
self
.
_pending_processing
.
remove
(
conn
)
# Check that we removed at most one entry from
except
ValueError
:
# self._pending_processing .
pass
assert
len
(
new_pending_processing
)
>
len
(
self
.
_pending_processing
)
-
2
else
:
self
.
_pending_processing
=
new_pending_processing
# Check that there was no duplicate.
assert
conn
not
in
self
.
_pending_processing
connector
=
conn
.
getConnector
()
connector
=
conn
.
getConnector
()
fd
=
connector
.
getDescriptor
()
fd
=
connector
.
getDescriptor
()
try
:
try
:
...
@@ -144,24 +146,18 @@ class EpollEventManager(object):
...
@@ -144,24 +146,18 @@ class EpollEventManager(object):
def
isIdle
(
self
):
def
isIdle
(
self
):
return
not
(
self
.
_pending_processing
or
self
.
writer_set
)
return
not
(
self
.
_pending_processing
or
self
.
writer_set
)
def
_addPendingConnection
(
self
,
conn
):
pending_processing
=
self
.
_pending_processing
if
conn
not
in
pending_processing
:
pending_processing
.
append
(
conn
)
def
poll
(
self
,
blocking
=
1
):
def
poll
(
self
,
blocking
=
1
):
if
not
self
.
_pending_processing
:
pending_processing
=
self
.
_pending_processing
# Fetch messages from polled file descriptors
if
not
pending_processing
:
self
.
_poll
(
blocking
)
self
.
_poll
(
blocking
)
if
not
self
.
_
pending_processing
:
if
not
pending_processing
:
return
return
to_process
=
self
.
_pending_processing
.
pop
(
0
)
to_process
=
pending_processing
.
popleft
(
)
try
:
try
:
to_process
.
process
()
to_process
.
process
()
finally
:
finally
:
# ...and requeue if there are pending messages
if
to_process
.
hasPendingMessages
():
if
to_process
.
hasPendingMessages
():
self
.
_addPendingConnection
(
to_process
)
pending_processing
.
append
(
to_process
)
# Non-blocking call: as we handled a packet, we should just offer
# Non-blocking call: as we handled a packet, we should just offer
# poll a chance to fetch & send already-available data, but it must
# poll a chance to fetch & send already-available data, but it must
# not delay us.
# not delay us.
...
@@ -209,6 +205,7 @@ class EpollEventManager(object):
...
@@ -209,6 +205,7 @@ class EpollEventManager(object):
return
return
else
:
else
:
if
event_list
:
if
event_list
:
pending_processing
=
self
.
_pending_processing
wlist
=
[]
wlist
=
[]
elist
=
[]
elist
=
[]
for
fd
,
event
in
event_list
:
for
fd
,
event
in
event_list
:
...
@@ -218,7 +215,7 @@ class EpollEventManager(object):
...
@@ -218,7 +215,7 @@ class EpollEventManager(object):
except
KeyError
:
except
KeyError
:
continue
continue
if
conn
.
readable
():
if
conn
.
readable
():
self
.
_addPendingConnection
(
conn
)
pending_processing
.
append
(
conn
)
if
event
&
EPOLLOUT
:
if
event
&
EPOLLOUT
:
wlist
.
append
(
fd
)
wlist
.
append
(
fd
)
if
event
&
(
EPOLLERR
|
EPOLLHUP
):
if
event
&
(
EPOLLERR
|
EPOLLHUP
):
...
@@ -244,7 +241,7 @@ class EpollEventManager(object):
...
@@ -244,7 +241,7 @@ class EpollEventManager(object):
del
action_list
[:]
del
action_list
[:]
continue
continue
if
conn
.
readable
():
if
conn
.
readable
():
self
.
_addPendingConnection
(
conn
)
pending_processing
.
append
(
conn
)
return
return
finally
:
finally
:
self
.
_closeRelease
()
self
.
_closeRelease
()
...
...
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