You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
839 B
Python
32 lines
839 B
Python
import Queue
|
|
|
|
import state
|
|
from network.connectionpool import BMConnectionPool
|
|
from queues import addrQueue
|
|
from threads import StoppableThread
|
|
|
|
|
|
class AddrThread(StoppableThread):
|
|
name = "AddrBroadcaster"
|
|
|
|
def run(self):
|
|
while not state.shutdown:
|
|
chunk = []
|
|
while True:
|
|
try:
|
|
data = addrQueue.get(False)
|
|
chunk.append((data[0], data[1]))
|
|
if len(data) > 2:
|
|
source = BMConnectionPool().getConnectionByAddr(data[2])
|
|
except Queue.Empty:
|
|
break
|
|
except KeyError:
|
|
continue
|
|
|
|
# finish
|
|
|
|
addrQueue.iterate()
|
|
for i in range(len(chunk)):
|
|
addrQueue.task_done()
|
|
self.stop.wait(1)
|