2016-04-10 06:11:57 +00:00
|
|
|
/*
|
|
|
|
* QR Code generator library (Java)
|
|
|
|
*
|
2017-04-24 20:41:54 +00:00
|
|
|
* Copyright (c) Project Nayuki. (MIT License)
|
2016-04-10 06:11:57 +00:00
|
|
|
* https://www.nayuki.io/page/qr-code-generator-library
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
|
|
* the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
* - The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
* - The Software is provided "as is", without warranty of any kind, express or
|
|
|
|
* implied, including but not limited to the warranties of merchantability,
|
|
|
|
* fitness for a particular purpose and noninfringement. In no event shall the
|
|
|
|
* authors or copyright holders be liable for any claim, damages or other
|
|
|
|
* liability, whether in an action of contract, tort or otherwise, arising from,
|
|
|
|
* out of or in connection with the Software or the use or other dealings in the
|
|
|
|
* Software.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package io.nayuki.qrcodegen;
|
|
|
|
|
2017-08-17 20:08:28 +00:00
|
|
|
import java.util.BitSet;
|
2017-01-25 01:13:57 +00:00
|
|
|
import java.util.Objects;
|
2016-04-10 06:11:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-10-02 00:21:19 +00:00
|
|
|
* An appendable sequence of bits (0s and 1s).
|
2016-04-10 06:11:57 +00:00
|
|
|
*/
|
2017-08-17 20:12:42 +00:00
|
|
|
public final class BitBuffer implements Cloneable {
|
2016-04-10 06:11:57 +00:00
|
|
|
|
|
|
|
/*---- Fields ----*/
|
|
|
|
|
2017-08-17 20:08:28 +00:00
|
|
|
private BitSet data;
|
2017-08-18 03:36:00 +00:00
|
|
|
|
2018-08-22 20:39:45 +00:00
|
|
|
private int bitLength; // Non-negative
|
2016-04-10 06:11:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Constructor ----*/
|
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
|
|
|
* Constructs an empty bit buffer (length 0).
|
|
|
|
*/
|
2016-04-10 06:11:57 +00:00
|
|
|
public BitBuffer() {
|
2017-08-17 20:08:28 +00:00
|
|
|
data = new BitSet();
|
2016-04-10 06:11:57 +00:00
|
|
|
bitLength = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*---- Methods ----*/
|
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
|
|
|
* Returns the length of this sequence, which is a non-negative value.
|
|
|
|
* @return the length of this sequence
|
|
|
|
*/
|
2016-04-10 06:11:57 +00:00
|
|
|
public int bitLength() {
|
2018-08-28 20:27:51 +00:00
|
|
|
assert bitLength >= 0;
|
2016-04-10 06:11:57 +00:00
|
|
|
return bitLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
|
|
|
* Returns the bit at the specified index, yielding 0 or 1.
|
|
|
|
* @param index the index to get the bit at
|
|
|
|
* @return the bit at the specified index
|
|
|
|
* @throws IndexOutOfBoundsException if index < 0 or index ≥ bitLength
|
|
|
|
*/
|
2017-08-17 20:12:42 +00:00
|
|
|
public int getBit(int index) {
|
2017-08-18 03:31:35 +00:00
|
|
|
if (index < 0 || index >= bitLength)
|
2017-08-17 20:12:42 +00:00
|
|
|
throw new IndexOutOfBoundsException();
|
|
|
|
return data.get(index) ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
|
|
|
* Packs this buffer's bits into bytes in big endian,
|
|
|
|
* padding with '0' bit values, and returns the new array.
|
|
|
|
* @return this sequence as a new array of bytes (not {@code null})
|
|
|
|
*/
|
2016-04-10 06:11:57 +00:00
|
|
|
public byte[] getBytes() {
|
2018-08-22 17:57:40 +00:00
|
|
|
byte[] result = new byte[(bitLength + 7) >>> 3]; // Round up to whole byte, won't overflow
|
2018-08-22 18:33:01 +00:00
|
|
|
for (int i = 0; i < bitLength; i++) {
|
|
|
|
if (data.get(i))
|
|
|
|
result[i >>> 3] |= 1 << (7 - (i & 7));
|
|
|
|
}
|
2017-08-17 20:08:28 +00:00
|
|
|
return result;
|
2016-04-10 06:11:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
|
|
|
* Appends the specified number of low bits of the specified value
|
|
|
|
* to this sequence. Requires 0 ≤ val < 2<sup>len</sup>.
|
|
|
|
* @param val the value to append
|
|
|
|
* @param len the number of low bits in the value to take
|
2018-10-02 08:56:07 +00:00
|
|
|
* @throws IllegalArgumentException if the value or number of bits is out of range
|
2018-08-22 18:03:17 +00:00
|
|
|
* @throws IllegalStateException if appending the data
|
|
|
|
* would make bitLength exceed Integer.MAX_VALUE
|
2017-08-18 03:36:00 +00:00
|
|
|
*/
|
2016-04-10 06:11:57 +00:00
|
|
|
public void appendBits(int val, int len) {
|
2017-08-18 03:33:03 +00:00
|
|
|
if (len < 0 || len > 31 || val >>> len != 0)
|
2016-04-10 06:11:57 +00:00
|
|
|
throw new IllegalArgumentException("Value out of range");
|
2018-08-22 18:03:17 +00:00
|
|
|
if (Integer.MAX_VALUE - bitLength < len)
|
|
|
|
throw new IllegalStateException("Maximum length reached");
|
2016-04-10 06:11:57 +00:00
|
|
|
for (int i = len - 1; i >= 0; i--, bitLength++) // Append bit by bit
|
2018-04-13 19:48:59 +00:00
|
|
|
data.set(bitLength, QrCode.getBit(val, i));
|
2016-04-10 06:11:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
2018-08-22 18:33:28 +00:00
|
|
|
* Appends the specified bit buffer to this bit buffer.
|
|
|
|
* @param bb the bit buffer whose data to append (not {@code null})
|
|
|
|
* @throws NullPointerException if the bit buffer is {@code null}
|
2018-08-22 18:03:17 +00:00
|
|
|
* @throws IllegalStateException if appending the data
|
|
|
|
* would make bitLength exceed Integer.MAX_VALUE
|
2017-08-18 03:36:00 +00:00
|
|
|
*/
|
2018-08-22 18:33:28 +00:00
|
|
|
public void appendData(BitBuffer bb) {
|
|
|
|
Objects.requireNonNull(bb);
|
2018-08-22 18:03:17 +00:00
|
|
|
if (Integer.MAX_VALUE - bitLength < bb.bitLength)
|
|
|
|
throw new IllegalStateException("Maximum length reached");
|
2017-08-17 20:34:52 +00:00
|
|
|
for (int i = 0; i < bb.bitLength; i++, bitLength++) // Append bit by bit
|
|
|
|
data.set(bitLength, bb.data.get(i));
|
2016-04-10 06:11:57 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 20:12:42 +00:00
|
|
|
|
2017-08-18 03:36:00 +00:00
|
|
|
/**
|
|
|
|
* Returns a copy of this bit buffer object.
|
|
|
|
* @return a copy of this bit buffer object
|
|
|
|
*/
|
2017-08-17 20:12:42 +00:00
|
|
|
public BitBuffer clone() {
|
|
|
|
try {
|
|
|
|
BitBuffer result = (BitBuffer)super.clone();
|
|
|
|
result.data = (BitSet)result.data.clone();
|
|
|
|
return result;
|
|
|
|
} catch (CloneNotSupportedException e) {
|
|
|
|
throw new AssertionError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-10 06:11:57 +00:00
|
|
|
}
|