Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: perl bitology - breaking into bytes

by Tardis (Pilgrim)
on Oct 21, 2003 at 04:41 UTC ( [id://300828]=note: print w/replies, xml ) Need Help??


in reply to perl bitology - breaking into bytes

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 :-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://300828]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-25 06:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found