2018-11-29 02:51:50 +08:00
|
|
|
from abc import ABC, abstractmethod
|
2019-08-08 14:22:06 +08:00
|
|
|
from typing import Dict, Tuple
|
2019-08-07 18:02:30 +08:00
|
|
|
|
2019-08-15 23:31:26 +08:00
|
|
|
from libp2p.typing import StreamHandlerFn, TProtocol
|
|
|
|
|
|
|
|
from .multiselect_communicator_interface import IMultiselectCommunicator
|
2018-11-29 02:51:50 +08:00
|
|
|
|
2019-01-10 02:38:56 +08:00
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
class IMultiselectMuxer(ABC):
|
2019-10-24 14:41:10 +08:00
|
|
|
"""Multiselect module that is responsible for responding to a multiselect
|
|
|
|
client and deciding on a specific protocol and handler pair to use for
|
|
|
|
communication."""
|
2018-11-29 02:51:50 +08:00
|
|
|
|
2019-08-07 18:02:30 +08:00
|
|
|
handlers: Dict[TProtocol, StreamHandlerFn]
|
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
@abstractmethod
|
2019-08-07 18:02:30 +08:00
|
|
|
def add_handler(self, protocol: TProtocol, handler: StreamHandlerFn) -> None:
|
2019-10-24 14:41:10 +08:00
|
|
|
"""Store the handler with the given protocol.
|
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
:param protocol: protocol name
|
|
|
|
:param handler: handler function
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-08-14 05:36:42 +08:00
|
|
|
async def negotiate(
|
2019-08-15 23:31:26 +08:00
|
|
|
self, communicator: IMultiselectCommunicator
|
2019-08-14 05:36:42 +08:00
|
|
|
) -> Tuple[TProtocol, StreamHandlerFn]:
|
2019-10-24 14:41:10 +08:00
|
|
|
"""Negotiate performs protocol selection.
|
|
|
|
|
2018-11-29 02:51:50 +08:00
|
|
|
:param stream: stream to negotiate on
|
|
|
|
:return: selected protocol name, handler function
|
|
|
|
:raise Exception: negotiation failed exception
|
|
|
|
"""
|