I use a fairly simple method, for some files which I use as indices. It seems fairly efficient. I open the bit file, read in chunks 64K at a time, and use some simple operations to determine 'on' bits.
I only care about bytes that have at least one 'on' bit, so this makes things a little easier.
Here is some code:
while (sysread(INDEX, $index_data, 65536)) {
# so zip round it until we hit a byte with any bit
# set to one
for ($z = 0 ; $z < length ($index_data) ; $z++ ) {
next unless ord(substr($index_data,$z,1));
# so this byte contains something
foreach (0..7) {
if ( (2 ** $_) & ord(substr($index_data,$z,1)) ) {
# this bit is ON
# do stuff here
}
}
}
}
BTW, I had a bad bug with this code initially. Instead of:
next unless ord(substr($index_data,$z,1));
I had:
next unless substr($index_data,$z,1);
I leave it to the reader to discover the evil bug in this code :-)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.