All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.abego.commons.vlq.VLQUtil Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * MIT License
 *
 * Copyright (c) 2020 Udo Borkowski, ([email protected])
 *
 * 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 org.abego.commons.vlq;

import org.abego.commons.lang.exception.MustNotInstantiateException;
import org.abego.commons.util.function.ByteConsumer;
import org.abego.commons.util.function.ByteSupplier;

/**
 * A collection of VLQ-related methods.
 *
 * 

A variable-length quantity (VLQ) is a universal code that uses an arbitrary number of binary octets (eight-bit * bytes) to represent an arbitrarily large integer. * (https://en.wikipedia.org/wiki/Variable-length_quantity)

*/ public final class VLQUtil { static final String VALUE_MUST_NOT_BE_NEGATIVE_MESSAGE = "value must not be negative"; //NON-NLS static final String VLQ_ENCODED_NUMBER_TO_LARGE_FOR_UINT_MESSAGE = "VLQ encoded number too large to fit into an unsigned int. Try to read it in a long."; //NON-NLS private static final int MAX_7BIT_INT_VALUE = 127; private static final int UNSIGNED_BYTE_MASK = 0x7f; private static final int SIGN_BYTE_MASK = 0x80; VLQUtil() { throw new MustNotInstantiateException(); } public static void encodeUnsignedIntAsVLQ(int value, ByteConsumer byteEmitter) { if (value < 0) { throw new IllegalArgumentException(VALUE_MUST_NOT_BE_NEGATIVE_MESSAGE); } int v = value; boolean endReached; do { endReached = v <= MAX_7BIT_INT_VALUE; int byteToWrite = (v & UNSIGNED_BYTE_MASK) | (endReached ? SIGN_BYTE_MASK : 0); v >>= 7; byteEmitter.accept((byte) byteToWrite); } while (!endReached); } public static int decodeUnsignedIntFromVLQ(ByteSupplier byteSupplier) { int value = 0; int shift = 0; do { byte byteRead = byteSupplier.get(); value = value | ((byteRead & UNSIGNED_BYTE_MASK) << shift); if (byteRead < 0) { // negative -> most significant bit set -> end reached // Make sure only to use 31 bits for an unsigned (4 byte) int. // VLQ Byte 1-4 have 7 significant bits (28) and the 5th byte // only 3. I.e. if the last byte has other bits sets than 0x87 // (0x80 for the negative sign) we have an overrun. // (The last byte is the one with the 28 bit shift). if ((shift == 28) && ((byteRead & 0x78) != 0)) break; // overrun return value; } shift += 7; } while (shift <= 28); throw new IllegalStateException(VLQ_ENCODED_NUMBER_TO_LARGE_FOR_UINT_MESSAGE); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy