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

47 lines
1.6 KiB
Python
Raw Normal View History

2019-08-29 16:16:03 +02:00
"""
2020-01-06 12:44:47 +01:00
Announce myself (node address)
2019-08-29 16:16:03 +02:00
"""
import time
import state
from bmconfigparser import BMConfigParser
from network.assemble import assemble_addr
from network.connectionpool import BMConnectionPool
from network.udp import UDPSocket
2019-12-31 13:52:56 +01:00
from network.node import Peer
2019-12-23 12:18:37 +01:00
from network.threads import StoppableThread
class AnnounceThread(StoppableThread):
2019-08-29 16:16:03 +02:00
"""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 16:16:03 +02:00
@staticmethod
def announceSelf():
"""Announce our presence"""
2019-12-31 13:52:56 +01:00
for connection in [udpSockets for udpSockets in BMConnectionPool().udpSockets.values()]:
if not connection.announcing:
continue
for stream in state.streamsInWhichIAmParticipating:
2019-08-29 15:54:13 +02:00
addr = (
stream,
2019-12-31 13:52:56 +01:00
# state.Peer('127.0.0.1',int( BMConfigParser().safeGet("bitmessagesettings", "port"))),
# int(time.time()))
# connection.append_write_buf(BMProto.assembleAddr([addr]))
Peer(
'127.0.0.1',
2020-01-06 12:44:47 +01:00
BMConfigParser().safeGetInt(
'bitmessagesettings', 'port')),
2019-08-29 15:54:13 +02:00
time.time())
connection.append_write_buf(assemble_addr([addr]))