2019-08-20 15:27:07 +08:00
|
|
|
from collections import OrderedDict
|
|
|
|
from typing import Mapping, Type
|
2019-08-16 14:12:10 +08:00
|
|
|
|
|
|
|
from libp2p.network.connection.raw_connection_interface import IRawConnection
|
|
|
|
from libp2p.peer.id import ID
|
|
|
|
from libp2p.protocol_muxer.multiselect import Multiselect
|
|
|
|
from libp2p.protocol_muxer.multiselect_client import MultiselectClient
|
2019-09-05 23:24:17 +08:00
|
|
|
from libp2p.protocol_muxer.multiselect_communicator import MultiselectCommunicator
|
2019-08-16 14:12:10 +08:00
|
|
|
from libp2p.security.secure_conn_interface import ISecureConn
|
|
|
|
from libp2p.typing import TProtocol
|
|
|
|
|
|
|
|
from .abc import IMuxedConn
|
|
|
|
|
|
|
|
MuxerClassType = Type[IMuxedConn]
|
|
|
|
|
|
|
|
# FIXME: add negotiate timeout to `MuxerMultistream`
|
|
|
|
DEFAULT_NEGOTIATE_TIMEOUT = 60
|
|
|
|
|
|
|
|
|
|
|
|
class MuxerMultistream:
|
|
|
|
"""
|
|
|
|
MuxerMultistream is a multistream stream muxed transport multiplexer.
|
|
|
|
go implementation: github.com/libp2p/go-stream-muxer-multistream/multistream.go
|
|
|
|
"""
|
|
|
|
|
2019-08-20 15:27:07 +08:00
|
|
|
# NOTE: Can be changed to `typing.OrderedDict` since Python 3.7.2.
|
|
|
|
transports: "OrderedDict[TProtocol, MuxerClassType]"
|
2019-08-16 14:12:10 +08:00
|
|
|
multiselect: Multiselect
|
|
|
|
multiselect_client: MultiselectClient
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self, muxer_transports_by_protocol: Mapping[TProtocol, MuxerClassType]
|
|
|
|
) -> None:
|
2019-08-20 15:27:07 +08:00
|
|
|
self.transports = OrderedDict()
|
2019-08-16 14:12:10 +08:00
|
|
|
self.multiselect = Multiselect()
|
|
|
|
self.multiselect_client = MultiselectClient()
|
|
|
|
for protocol, transport in muxer_transports_by_protocol.items():
|
|
|
|
self.add_transport(protocol, transport)
|
|
|
|
|
|
|
|
def add_transport(self, protocol: TProtocol, transport: MuxerClassType) -> None:
|
2019-08-20 15:27:07 +08:00
|
|
|
"""
|
|
|
|
Add a protocol and its corresponding transport to multistream-select(multiselect).
|
|
|
|
The order that a protocol is added is exactly the precedence it is negotiated in
|
|
|
|
multiselect.
|
|
|
|
:param protocol: the protocol name, which is negotiated in multiselect.
|
|
|
|
:param transport: the corresponding transportation to the ``protocol``.
|
|
|
|
"""
|
|
|
|
# If protocol is already added before, remove it and add it again.
|
|
|
|
if protocol in self.transports:
|
|
|
|
del self.transports[protocol]
|
2019-08-16 14:12:10 +08:00
|
|
|
self.transports[protocol] = transport
|
|
|
|
self.multiselect.add_handler(protocol, None)
|
|
|
|
|
|
|
|
async def select_transport(self, conn: IRawConnection) -> MuxerClassType:
|
|
|
|
"""
|
|
|
|
Select a transport that both us and the node on the
|
|
|
|
other end of conn support and agree on
|
|
|
|
:param conn: conn to choose a transport over
|
2019-08-19 23:18:00 +08:00
|
|
|
:return: selected muxer transport
|
2019-08-16 14:12:10 +08:00
|
|
|
"""
|
|
|
|
protocol: TProtocol
|
2019-09-05 23:24:17 +08:00
|
|
|
communicator = MultiselectCommunicator(conn)
|
2019-08-16 14:12:10 +08:00
|
|
|
if conn.initiator:
|
|
|
|
protocol = await self.multiselect_client.select_one_of(
|
2019-08-20 15:27:07 +08:00
|
|
|
tuple(self.transports.keys()), communicator
|
2019-08-16 14:12:10 +08:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
protocol, _ = await self.multiselect.negotiate(communicator)
|
|
|
|
return self.transports[protocol]
|
|
|
|
|
2019-09-12 00:38:12 +08:00
|
|
|
async def new_conn(self, conn: ISecureConn, peer_id: ID) -> IMuxedConn:
|
2019-08-16 14:12:10 +08:00
|
|
|
transport_class = await self.select_transport(conn)
|
2019-09-12 00:38:12 +08:00
|
|
|
return transport_class(conn, peer_id)
|