2019-08-01 06:00:12 +08:00
|
|
|
from abc import ABC, abstractmethod
|
2018-11-12 07:03:04 +08:00
|
|
|
|
2019-07-30 23:41:28 +08:00
|
|
|
from libp2p.stream_muxer.muxed_connection_interface import IMuxedConn
|
2019-07-30 15:31:02 +08:00
|
|
|
|
2019-01-10 02:38:56 +08:00
|
|
|
|
2018-11-01 05:31:00 +08:00
|
|
|
class IMuxedStream(ABC):
|
|
|
|
|
2019-07-30 23:41:28 +08:00
|
|
|
mplex_conn: IMuxedConn
|
2019-07-30 15:31:02 +08:00
|
|
|
|
2018-11-12 07:03:04 +08:00
|
|
|
@abstractmethod
|
|
|
|
def read(self):
|
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
reads from the underlying muxed_conn
|
2018-11-12 07:03:04 +08:00
|
|
|
:return: bytes of input
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def write(self, _bytes):
|
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
writes to the underlying muxed_conn
|
2018-11-12 07:03:04 +08:00
|
|
|
:return: number of bytes written
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def close(self):
|
|
|
|
"""
|
2018-11-27 07:24:29 +08:00
|
|
|
close the underlying muxed_conn
|
2018-11-12 07:03:04 +08:00
|
|
|
:return: true if successful
|
|
|
|
"""
|
2018-11-01 05:31:00 +08:00
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def reset(self):
|
|
|
|
"""
|
|
|
|
closes both ends of the stream
|
|
|
|
tells this remote side to hang up
|
|
|
|
:return: error/exception
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def set_deadline(self, ttl):
|
|
|
|
"""
|
|
|
|
set deadline for muxed stream
|
|
|
|
:return: a new stream
|
|
|
|
"""
|