py-libp2p/libp2p/protocol_muxer/multiselect_client.py

98 lines
3.6 KiB
Python
Raw Normal View History

2019-08-07 18:02:30 +08:00
from typing import Sequence
from libp2p.typing import TProtocol
2019-08-07 18:02:30 +08:00
2019-09-15 16:58:22 +08:00
from .exceptions import MultiselectClientError, MultiselectCommunicatorError
from .multiselect_client_interface import IMultiselectClient
2019-08-07 18:02:30 +08:00
from .multiselect_communicator_interface import IMultiselectCommunicator
MULTISELECT_PROTOCOL_ID = "/multistream/1.0.0"
PROTOCOL_NOT_FOUND_MSG = "na"
2019-01-10 02:38:56 +08:00
class MultiselectClient(IMultiselectClient):
"""Client for communicating with receiver's multiselect module in order to
select a protocol id to communicate over."""
2019-08-07 18:02:30 +08:00
async def handshake(self, communicator: IMultiselectCommunicator) -> None:
"""
Ensure that the client and multiselect are both using the same
multiselect protocol.
:param stream: stream to communicate with multiselect over
2019-09-19 22:19:36 +08:00
:raise MultiselectClientError: raised when handshake failed
"""
try:
await communicator.write(MULTISELECT_PROTOCOL_ID)
except MultiselectCommunicatorError as error:
raise MultiselectClientError(error)
2019-09-15 16:58:22 +08:00
try:
handshake_contents = await communicator.read()
except MultiselectCommunicatorError as error:
raise MultiselectClientError(str(error))
2019-10-25 01:25:09 +08:00
if not is_valid_handshake(handshake_contents):
raise MultiselectClientError("multiselect protocol ID mismatch")
2019-08-07 18:02:30 +08:00
async def select_one_of(
self, protocols: Sequence[TProtocol], communicator: IMultiselectCommunicator
2019-08-07 18:02:30 +08:00
) -> TProtocol:
"""
For each protocol, send message to multiselect selecting protocol and
fail if multiselect does not return same protocol. Returns first
protocol that multiselect agrees on (i.e. that multiselect selects)
:param protocol: protocol to select
:param stream: stream to communicate with multiselect over
:return: selected protocol
2019-09-19 22:19:36 +08:00
:raise MultiselectClientError: raised when protocol negotiation failed
"""
await self.handshake(communicator)
for protocol in protocols:
try:
selected_protocol = await self.try_select(communicator, protocol)
return selected_protocol
except MultiselectClientError:
pass
raise MultiselectClientError("protocols not supported")
2019-08-07 18:02:30 +08:00
async def try_select(
self, communicator: IMultiselectCommunicator, protocol: TProtocol
) -> TProtocol:
"""
Try to select the given protocol or raise exception if fails.
:param communicator: communicator to use to communicate with counterparty
:param protocol: protocol to select
2019-09-19 22:19:36 +08:00
:raise MultiselectClientError: raised when protocol negotiation failed
:return: selected protocol
"""
try:
await communicator.write(protocol)
except MultiselectCommunicatorError as error:
raise MultiselectClientError(error)
2019-09-15 16:58:22 +08:00
try:
response = await communicator.read()
except MultiselectCommunicatorError as error:
raise MultiselectClientError(str(error))
if response == protocol:
return protocol
if response == PROTOCOL_NOT_FOUND_MSG:
raise MultiselectClientError("protocol not supported")
2019-03-03 20:57:20 +08:00
raise MultiselectClientError("unrecognized response: " + response)
2019-10-25 01:25:09 +08:00
def is_valid_handshake(handshake_contents: str) -> bool:
"""
Determine if handshake is valid and should be confirmed.
:param handshake_contents: contents of handshake message
:return: true if handshake is complete, false otherwise
"""
return handshake_contents == MULTISELECT_PROTOCOL_ID