This simple bit vector implementation aims to make addressing single
bits a little less fiddly. It can be used by itself to work with bit
fields in an integer word, but it really starts to shine when you use
the supplied BitField
descriptor with a subclass of BitVector
:
> from bitvector import BitVector, BitField
>
> class IOTDeviceCommand(BitVector):
> def __init__(self):
> super().__init__(size=32)
>
> power = BitField(0, 1) # offset and size
> spin = BitField(1, 1)
> speed = BitField(2, 4)
> sense = BitField(6, 2)
> red = BitField(8, 8)
> blue = BitField(16, 8)
> green = BitField(24, 8)
>
> widget_cmd = IOTDeviceCommand()
> widget_cmd.power = 1
> widget_cmd.sense = 2
> widget_cmd.speed = 5
> widget_cmd.red = 0xaa
> widget_cmd.blue = 0xbb
> widget_cmd.green = 0xcc
> widget_cmd
IOTDeviceCommand(value=0xccbbaa95, size=32)
> widget_cmd.bytes
b'\xcc\xbb\xaa\x95'
$ python3 -m pip install bitvector-for-humans
$ pydoc bitvector
...
Or directly from github:
$ pip install git+https://github.com/JnyJny/bitvector.git
- Address sub-byte bits in a less error prone way.
- Minimize subdependencies (zero is minimized right?).
- Learn something about descriptors: ✅.
The tests need expanding and I got lazy when writing the multi-bit setting / getting code and it could undoubtedly be improved. Pull requests gladly accepted.
- Python builtin
ctypes.Structure
allows sub-byte bit fields - Python builtin
struct
provides extensive support for byte manipulations - Python3 IntEnums can be used to build bit field masks
- The plain
int
will serve admirably with bitwise operators - Provide cffi bindings to existing bit-twiddling libraries
- Use Numpy bool arrays as the "backing store"
- Other good ideas I overlooked, forgot about or just plain don't know.