2017-05-24 16:51:49 +02:00
|
|
|
import threading
|
|
|
|
|
|
|
|
from bmconfigparser import BMConfigParser
|
|
|
|
from debug import logger
|
|
|
|
from helper_threading import StoppableThread
|
|
|
|
import network.asyncore_pollchoose as asyncore
|
|
|
|
from network.connectionpool import BMConnectionPool
|
2017-05-29 14:35:08 +02:00
|
|
|
import state
|
2017-05-24 16:51:49 +02:00
|
|
|
|
|
|
|
class BMNetworkThread(threading.Thread, StoppableThread):
|
|
|
|
def __init__(self):
|
2017-07-10 07:05:50 +02:00
|
|
|
threading.Thread.__init__(self, name="Asyncore")
|
2017-05-24 16:51:49 +02:00
|
|
|
self.initStop()
|
2017-07-10 07:05:50 +02:00
|
|
|
self.name = "Asyncore"
|
2017-05-29 00:24:07 +02:00
|
|
|
logger.info("init asyncore thread")
|
2017-05-24 16:51:49 +02:00
|
|
|
|
|
|
|
def run(self):
|
2017-05-29 14:35:08 +02:00
|
|
|
while not self._stopped and state.shutdown == 0:
|
2017-05-24 16:51:49 +02:00
|
|
|
BMConnectionPool().loop()
|
|
|
|
|
|
|
|
def stopThread(self):
|
2017-05-29 14:35:08 +02:00
|
|
|
super(BMNetworkThread, self).stopThread()
|
2018-01-31 21:09:36 +01:00
|
|
|
for i in BMConnectionPool().listeningSockets.values():
|
2017-05-24 16:51:49 +02:00
|
|
|
try:
|
|
|
|
i.close()
|
|
|
|
except:
|
|
|
|
pass
|
2018-01-31 21:09:36 +01:00
|
|
|
for i in BMConnectionPool().outboundConnections.values():
|
2017-05-24 16:51:49 +02:00
|
|
|
try:
|
|
|
|
i.close()
|
|
|
|
except:
|
|
|
|
pass
|
2018-01-31 21:09:36 +01:00
|
|
|
for i in BMConnectionPool().inboundConnections.values():
|
2017-05-24 16:51:49 +02:00
|
|
|
try:
|
|
|
|
i.close()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# just in case
|
|
|
|
asyncore.close_all()
|