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

42 lines
1.3 KiB
Python
Raw Normal View History

2019-08-29 19:46:03 +05:30
"""
src/network/announcethread.py
=================================
"""
import time
import state
from bmconfigparser import BMConfigParser
from network.bmproto import BMProto
from network.connectionpool import BMConnectionPool
from network.udp import UDPSocket
from threads import StoppableThread
class AnnounceThread(StoppableThread):
2019-08-29 19:46:03 +05:30
"""A thread to manage regular announcing of this node"""
name = "Announcer"
def run(self):
lastSelfAnnounced = 0
2017-05-29 14:35:08 +02:00
while not self._stopped and state.shutdown == 0:
processed = 0
if lastSelfAnnounced < time.time() - UDPSocket.announceInterval:
self.announceSelf()
lastSelfAnnounced = time.time()
if processed == 0:
self.stop.wait(10)
2019-08-29 19:46:03 +05:30
@staticmethod
def announceSelf():
"""Announce our presence"""
for connection in BMConnectionPool().udpSockets.values():
if not connection.announcing:
continue
for stream in state.streamsInWhichIAmParticipating:
2019-08-29 19:24:13 +05:30
addr = (
stream,
state.Peer('127.0.0.1', BMConfigParser().safeGetInt("bitmessagesettings", "port")),
time.time())
connection.append_write_buf(BMProto.assembleAddr([addr]))