2018-11-01 06:02:00 +08:00
|
|
|
from .muxed_connection_interface import IMuxedConn
|
2018-11-01 05:31:00 +08:00
|
|
|
|
2018-11-01 06:02:00 +08:00
|
|
|
class MuxedConn(IMuxedConn):
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
reference: https://github.com/libp2p/go-mplex/blob/master/multiplex.go
|
|
|
|
"""
|
|
|
|
def __init__(self, conn, initiator):
|
|
|
|
"""
|
|
|
|
create a new muxed connection
|
|
|
|
:param conn: an instance of raw connection
|
|
|
|
:param initiator: boolean to prevent multiplex with self
|
|
|
|
"""
|
|
|
|
self.raw_conn = conn
|
|
|
|
self.initiator = initiator
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
"""
|
|
|
|
close the stream muxer and underlying raw connection
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def is_closed(self):
|
|
|
|
"""
|
|
|
|
check connection is fully closed
|
|
|
|
:return: true if successful
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
2018-11-01 06:02:00 +08:00
|
|
|
def open_stream(self, protocol_id, stream_name):
|
2018-11-01 05:31:00 +08:00
|
|
|
"""
|
|
|
|
creates a new muxed_stream
|
|
|
|
:return: a new stream
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def accept_stream(self):
|
|
|
|
"""
|
|
|
|
accepts a muxed stream opened by the other end
|
|
|
|
:return: the accepted stream
|
|
|
|
"""
|
2018-11-01 06:02:00 +08:00
|
|
|
pass
|