This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-01-29/src/network/receivequeuethread.py

56 lines
1.8 KiB
Python
Raw Normal View History

2019-12-19 12:24:53 +01:00
"""
Process data incoming from network
"""
import errno
2024-05-26 02:50:42 +02:00
from six.moves import queue as Queue
import socket
from network import connectionpool
from network.advanceddispatcher import UnknownStateError
from queues import receiveDataQueue
from .threads import StoppableThread
class ReceiveQueueThread(StoppableThread):
2019-12-19 12:24:53 +01:00
"""This thread processes data received from the network
(which is done by the asyncore thread)"""
def __init__(self, num=0):
super(ReceiveQueueThread, self).__init__(name="ReceiveQueue_%i" % num)
def run(self):
while not self._stopped:
try:
dest = receiveDataQueue.get(block=True, timeout=1)
except Queue.Empty:
continue
if self._stopped:
break
# cycle as long as there is data
# methods should return False if there isn't enough data,
# or the connection is to be aborted
# state_* methods should return False if there isn't
# enough data, or the connection is to be aborted
try:
connection = connectionpool.pool.getConnectionByAddr(dest)
2019-12-19 12:24:53 +01:00
# connection object not found
except KeyError:
receiveDataQueue.task_done()
continue
try:
connection.process()
2019-12-19 12:24:53 +01:00
# state isn't implemented
except UnknownStateError:
pass
except socket.error as err:
if err.errno == errno.EBADF:
connection.set_state("close", 0)
else:
self.logger.error('Socket error: %s', err)
except: # noqa:E722
self.logger.error('Error processing', exc_info=True)
receiveDataQueue.task_done()