2018-11-01 05:31:00 +08:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
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-02-25 09:58:23 +08:00
|
|
|
@abstractmethod
|
2019-03-24 01:52:02 +08:00
|
|
|
def __init__(self, conn, generic_protocol_handler, peer_id):
|
2019-02-25 09:58:23 +08:00
|
|
|
"""
|
|
|
|
create a new muxed connection
|
|
|
|
:param conn: an instance of raw connection
|
|
|
|
:param generic_protocol_handler: generic protocol handler
|
|
|
|
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
|
|
|
"""
|
|
|
|
|
2018-11-12 07:03:04 +08:00
|
|
|
@abstractmethod
|
|
|
|
def close(self):
|
|
|
|
"""
|
|
|
|
close connection
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
2018-11-01 05:31:00 +08:00
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def is_closed(self):
|
|
|
|
"""
|
|
|
|
check connection is fully closed
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
2019-02-25 09:58:23 +08:00
|
|
|
def open_stream(self, protocol_id, multi_addr):
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
creates a new muxed_stream
|
2018-11-13 02:02:49 +08:00
|
|
|
:param protocol_id: protocol_id of stream
|
|
|
|
:param multi_addr: multi_addr that stream connects to
|
2018-11-01 05:31:00 +08:00
|
|
|
:return: a new stream
|
|
|
|
"""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def accept_stream(self):
|
|
|
|
"""
|
|
|
|
accepts a muxed stream opened by the other end
|
|
|
|
:return: the accepted stream
|
|
|
|
"""
|