2018-11-12 05:04:57 +08:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
2019-08-05 11:17:38 +08:00
|
|
|
from libp2p.stream_muxer.abc import IMuxedConn
|
2019-08-11 16:47:54 +08:00
|
|
|
from libp2p.typing import TProtocol
|
2019-07-28 14:30:15 +08:00
|
|
|
|
2019-01-10 02:38:56 +08:00
|
|
|
|
2018-11-13 02:02:49 +08:00
|
|
|
class INetStream(ABC):
|
2018-11-12 05:04:57 +08:00
|
|
|
|
2019-07-30 15:31:02 +08:00
|
|
|
mplex_conn: IMuxedConn
|
2019-07-28 14:30:15 +08:00
|
|
|
|
2018-11-12 05:04:57 +08:00
|
|
|
@abstractmethod
|
2019-08-11 16:47:54 +08:00
|
|
|
def get_protocol(self) -> TProtocol:
|
2018-11-12 05:04:57 +08:00
|
|
|
"""
|
|
|
|
:return: protocol id that stream runs on
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-08-11 16:47:54 +08:00
|
|
|
def set_protocol(self, protocol_id: TProtocol) -> bool:
|
2018-11-12 05:04:57 +08:00
|
|
|
"""
|
|
|
|
:param protocol_id: protocol id that stream runs on
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-07-30 15:31:02 +08:00
|
|
|
async def read(self) -> bytes:
|
2018-11-12 05:04:57 +08:00
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
reads from the underlying muxed_stream
|
2018-11-12 05:04:57 +08:00
|
|
|
:return: bytes of input
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-07-30 15:31:02 +08:00
|
|
|
async def write(self, data: bytes) -> int:
|
2018-11-12 05:04:57 +08:00
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
write to the underlying muxed_stream
|
2018-11-12 05:04:57 +08:00
|
|
|
:return: number of bytes written
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-07-30 15:31:02 +08:00
|
|
|
async def close(self) -> bool:
|
2018-11-12 05:04:57 +08:00
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
close the underlying muxed stream
|
2018-11-12 05:04:57 +08:00
|
|
|
:return: true if successful
|
|
|
|
"""
|