BitField.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3;

  18. /**
  19.  * Supports operations on bit-mapped fields. Instances of this class can be
  20.  * used to store a flag or data within an {@code int}, {@code short} or
  21.  * {@code byte}.
  22.  *
  23.  * <p>Each {@link BitField} is constructed with a mask value, which indicates
  24.  * the bits that will be used to store and retrieve the data for that field.
  25.  * For instance, the mask {@code 0xFF} indicates the least-significant byte
  26.  * should be used to store the data.</p>
  27.  *
  28.  * <p>As an example, consider a car painting machine that accepts
  29.  * paint instructions as integers. Bit fields can be used to encode this:</p>
  30.  *
  31.  *<pre>
  32.  *    // blue, green and red are 1 byte values (0-255) stored in the three least
  33.  *    // significant bytes
  34.  *    BitField blue = new BitField(0xFF);
  35.  *    BitField green = new BitField(0xFF00);
  36.  *    BitField red = new BitField(0xFF0000);
  37.  *
  38.  *    // anyColor is a flag triggered if any color is used
  39.  *    BitField anyColor = new BitField(0xFFFFFF);
  40.  *
  41.  *    // isMetallic is a single bit flag
  42.  *    BitField isMetallic = new BitField(0x1000000);
  43.  *</pre>
  44.  *
  45.  * <p>Using these {@link BitField} instances, a paint instruction can be
  46.  * encoded into an integer:</p>
  47.  *
  48.  *<pre>
  49.  *    int paintInstruction = 0;
  50.  *    paintInstruction = red.setValue(paintInstruction, 35);
  51.  *    paintInstruction = green.setValue(paintInstruction, 100);
  52.  *    paintInstruction = blue.setValue(paintInstruction, 255);
  53.  *</pre>
  54.  *
  55.  * <p>Flags and data can be retrieved from the integer:</p>
  56.  *
  57.  *<pre>
  58.  *    // Prints true if red, green or blue is non-zero
  59.  *    System.out.println(anyColor.isSet(paintInstruction));   // prints true
  60.  *
  61.  *    // Prints value of red, green and blue
  62.  *    System.out.println(red.getValue(paintInstruction));     // prints 35
  63.  *    System.out.println(green.getValue(paintInstruction));   // prints 100
  64.  *    System.out.println(blue.getValue(paintInstruction));    // prints 255
  65.  *
  66.  *    // Prints true if isMetallic was set
  67.  *    System.out.println(isMetallic.isSet(paintInstruction)); // prints false
  68.  *</pre>
  69.  *
  70.  * @since 2.0
  71.  */
  72. public class BitField {

  73.     private final int mask;
  74.     private final int shiftCount;

  75.     /**
  76.      * Creates a BitField instance.
  77.      *
  78.      * @param mask the mask specifying which bits apply to this
  79.      *  BitField. Bits that are set in this mask are the bits
  80.      *  that this BitField operates on
  81.      */
  82.     public BitField(final int mask) {
  83.         this.mask = mask;
  84.         this.shiftCount = mask == 0 ? 0 : Integer.numberOfTrailingZeros(mask);
  85.     }

  86.     /**
  87.      * Clears the bits.
  88.      *
  89.      * @param holder the int data containing the bits we're
  90.      *  interested in
  91.      * @return the value of holder with the specified bits cleared
  92.      *  (set to {@code 0})
  93.      */
  94.     public int clear(final int holder) {
  95.         return holder & ~mask;
  96.     }

  97.     /**
  98.      * Clears the bits.
  99.      *
  100.      * @param holder the byte data containing the bits we're
  101.      *  interested in
  102.      *
  103.      * @return the value of holder with the specified bits cleared
  104.      *  (set to {@code 0})
  105.      */
  106.     public byte clearByte(final byte holder) {
  107.         return (byte) clear(holder);
  108.     }

  109.     /**
  110.      * Clears the bits.
  111.      *
  112.      * @param holder the short data containing the bits we're
  113.      *  interested in
  114.      * @return the value of holder with the specified bits cleared
  115.      *  (set to {@code 0})
  116.      */
  117.     public short clearShort(final short holder) {
  118.         return (short) clear(holder);
  119.     }

  120.     /**
  121.      * Obtains the value for the specified BitField, unshifted.
  122.      *
  123.      * @param holder the int data containing the bits we're
  124.      *  interested in
  125.      * @return the selected bits
  126.      */
  127.     public int getRawValue(final int holder) {
  128.         return holder & mask;
  129.     }

  130.     /**
  131.      * Obtains the value for the specified BitField, unshifted.
  132.      *
  133.      * @param holder the short data containing the bits we're
  134.      *  interested in
  135.      * @return the selected bits
  136.      */
  137.     public short getShortRawValue(final short holder) {
  138.         return (short) getRawValue(holder);
  139.     }

  140.     /**
  141.      * Obtains the value for the specified BitField, appropriately
  142.      * shifted right, as a short.
  143.      *
  144.      * <p>Many users of a BitField will want to treat the specified
  145.      * bits as an int value, and will not want to be aware that the
  146.      * value is stored as a BitField (and so shifted left so many
  147.      * bits).</p>
  148.      *
  149.      * @see #setShortValue(short,short)
  150.      * @param holder the short data containing the bits we're
  151.      *  interested in
  152.      * @return the selected bits, shifted right appropriately
  153.      */
  154.     public short getShortValue(final short holder) {
  155.         return (short) getValue(holder);
  156.     }

  157.     /**
  158.      * Obtains the value for the specified BitField, appropriately
  159.      * shifted right.
  160.      *
  161.      * <p>Many users of a BitField will want to treat the specified
  162.      * bits as an int value, and will not want to be aware that the
  163.      * value is stored as a BitField (and so shifted left so many
  164.      * bits).</p>
  165.      *
  166.      * @see #setValue(int,int)
  167.      * @param holder the int data containing the bits we're interested
  168.      *  in
  169.      * @return the selected bits, shifted right appropriately
  170.      */
  171.     public int getValue(final int holder) {
  172.         return getRawValue(holder) >> shiftCount;
  173.     }

  174.     /**
  175.      * Returns whether all of the bits are set or not.
  176.      *
  177.      * <p>This is a stricter test than {@link #isSet(int)},
  178.      * in that all of the bits in a multi-bit set must be set
  179.      * for this method to return {@code true}.</p>
  180.      *
  181.      * @param holder the int data containing the bits we're
  182.      *  interested in
  183.      * @return {@code true} if all of the bits are set,
  184.      *  else {@code false}
  185.      */
  186.     public boolean isAllSet(final int holder) {
  187.         return (holder & mask) == mask;
  188.     }

  189.     /**
  190.      * Returns whether the field is set or not.
  191.      *
  192.      * <p>This is most commonly used for a single-bit field, which is
  193.      * often used to represent a boolean value; the results of using
  194.      * it for a multi-bit field is to determine whether *any* of its
  195.      * bits are set.</p>
  196.      *
  197.      * @param holder the int data containing the bits we're interested
  198.      *  in
  199.      * @return {@code true} if any of the bits are set,
  200.      *  else {@code false}
  201.      */
  202.     public boolean isSet(final int holder) {
  203.         return (holder & mask) != 0;
  204.     }

  205.     /**
  206.      * Sets the bits.
  207.      *
  208.      * @param holder the int data containing the bits we're
  209.      *  interested in
  210.      * @return the value of holder with the specified bits set
  211.      *  to {@code 1}
  212.      */
  213.     public int set(final int holder) {
  214.         return holder | mask;
  215.     }

  216.     /**
  217.      * Sets a boolean BitField.
  218.      *
  219.      * @param holder the int data containing the bits we're
  220.      *  interested in
  221.      * @param flag indicating whether to set or clear the bits
  222.      * @return the value of holder with the specified bits set or
  223.      *         cleared
  224.      */
  225.     public int setBoolean(final int holder, final boolean flag) {
  226.         return flag ? set(holder) : clear(holder);
  227.     }

  228.     /**
  229.      * Sets the bits.
  230.      *
  231.      * @param holder the byte data containing the bits we're
  232.      *  interested in
  233.      *
  234.      * @return the value of holder with the specified bits set
  235.      *  to {@code 1}
  236.      */
  237.     public byte setByte(final byte holder) {
  238.         return (byte) set(holder);
  239.     }

  240.     /**
  241.      * Sets a boolean BitField.
  242.      *
  243.      * @param holder the byte data containing the bits we're
  244.      *  interested in
  245.      * @param flag indicating whether to set or clear the bits
  246.      * @return the value of holder with the specified bits set or
  247.      *  cleared
  248.      */
  249.     public byte setByteBoolean(final byte holder, final boolean flag) {
  250.         return flag ? setByte(holder) : clearByte(holder);
  251.     }

  252.     /**
  253.      * Sets the bits.
  254.      *
  255.      * @param holder the short data containing the bits we're
  256.      *  interested in
  257.      * @return the value of holder with the specified bits set
  258.      *  to {@code 1}
  259.      */
  260.     public short setShort(final short holder) {
  261.         return (short) set(holder);
  262.     }

  263.     /**
  264.      * Sets a boolean BitField.
  265.      *
  266.      * @param holder the short data containing the bits we're
  267.      *  interested in
  268.      * @param flag indicating whether to set or clear the bits
  269.      * @return the value of holder with the specified bits set or
  270.      *  cleared
  271.      */
  272.     public short setShortBoolean(final short holder, final boolean flag) {
  273.         return flag ? setShort(holder) : clearShort(holder);
  274.     }

  275.     /**
  276.      * Replaces the bits with new values.
  277.      *
  278.      * @see #getShortValue(short)
  279.      * @param holder the short data containing the bits we're
  280.      *  interested in
  281.      * @param value the new value for the specified bits
  282.      * @return the value of holder with the bits from the value
  283.      *  parameter replacing the old bits
  284.      */
  285.     public short setShortValue(final short holder, final short value) {
  286.         return (short) setValue(holder, value);
  287.     }

  288.     /**
  289.      * Replaces the bits with new values.
  290.      *
  291.      * @see #getValue(int)
  292.      * @param holder the int data containing the bits we're
  293.      *  interested in
  294.      * @param value the new value for the specified bits
  295.      * @return the value of holder with the bits from the value
  296.      *  parameter replacing the old bits
  297.      */
  298.     public int setValue(final int holder, final int value) {
  299.         return holder & ~mask | value << shiftCount & mask;
  300.     }

  301. }