mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-09 06:30:53 +00:00
Merge pull request #43 from zixuanzh/mux-conn
Sending and receiving muxed messages in muxed_connection
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
|
import asyncio
|
||||||
|
from .utils import encode_uvarint, decode_uvarint
|
||||||
from .muxed_connection_interface import IMuxedConn
|
from .muxed_connection_interface import IMuxedConn
|
||||||
from transport.stream.Stream import Stream
|
from .muxed_stream import MuxedStream
|
||||||
|
|
||||||
class MuxedConn(IMuxedConn):
|
class MuxedConn(IMuxedConn):
|
||||||
"""
|
"""
|
||||||
@ -13,12 +15,16 @@ class MuxedConn(IMuxedConn):
|
|||||||
"""
|
"""
|
||||||
self.raw_conn = conn
|
self.raw_conn = conn
|
||||||
self.initiator = initiator
|
self.initiator = initiator
|
||||||
|
self.buffers = {}
|
||||||
|
self.streams = {}
|
||||||
|
|
||||||
|
self.add_incoming_task()
|
||||||
|
|
||||||
def close(self):
|
def close(self):
|
||||||
"""
|
"""
|
||||||
close the stream muxer and underlying raw connection
|
close the stream muxer and underlying raw connection
|
||||||
"""
|
"""
|
||||||
pass
|
self.raw_conn.close()
|
||||||
|
|
||||||
def is_closed(self):
|
def is_closed(self):
|
||||||
"""
|
"""
|
||||||
@ -27,13 +33,20 @@ class MuxedConn(IMuxedConn):
|
|||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def open_stream(self, protocol_id, stream_name, peer_id, multi_addr):
|
def read_buffer(self, stream_id):
|
||||||
|
data = self.buffers[stream_id]
|
||||||
|
self.buffers[stream_id] = bytearray()
|
||||||
|
return data
|
||||||
|
|
||||||
|
def open_stream(self, protocol_id, stream_id, peer_id, multi_addr):
|
||||||
"""
|
"""
|
||||||
creates a new muxed_stream
|
creates a new muxed_stream
|
||||||
:return: a new stream
|
:return: a new stream
|
||||||
"""
|
"""
|
||||||
|
stream = MuxedStream(peer_id, multi_addr, self)
|
||||||
return Stream(peer_id, multi_addr, self)
|
self.streams[stream_id] = stream
|
||||||
|
self.buffers[stream_id] = bytearray()
|
||||||
|
return stream
|
||||||
|
|
||||||
|
|
||||||
def accept_stream(self):
|
def accept_stream(self):
|
||||||
@ -42,3 +55,49 @@ class MuxedConn(IMuxedConn):
|
|||||||
:return: the accepted stream
|
:return: the accepted stream
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def send_message(self, flag, data, stream_id):
|
||||||
|
"""
|
||||||
|
sends a message over the connection
|
||||||
|
:param header: header to use
|
||||||
|
:param data: data to send in the message
|
||||||
|
:param stream_id: stream the message is in
|
||||||
|
:return: True if success
|
||||||
|
"""
|
||||||
|
# << by 3, then or with flag
|
||||||
|
header = (stream_id << 3) | flag
|
||||||
|
header = encode_uvarint(header)
|
||||||
|
data_length = encode_uvarint(len(data))
|
||||||
|
_bytes = header + data_length + data
|
||||||
|
return self.write_to_stream(_bytes)
|
||||||
|
|
||||||
|
async def write_to_stream(self, _bytes):
|
||||||
|
self.raw_conn.writer.write(_bytes)
|
||||||
|
await self.raw_conn.writer.drain()
|
||||||
|
return len(_bytes)
|
||||||
|
|
||||||
|
async def handle_incoming(self):
|
||||||
|
data = bytearray()
|
||||||
|
while True:
|
||||||
|
chunk = self.raw_conn.reader.read(100)
|
||||||
|
if not chunk:
|
||||||
|
break
|
||||||
|
data += chunk
|
||||||
|
header, end_index = decode_uvarint(data, 0)
|
||||||
|
length, end_index = decode_uvarint(data, end_index)
|
||||||
|
message = data[end_index, end_index + length]
|
||||||
|
|
||||||
|
# Deal with other types of messages
|
||||||
|
flag = header & 0x07
|
||||||
|
stream_id = header >> 3
|
||||||
|
|
||||||
|
self.buffers[stream_id] = self.buffers[stream_id] + message
|
||||||
|
# Read header
|
||||||
|
# Read message length
|
||||||
|
# Read message into corresponding buffer
|
||||||
|
|
||||||
|
|
||||||
|
def add_incoming_task(self):
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
handle_incoming_task = loop.create_task(self.handle_incoming())
|
||||||
|
handle_incoming_task.add_done_callback(self.add_incoming_task)
|
||||||
|
|||||||
25
muxer/mplex/utils.py
Normal file
25
muxer/mplex/utils.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
def encode_uvarint(number):
|
||||||
|
"""Pack `number` into varint bytes"""
|
||||||
|
buf = b''
|
||||||
|
while True:
|
||||||
|
towrite = number & 0x7f
|
||||||
|
number >>= 7
|
||||||
|
if number:
|
||||||
|
buf += bytes((towrite | 0x80, ))
|
||||||
|
else:
|
||||||
|
buf += bytes((towrite, ))
|
||||||
|
break
|
||||||
|
return buf
|
||||||
|
|
||||||
|
def decode_uvarint(buff, index):
|
||||||
|
shift = 0
|
||||||
|
result = 0
|
||||||
|
while True:
|
||||||
|
i = buff[index]
|
||||||
|
result |= (i & 0x7f) << shift
|
||||||
|
shift += 7
|
||||||
|
if not i & 0x80:
|
||||||
|
break
|
||||||
|
index += 1
|
||||||
|
|
||||||
|
return result, index
|
||||||
@ -9,6 +9,10 @@ class RawConnection(IRawConnection):
|
|||||||
self.reader = reader
|
self.reader = reader
|
||||||
self.writer = writer
|
self.writer = writer
|
||||||
|
|
||||||
|
|
||||||
|
def close(self):
|
||||||
|
self.writer.close()
|
||||||
|
|
||||||
# def __init__(self, ip, port):
|
# def __init__(self, ip, port):
|
||||||
# self.conn_ip = ip
|
# self.conn_ip = ip
|
||||||
# self.conn_port = port
|
# self.conn_port = port
|
||||||
|
|||||||
Reference in New Issue
Block a user