我花了一段时间才弄清楚,因为您的解决方案似乎忽略了第一部分数据。给定 129 ( ) 的输入字节,0b10000001
我希望看到64 '1000000'
以下内容,但您的代码会产生1 '0000001'
- 忽略第一位。
bs = b'\x81' # one byte string, whose value is 129 (0x81)
arr = BitArray(bs)
mask = BitArray('0b01111111')
byte = (arr[0:8] & mask).int
print(byte, repr("{:07b}".format(byte)))
最简单的解决方案是修改您的解决方案以使用bitstring.ConstBitStream
- 我通过以下方式获得了一个数量级的速度提升。
from bitstring import ConstBitStream
def unpack_bitstream(raw):
num_bytes, remainder = divmod(len(raw) * 8 - 1, 7)
bitstream = ConstBitStream(bytes=raw, offset=1) # use offset to ignore leading bit
msg = b''
for _ in range(num_bytes):
byte = bitstream.read("uint:7")
if not byte:
msg += b'\n'
elif 32 <= byte <= 126:
msg += bytes((byte,))
# msg += chr(byte) # python 2
return msg
然而,这可以很容易地仅使用标准库来完成。这使得解决方案更便携,并且在我尝试过的情况下,速度提高了另一个数量级(我没有尝试 cythonized 版本bitstring
)。
def unpack_bytes(raw, zero_replacement=ord("\n")):
# use - 1 to ignore leading bit
num_bytes, remainder = divmod(len(raw) * 8 - 1, 7)
i = int.from_bytes(raw, byteorder="big")
# i = int(raw.encode("hex"), 16) # python 2
if remainder:
# remainder means there are unused trailing bits, so remove these
i >>= remainder
msg = []
for _ in range(num_bytes):
byte = i & 127
if not byte:
msg.append(zero_replacement)
elif 32 <= byte <= 126:
msg.append(byte)
i >>= 7
msg.reverse()
return bytes(msg)
# return b"".join(chr(c) for c in msg) # python 2
我使用 python 3 来创建这些方法。如果您使用的是 python 2,那么您需要进行一些调整。我已将这些作为注释添加到它们打算替换的行之后并标记它们python 2
。