Onionr/src/communicator/onlinepeers/onlinepeers.py

66 lines
2.3 KiB
Python
Raw Normal View History

"""Onionr - Private P2P Communication.
2019-07-10 22:38:20 +00:00
get online peers in a communicator instance
2019-12-18 10:08:33 +00:00
"""
import time
from typing import TYPE_CHECKING
2020-07-29 08:57:06 +00:00
from etc.humanreadabletime import human_readable_time
2019-12-18 10:08:33 +00:00
import logger
if TYPE_CHECKING:
from deadsimplekv import DeadSimpleKV
from communicator import OnionrCommunicatorDaemon
2019-12-18 10:08:33 +00:00
"""
2019-07-10 22:38:20 +00:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
2019-12-18 10:08:33 +00:00
"""
def get_online_peers(comm_inst: 'OnionrCommunicatorDaemon'):
"""Manage the kv.get('onlinePeers') attribute list.
Connect to more peers if we have none connected
2019-12-18 10:08:33 +00:00
"""
2019-07-18 17:40:48 +00:00
config = comm_inst.config
kv: "DeadSimpleKV" = comm_inst.shared_state.get_by_string("DeadSimpleKV")
if config.get('general.offline_mode', False):
comm_inst.decrementThreadCount('get_online_peers')
return
2019-07-10 22:38:20 +00:00
logger.debug('Refreshing peer pool...')
max_peers = int(config.get('peers.max_connect', 10))
needed = max_peers - len(kv.get('onlinePeers'))
2019-07-10 22:38:20 +00:00
2019-12-18 10:10:00 +00:00
last_seen = 'never'
2020-07-29 08:57:06 +00:00
if not isinstance(kv.get('lastNodeSeen'), type(None)):
last_seen = human_readable_time(kv.get('lastNodeSeen'))
2019-12-18 10:10:00 +00:00
for _ in range(needed):
if len(kv.get('onlinePeers')) == 0:
2019-07-10 22:38:20 +00:00
comm_inst.connectNewPeer(useBootstrap=True)
else:
comm_inst.connectNewPeer()
if kv.get('shutdown'):
2019-07-10 22:38:20 +00:00
break
else:
if len(kv.get('onlinePeers')) == 0:
logger.debug('Couldn\'t connect to any peers.' +
f' Last node seen {last_seen} ago.')
try:
get_online_peers(comm_inst)
except RecursionError:
pass
2019-07-10 22:38:20 +00:00
else:
2020-07-29 08:57:06 +00:00
kv.put('lastNodeSeen', time.time())
2019-12-18 10:10:00 +00:00
comm_inst.decrementThreadCount('get_online_peers')