2018-11-01 05:31:00 +08:00
|
|
|
from abc import ABC, abstractmethod
|
2019-08-05 11:22:44 +08:00
|
|
|
|
2019-09-05 23:24:17 +08:00
|
|
|
from libp2p.io.abc import ReadWriteCloser
|
2019-08-05 10:20:30 +08:00
|
|
|
from libp2p.peer.id import ID
|
2019-08-05 11:17:38 +08:00
|
|
|
from libp2p.security.secure_conn_interface import ISecureConn
|
2019-08-05 10:35:56 +08:00
|
|
|
|
2018-11-12 07:03:04 +08:00
|
|
|
|
2018-11-01 05:31:00 +08:00
|
|
|
class IMuxedConn(ABC):
|
|
|
|
"""
|
|
|
|
reference: https://github.com/libp2p/go-stream-muxer/blob/master/muxer.go
|
|
|
|
"""
|
|
|
|
|
2019-08-05 10:20:30 +08:00
|
|
|
peer_id: ID
|
2019-07-28 14:30:15 +08:00
|
|
|
|
2019-02-25 09:58:23 +08:00
|
|
|
@abstractmethod
|
2019-09-12 00:38:12 +08:00
|
|
|
def __init__(self, conn: ISecureConn, peer_id: ID) -> None:
|
2019-02-25 09:58:23 +08:00
|
|
|
"""
|
|
|
|
create a new muxed connection
|
2019-04-30 15:09:05 +08:00
|
|
|
:param conn: an instance of secured connection
|
2019-02-25 09:58:23 +08:00
|
|
|
for new muxed streams
|
2019-03-24 01:52:02 +08:00
|
|
|
:param peer_id: peer_id of peer the connection is to
|
2019-02-25 09:58:23 +08:00
|
|
|
"""
|
|
|
|
|
2019-08-17 00:19:37 +08:00
|
|
|
@property
|
|
|
|
@abstractmethod
|
|
|
|
def initiator(self) -> bool:
|
|
|
|
pass
|
|
|
|
|
2018-11-12 07:03:04 +08:00
|
|
|
@abstractmethod
|
2019-08-25 04:06:24 +08:00
|
|
|
async def close(self) -> None:
|
2018-11-12 07:03:04 +08:00
|
|
|
"""
|
|
|
|
close connection
|
|
|
|
"""
|
2018-11-01 05:31:00 +08:00
|
|
|
|
|
|
|
@abstractmethod
|
2019-08-02 18:03:34 +08:00
|
|
|
def is_closed(self) -> bool:
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
check connection is fully closed
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-08-26 20:26:22 +08:00
|
|
|
async def open_stream(self) -> "IMuxedStream":
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
creates a new muxed_stream
|
2019-08-26 20:26:22 +08:00
|
|
|
:return: a new ``IMuxedStream`` stream
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-09-12 00:38:12 +08:00
|
|
|
async def accept_stream(self) -> "IMuxedStream":
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
accepts a muxed stream opened by the other end
|
|
|
|
"""
|
2019-08-02 18:28:04 +08:00
|
|
|
|
2019-08-05 11:17:38 +08:00
|
|
|
|
2019-09-05 23:24:17 +08:00
|
|
|
class IMuxedStream(ReadWriteCloser):
|
2019-08-05 11:17:38 +08:00
|
|
|
|
2019-09-15 21:41:29 +08:00
|
|
|
muxed_conn: IMuxedConn
|
2019-08-05 11:17:38 +08:00
|
|
|
|
|
|
|
@abstractmethod
|
2019-09-05 23:44:22 +08:00
|
|
|
async def reset(self) -> None:
|
2019-08-05 11:17:38 +08:00
|
|
|
"""
|
|
|
|
closes both ends of the stream
|
|
|
|
tells this remote side to hang up
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-08-05 17:02:18 +08:00
|
|
|
def set_deadline(self, ttl: int) -> bool:
|
2019-08-05 11:17:38 +08:00
|
|
|
"""
|
|
|
|
set deadline for muxed stream
|
|
|
|
:return: a new stream
|
|
|
|
"""
|