I need a compact representation of an array of booleans, does Python have a builtin bitfield type or will I need to find an alternate solution?
|
|
|
|
|
|
|
Bitarray was the best answer I found, when I recently had a similar need. It's a C extension (so much faster than BitVector, which is pure python) and stores its data in an actual bitfield (so it's eight times more memory efficient than a numpy boolean array, which appears to use a byte per element.) |
||
|
|
|
|
NumPy has a array interface module that you can use to make a bitfield. |
||
|
|
|
|
The BitVector package may be what you need. It's not built in to my python installation, but easy to track down on the python site. http://pypi.python.org/pypi/BitVector/1.5.1 is the current version as of today. |
||
|
|
|
|
If your bitfield is short, you can probably use the struct module. Otherwise I'd recommend some sort of a wrapper around the array module. Also, the ctypes module does contain bitfields, but I've never used it myself. Caveat emptor. |
||
|
|
|
|
I use the binary bit-wise operators !, &, |, ^, >>, and <<. They work really well and are implemented directly in the underlying C, which is usually directly on the underlying hardware. |
||
|
|
|
|
Represent each of your values as a power of two:
Then to set a value true:
To set a value false:
To test for a value:
Dig a little deeper into hexadecimal representation if this doesn't make sense to you. This is basically how you keep track of your boolean flags in an embedded C application as well (if you have limitted memory). |
||
|
|
|
|
You should take a look at the bitstring module, which has recently reached version 1.0. The binary data is compactly stored as a byte array and can be easily created, modified and analysed (sorry if this reads like an advert - I'm the module's author). You can create
You can then analyse and modify them with simple functions or slice notation - no need to worry about bit masks etc.
There is also a concept of a bit position, so that you can treat it like a file or stream if that's useful to you. Properties are used to give different interpretations of the bit data.
Plus there's support for the standard bit-wise binary operators, packing, unpacking and more. It's pure Python for all versions from 2.4 to 3.1, but is reasonably well optimised in terms of memory and speed (more to come in terms of speed later). |
||
|
|
