Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: How can I set a bit to 0 ?

by BillKSmith (Monsignor)
on May 27, 2022 at 13:44 UTC ( [id://11144224]=note: print w/replies, xml ) Need Help??


in reply to How can I set a bit to 0 ?

The Perl function vec could eliminate the need for special masking and logic to access bits. Use pack/unpack if the traditional format is required for I/O or third party software. The learning curve is probably too steep for a small or one-time project, but it worth knowing that this tool is in our tool box. This type of code may be hard to write the (especially the first time we try), but should be easier to maintain because than traditional code because it more closely corresponds to our idea of what we want to do.
Bill

Replies are listed 'Best First'.
Re^2: How can I set a bit to 0 ?
by LanX (Saint) on May 27, 2022 at 15:05 UTC
    > vec could eliminate

    > Use pack/unpack

    The OP seems on a beginner level and you didn't demonstrate how this would be done.

    Even I can't remember ever using vec and pack/unpack force me to reread their perldocs again and again.

    So I'd appreciate if you could shown some example code solving the OP's question this way, please.

    I really don't know by myself and am always eager to learn.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery

      Lines 21 thru 23 of the following example demonstrate operations on individual bits, specified by their position, of a status word. The difficulty arises when we need to input or output this word. We need the bytes in the order that our hardware expects them ("endianness") and we want the position 0 to refer to the most significant bit.

      I created a disc file which contains nothing but a 16-bit status word and verified the exact contents of that file with the utility "xxd" (came packaged with vim). My example reads that status word, makes a few changes, and writes it back out to another file. Again I use xxd to verify that I made the changes that I intended.

      OK, I admit that lines 11 thru 19 and 25 thru 33 were developed empirically for this use of vec on my 64-bit intel machine. They are not portable to other environments but should work, without change, on any application on this or similar machine.

      use strict; use warnings; my $stats; open my $DEVICE_IN, "<", 'stat.dat' or die "Cannot open input device: $!"; $stats = <$DEVICE_IN>; close $DEVICE_IN; $stats = pack( 'b16', reverse( unpack( 'B16', $stats ) ) ); vec($stats, 2, 1) = 0; # Reset bit 2 vec($stats, 6, 1) = 1; # Set bit 6 vec($stats, 10, 1) ^= 1; # Toggle bit 10 $stats = pack( 'b16', reverse( unpack( 'B16', $stats ) ) ); open my $DEVICE_OUT, ">", 'newstat.dat' or die "Cannot open output device: $!"; print $DEVICE_OUT $stats; close $DEVICE_OUT;

      Here is the content of the two data files (displayed by xxd) after this example runs

      C:\Users\Bill\forums\monks>xxd stat.dat 00000000: f531 .1 C:\Users\Bill\forums\monks>xxd newstat.dat 00000000: d711 .. C:\Users\Bill\forums\monks>

      Note: There is no guarantee that traditional bit masking will eliminate this problem in I/O. It might, but testing is still required.

      Bill

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-24 19:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found