py-libp2p/libp2p/stream_muxer/mplex/utils.py

45 lines
927 B
Python
Raw Normal View History

import asyncio
import struct
2019-08-03 13:36:19 +08:00
2019-01-10 02:38:56 +08:00
def encode_uvarint(number):
"""Pack `number` into varint bytes"""
2019-08-01 06:00:12 +08:00
buf = b""
while True:
2019-08-01 06:00:12 +08:00
towrite = number & 0x7F
number >>= 7
if number:
2019-08-01 06:00:12 +08:00
buf += bytes((towrite | 0x80,))
else:
2019-08-01 06:00:12 +08:00
buf += bytes((towrite,))
break
return buf
2019-01-10 02:38:56 +08:00
2018-11-12 06:55:50 +08:00
def decode_uvarint(buff, index):
shift = 0
result = 0
while True:
i = buff[index]
2019-08-01 06:00:12 +08:00
result |= (i & 0x7F) << shift
shift += 7
if not i & 0x80:
break
index += 1
2018-11-13 01:26:11 +08:00
return result, index + 1
2019-08-01 06:00:12 +08:00
async def decode_uvarint_from_stream(reader, timeout):
shift = 0
result = 0
while True:
byte = await asyncio.wait_for(reader.read(1), timeout=timeout)
2019-08-01 06:00:12 +08:00
i = struct.unpack(">H", b"\x00" + byte)[0]
result |= (i & 0x7F) << shift
shift += 7
if not i & 0x80:
break
return result