in reply to perl bitology - breaking into bytes
I only care about bytes that have at least one 'on' bit, so this makes things a little easier.
Here is some code:
BTW, I had a bad bug with this code initially. Instead of: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 } } } }
I had:next unless ord(substr($index_data,$z,1));
I leave it to the reader to discover the evil bug in this code :-)next unless substr($index_data,$z,1);
|
|---|