我正在创建一些用于解码各种二进制格式的 python 脚本。每种格式都有许多不同的记录,并且相当多的数据在特定字节内的特定位范围内编码。因此,我正在寻找一个 python 包,它可以巧妙地将解码代码和格式规范分开,这样代码就不会太乱。理想情况下,它可以让我保留不同版本的格式。下面是我正在寻找的一个非常粗略的大纲。
示例my_data_format.xml
:
<format version="1A">
<record name="My first record">
<ignore bytes="2" />
<field name="A simple number" bytes="1" convert_to="int" />
<field name="A simple float" bytes="4" convert_to="float" />
<array name="A list of floats" length="3">
<field bytes="4" convert_to="float"
</array>
<field bytes="2">
<ignore bits="5" />
<bitfield name="First bit-field" num_bits="6" convert_to="uint8" />
<bitfield name="Second bit-field" num_bits="5" convert_to="float" />
</field>
</record>
</format>
示例 python 脚本my_data_reader.py
:
from binary_schema import load_schema
schema = load_schema('my_data_format.xml')
with open(̈́'myfile.bin', 'rb') as f:
decoded_data = schema.read_record_from_stream('Record header', f)
print(decoded_data)
这会产生一本字典:
{'A simple float': 3.234,
'A simple number': 3,
'A list of floats': [1., 2., 3.],
'First bit-field': 3,
'Second bit-field': 2.0}
有这样的事吗?
我已经看过几件事了: