2018-11-29 01:58:16 +08:00
|
|
|
import asyncio
|
|
|
|
import struct
|
|
|
|
|
2018-11-12 06:15:55 +08:00
|
|
|
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
|
|
|
|
|
2018-11-12 06:55:50 +08:00
|
|
|
def decode_uvarint(buff, index):
|
2018-11-12 06:15:55 +08:00
|
|
|
shift = 0
|
|
|
|
result = 0
|
|
|
|
while True:
|
|
|
|
i = buff[index]
|
|
|
|
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
|
2018-11-29 01:58:16 +08:00
|
|
|
|
|
|
|
async def decode_uvarint_from_stream(reader):
|
|
|
|
shift = 0
|
|
|
|
result = 0
|
|
|
|
while True:
|
|
|
|
byte = await asyncio.wait_for(reader.read(1), timeout=5)
|
|
|
|
i = struct.unpack('>H', b'\x00' + byte)[0]
|
|
|
|
result |= (i & 0x7f) << shift
|
|
|
|
shift += 7
|
|
|
|
if not i & 0x80:
|
|
|
|
break
|
|
|
|
|
|
|
|
return result
|