py-libp2p/libp2p/host/basic_host.py

116 lines
3.8 KiB
Python
Raw Normal View History

2019-08-08 14:22:06 +08:00
from typing import Any, List, Sequence
2019-07-27 15:15:42 +08:00
import multiaddr
2018-10-15 01:47:06 +08:00
2019-07-30 15:31:02 +08:00
from libp2p.network.network_interface import INetwork
2019-08-03 13:36:19 +08:00
from libp2p.network.stream.net_stream_interface import INetStream
2019-07-28 22:30:51 +08:00
from libp2p.peer.id import ID
from libp2p.peer.peerinfo import PeerInfo
2019-07-30 15:31:02 +08:00
from libp2p.peer.peerstore_interface import IPeerStore
2019-07-28 22:30:51 +08:00
from libp2p.routing.kademlia.kademlia_peer_router import KadmeliaPeerRouter
from libp2p.typing import StreamHandlerFn, TProtocol
2019-07-28 22:30:51 +08:00
from .host_interface import IHost
2018-11-13 02:02:49 +08:00
2018-10-15 13:52:25 +08:00
# Upon host creation, host takes in options,
2018-10-15 02:11:03 +08:00
# including the list of addresses on which to listen.
2018-10-15 13:52:25 +08:00
# Host then parses these options and delegates to its Network instance,
2018-10-15 02:11:03 +08:00
# telling it to listen on the given listen addresses.
2018-10-15 13:52:25 +08:00
class BasicHost(IHost):
2019-07-30 15:31:02 +08:00
_network: INetwork
2019-07-27 15:15:42 +08:00
router: KadmeliaPeerRouter
2019-07-30 15:31:02 +08:00
peerstore: IPeerStore
2019-07-27 15:15:42 +08:00
2018-10-15 13:52:25 +08:00
# default options constructor
2019-07-30 15:31:02 +08:00
def __init__(self, network: INetwork, router: KadmeliaPeerRouter = None) -> None:
self._network = network
self._router = router
2019-05-06 02:32:41 +08:00
self.peerstore = self._network.peerstore
2018-10-15 13:52:25 +08:00
2019-07-27 15:15:42 +08:00
def get_id(self) -> ID:
2018-10-15 13:52:25 +08:00
"""
:return: peer_id of host
"""
return self._network.get_peer_id()
2018-10-15 13:52:25 +08:00
2019-07-30 15:31:02 +08:00
def get_network(self) -> INetwork:
2018-10-15 13:52:25 +08:00
"""
:return: network instance of host
"""
return self._network
2018-10-15 13:52:25 +08:00
2019-07-30 15:31:02 +08:00
def get_peerstore(self) -> IPeerStore:
2018-11-12 01:36:15 +08:00
"""
:return: peerstore of the host (same one as in its network instance)
"""
2018-11-12 01:38:55 +08:00
return self.peerstore
2018-11-12 01:36:15 +08:00
2019-07-27 15:15:42 +08:00
# FIXME: Replace with correct return type
def get_mux(self) -> Any:
2018-10-15 13:52:25 +08:00
"""
:return: mux instance of host
"""
2019-07-27 15:15:42 +08:00
def get_addrs(self) -> List[multiaddr.Multiaddr]:
"""
:return: all the multiaddr addresses this host is listening too
"""
2019-08-01 06:00:12 +08:00
p2p_part = multiaddr.Multiaddr("/p2p/{}".format(self.get_id().pretty()))
2019-07-27 15:15:42 +08:00
addrs: List[multiaddr.Multiaddr] = []
for transport in self._network.listeners.values():
for addr in transport.get_addrs():
addrs.append(addr.encapsulate(p2p_part))
return addrs
def set_stream_handler(
self, protocol_id: TProtocol, stream_handler: StreamHandlerFn
) -> bool:
2018-10-15 13:52:25 +08:00
"""
set stream handler for host
:param protocol_id: protocol id used on stream
:param stream_handler: a stream handler function
:return: true if successful
"""
return self._network.set_stream_handler(protocol_id, stream_handler)
2018-10-22 00:55:45 +08:00
2018-10-15 13:52:25 +08:00
# protocol_id can be a list of protocol_ids
# stream will decide which protocol_id to run on
async def new_stream(
self, peer_id: ID, protocol_ids: Sequence[TProtocol]
) -> INetStream:
2018-10-15 13:52:25 +08:00
"""
:param peer_id: peer_id that host is connecting
2018-11-13 02:02:49 +08:00
:param protocol_id: protocol id that stream runs on
2019-07-27 15:15:42 +08:00
:return: stream: new stream created
2018-10-15 13:52:25 +08:00
"""
2019-07-27 15:15:42 +08:00
return await self._network.new_stream(peer_id, protocol_ids)
2019-07-27 15:15:42 +08:00
async def connect(self, peer_info: PeerInfo) -> None:
"""
connect ensures there is a connection between this host and the peer with
given peer_info.peer_id. connect will absorb the addresses in peer_info into its internal
peerstore. If there is not an active connection, connect will issue a
dial, and block until a connection is open, or an error is
returned.
:param peer_info: peer_info of the host we want to connect to
:type peer_info: peer.peerinfo.PeerInfo
"""
self.peerstore.add_addrs(peer_info.peer_id, peer_info.addrs, 10)
# there is already a connection to this peer
if peer_info.peer_id in self._network.connections:
return
await self._network.dial_peer(peer_info.peer_id)
async def disconnect(self, peer_id: ID) -> None:
await self._network.close_peer(peer_id)
async def close(self) -> None:
await self._network.close()