Dmitri Bogomolov
daf556ca50
- import of pickled knownnodes; - default knownnodes if nothing imported; - knownnodes starvation (#1335), demanded changes in networkthread.
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
import threading
|
|
|
|
import network.asyncore_pollchoose as asyncore
|
|
import state
|
|
from debug import logger
|
|
from helper_threading import StoppableThread
|
|
from network.connectionpool import BMConnectionPool
|
|
from queues import excQueue
|
|
|
|
|
|
class BMNetworkThread(threading.Thread, StoppableThread):
|
|
def __init__(self):
|
|
threading.Thread.__init__(self, name="Asyncore")
|
|
self.initStop()
|
|
self.name = "Asyncore"
|
|
logger.info("init asyncore thread")
|
|
|
|
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):
|
|
super(BMNetworkThread, self).stopThread()
|
|
for i in BMConnectionPool().listeningSockets.values():
|
|
try:
|
|
i.close()
|
|
except:
|
|
pass
|
|
for i in BMConnectionPool().outboundConnections.values():
|
|
try:
|
|
i.close()
|
|
except:
|
|
pass
|
|
for i in BMConnectionPool().inboundConnections.values():
|
|
try:
|
|
i.close()
|
|
except:
|
|
pass
|
|
|
|
# just in case
|
|
asyncore.close_all()
|