2017-05-27 19:09:21 +02:00
|
|
|
import threading
|
|
|
|
import time
|
|
|
|
|
|
|
|
from bmconfigparser import BMConfigParser
|
|
|
|
from debug import logger
|
|
|
|
from helper_threading import StoppableThread
|
|
|
|
from network.bmproto import BMProto
|
|
|
|
from network.connectionpool import BMConnectionPool
|
|
|
|
from network.udp import UDPSocket
|
|
|
|
import state
|
|
|
|
|
|
|
|
class AnnounceThread(threading.Thread, StoppableThread):
|
|
|
|
def __init__(self):
|
|
|
|
threading.Thread.__init__(self, name="AnnounceThread")
|
|
|
|
self.initStop()
|
|
|
|
self.name = "AnnounceThread"
|
2017-05-29 00:24:07 +02:00
|
|
|
logger.info("init announce thread")
|
2017-05-27 19:09:21 +02:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
lastSelfAnnounced = 0
|
2017-05-29 14:35:08 +02:00
|
|
|
while not self._stopped and state.shutdown == 0:
|
2017-05-27 19:09:21 +02:00
|
|
|
processed = 0
|
|
|
|
if lastSelfAnnounced < time.time() - UDPSocket.announceInterval:
|
|
|
|
self.announceSelf()
|
|
|
|
lastSelfAnnounced = time.time()
|
|
|
|
if processed == 0:
|
|
|
|
self.stop.wait(10)
|
|
|
|
|
|
|
|
def announceSelf(self):
|
|
|
|
for connection in BMConnectionPool().udpSockets.values():
|
|
|
|
for stream in state.streamsInWhichIAmParticipating:
|
|
|
|
addr = (stream, state.Peer('127.0.0.1', BMConfigParser().safeGetInt("bitmessagesettings", "port")), time.time())
|
2017-07-06 19:45:36 +02:00
|
|
|
connection.append_write_buf(BMProto.assembleAddr([addr]))
|