This repository has been archived on 2024-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-06/src/network/networkthread.py

42 lines
1.2 KiB
Python

"""
A thread to handle network concerns
"""
import network.asyncore_pollchoose as asyncore
import connectionpool
from queues import excQueue
from threads import StoppableThread
class BMNetworkThread(StoppableThread):
"""Main network thread"""
name = "Asyncore"
def run(self):
try:
while not self._stopped:
connectionpool.pool.loop()
except Exception as e:
excQueue.put((self.name, e))
raise
def stopThread(self):
super(BMNetworkThread, self).stopThread()
for i in connectionpool.pool.listeningSockets.values():
try:
i.close()
except: # nosec B110 # pylint:disable=bare-except
pass
for i in connectionpool.pool.outboundConnections.values():
try:
i.close()
except: # nosec B110 # pylint:disable=bare-except
pass
for i in connectionpool.pool.inboundConnections.values():
try:
i.close()
except: # nosec B110 # pylint:disable=bare-except
pass
# just in case
asyncore.close_all()