/** * @author : Paul Taylor * @author : Eric Farng * * Version @version:$Id: BooleanByte.java 920 2010-10-04 13:47:19Z paultaylor $ * * MusicTag Copyright (C)2003,2004 * * This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser * General Public License as published by the Free Software Foundation; either version 2.1 of the License, * or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this library; if not, * you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Description: * */ package org.jaudiotagger.tag.datatype; import org.jaudiotagger.tag.InvalidDataTypeException; import org.jaudiotagger.tag.id3.AbstractTagFrameBody; /** * Represents a bit flag within a byte */ public class BooleanByte extends AbstractDataType { /** * */ int bitPosition = -1; /** * Creates a new ObjectBooleanByte datatype. * * @param identifier * @param frameBody * @param bitPosition * @throws IndexOutOfBoundsException */ public BooleanByte(String identifier, AbstractTagFrameBody frameBody, int bitPosition) { super(identifier, frameBody); if ((bitPosition < 0) || (bitPosition > 7)) { throw new IndexOutOfBoundsException("Bit position needs to be from 0 - 7 : " + bitPosition); } this.bitPosition = bitPosition; } public BooleanByte(BooleanByte copy) { super(copy); this.bitPosition = copy.bitPosition; } /** * @return */ public int getBitPosition() { return bitPosition; } /** * @return */ public int getSize() { return 1; } /** * @param obj * @return */ public boolean equals(Object obj) { if (!(obj instanceof BooleanByte)) { return false; } BooleanByte object = (BooleanByte) obj; return this.bitPosition == object.bitPosition && super.equals(obj); } /** * @param arr * @param offset * @throws NullPointerException * @throws IndexOutOfBoundsException */ public void readByteArray(byte[] arr, int offset) throws InvalidDataTypeException { if (arr == null) { throw new NullPointerException("Byte array is null"); } if ((offset < 0) || (offset >= arr.length)) { throw new IndexOutOfBoundsException("Offset to byte array is out of bounds: offset = " + offset + ", array.length = " + arr.length); } byte newValue = arr[offset]; newValue >>= bitPosition; newValue &= 0x1; this.value = newValue == 1; } /** * @return */ public String toString() { return "" + value; } /** * @return */ public byte[] writeByteArray() { byte[] retValue; retValue = new byte[1]; if (value != null) { retValue[0] = (byte) ((Boolean) value ? 1 : 0); retValue[0] <<= bitPosition; } return retValue; } }