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-08 15:58:30 +08:00
|
|
|
from libp2p.typing import NegotiableTransport, StreamHandlerFn, TProtocol
|
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):
|
|
|
|
"""
|
|
|
|
Multiselect module that is responsible for responding to
|
|
|
|
a multiselect client and deciding on
|
|
|
|
a specific protocol and handler pair to use for communication
|
|
|
|
"""
|
|
|
|
|
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:
|
2018-11-29 02:51:50 +08:00
|
|
|
"""
|
|
|
|
Store the handler with the given protocol
|
|
|
|
:param protocol: protocol name
|
|
|
|
:param handler: handler function
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-08-08 15:58:30 +08:00
|
|
|
async def negotiate(self, stream: NegotiableTransport) -> Tuple[TProtocol, StreamHandlerFn]:
|
2018-11-29 02:51:50 +08:00
|
|
|
"""
|
|
|
|
Negotiate performs protocol selection
|
|
|
|
:param stream: stream to negotiate on
|
|
|
|
:return: selected protocol name, handler function
|
|
|
|
:raise Exception: negotiation failed exception
|
|
|
|
"""
|