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

43 lines
1.2 KiB
Python
Raw Normal View History

2019-12-19 12:24:53 +01:00
"""
A thread to handle network concerns
"""
import network.asyncore_pollchoose as asyncore
import state
from network.connectionpool import BMConnectionPool
from queues import excQueue
2019-12-23 12:18:37 +01:00
from network.threads import StoppableThread
class BMNetworkThread(StoppableThread):
2019-12-19 12:24:53 +01:00
"""Main network thread"""
name = "Asyncore"
def run(self):
try:
while not self._stopped and state.shutdown == 0:
BMConnectionPool().loop()
except Exception as e:
excQueue.put((self.name, e))
raise
def stopThread(self):
2017-05-29 14:35:08 +02:00
super(BMNetworkThread, self).stopThread()
2019-12-31 13:52:56 +01:00
for i in [listeningSockets for listeningSockets in BMConnectionPool().listeningSockets.values()]:
try:
i.close()
except:
pass
2019-12-31 13:52:56 +01:00
for i in [outboundConnections for outboundConnections in BMConnectionPool().outboundConnections.values()]:
try:
i.close()
except:
pass
2019-11-15 11:31:14 +01:00
for i in [inboundConnections for inboundConnections in BMConnectionPool().inboundConnections.values()]:
try:
i.close()
except:
pass
# just in case
asyncore.close_all()