lbry-sdk/lbrynet/dht/peerfinder.py

86 lines
2.5 KiB
Python
Raw Normal View History

2015-08-20 17:27:15 +02:00
import binascii
2016-11-03 20:42:45 +01:00
import logging
2015-08-20 17:27:15 +02:00
from zope.interface import implements
from twisted.internet import defer
2015-08-20 17:27:15 +02:00
from lbrynet.interfaces import IPeerFinder
from lbrynet.core.utils import short_hash
2015-08-20 17:27:15 +02:00
2016-11-03 20:42:45 +01:00
log = logging.getLogger(__name__)
2018-02-15 22:49:00 +01:00
class DummyPeerFinder(object):
"""This class finds peers which have announced to the DHT that they have certain blobs"""
def run_manage_loop(self):
pass
def stop(self):
pass
def find_peers_for_blob(self, blob_hash):
return defer.succeed([])
def get_most_popular_hashes(self, num_to_return):
return []
class DHTPeerFinder(DummyPeerFinder):
2015-08-20 17:27:15 +02:00
"""This class finds peers which have announced to the DHT that they have certain blobs"""
implements(IPeerFinder)
def __init__(self, dht_node, peer_manager):
"""
dht_node - an instance of dht.Node class
peer_manager - an instance of PeerManager class
"""
2015-08-20 17:27:15 +02:00
self.dht_node = dht_node
self.peer_manager = peer_manager
self.peers = []
def stop(self):
2018-02-27 21:45:12 +01:00
pass
2015-08-20 17:27:15 +02:00
@defer.inlineCallbacks
def find_peers_for_blob(self, blob_hash, timeout=None, filter_self=False):
"""
Find peers for blob in the DHT
blob_hash (str): blob hash to look for
timeout (int): seconds to timeout after
filter_self (bool): if True, and if a peer for a blob is itself, filter it
from the result
Returns:
list of peers for the blob
"""
def _trigger_timeout():
if not finished_deferred.called:
2017-02-20 01:27:01 +01:00
log.debug("Peer search for %s timed out", short_hash(blob_hash))
finished_deferred.cancel()
2015-08-20 17:27:15 +02:00
bin_hash = binascii.unhexlify(blob_hash)
finished_deferred = self.dht_node.getPeersForBlob(bin_hash)
if timeout is not None:
self.dht_node.reactor_callLater(timeout, _trigger_timeout)
try:
peer_list = yield finished_deferred
except defer.CancelledError:
peer_list = []
peers = set(peer_list)
good_peers = []
for host, port in peers:
if filter_self and (host, port) == (self.dht_node.externalIP, self.dht_node.peerPort):
continue
peer = self.peer_manager.get_peer(host, port)
if peer.is_available() is True:
good_peers.append(peer)
2015-08-20 17:27:15 +02:00
defer.returnValue(good_peers)
2015-08-20 17:27:15 +02:00
def get_most_popular_hashes(self, num_to_return):
2016-11-03 20:42:57 +01:00
return self.dht_node.get_most_popular_hashes(num_to_return)