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

org.apache.jena.atlas.lib.BitsLong Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.jena.atlas.lib;

// NB shifting is "mod 64" -- <<64 is a no-op (not a clear).
// http://mindprod.com/jgloss/masking.html

/**
 * Utilities for manipulating a bit pattern which are held in a 64 bit long.
 * Bits are numbered 0 to 63.
 * Bit 0 is the low bit of the long, and bit 63 the sign bit of the long.
 *
 * @see BitsInt
 */
public final class BitsLong {
    private BitsLong() {}

    private static final int LongLen = Long.SIZE;

    /**
     * Extract the value packed into bits start (inclusive) and finish (exclusive),
     * the value is returned shifted into the low part of the returned long. The low
     * bit is bit zero.
     *
     * @param bits
     * @param start
     * @param finish
     * @return long
     */
    public static final long unpack(long bits, int start, int finish) {
        check(start, finish);
        if ( finish == 0 )
            return 0;
        // Remove top bits by moving up. Clear bottom bits by them moving down.
        return (bits << (LongLen - finish)) >>> ((LongLen - finish) + start);
    }

    /**
     * Place the value into the bit pattern between start and finish and returns the
     * new value. Leaves other bits alone.
     *
     * @param bits
     * @param value
     * @param start
     * @param finish
     * @return long
     */
    public static final long pack(long bits, long value, int start, int finish) {
        check(start, finish);
        bits = clear$(bits, start, finish);
        long mask = mask$(start, finish);
        bits = bits | ((value << start) & mask);
        return bits;
    }

    /**
     * Get bits from a hex string.
     *
     * @param str
     * @param startChar Index of first character (counted from the left, string
     *     style).
     * @param finishChar Index after the last character (counted from the left,
     *     string style).
     * @return long
     * @see #access(long, int, int)
     */

    public static final long unpack(String str, int startChar, int finishChar) {
        String s = str.substring(startChar, finishChar);
        return Long.parseLong(s, 16);
    }

    /**
     * Set the bits specified.
     *
     * @param bits Pattern
     * @param bitIndex
     * @return Modified pattern
     */
    public static final long set(long bits, int bitIndex) {
        check(bitIndex);
        return set$(bits, bitIndex);
    }

    /**
     * Set the bits from start (inc) to finish (exc) to one
     *
     * @param bits Pattern
     * @param start start (inclusive)
     * @param finish finish (exclusive)
     * @return Modified pattern
     */
    public static final long set(long bits, int start, int finish) {
        check(start, finish);
        return set$(bits, start, finish);
    }

    /**
     * Test whether a bit is the same as isSet
     *
     * @param bits Pattern
     * @param isSet Test whether is set or not.
     * @param bitIndex Bit index
     * @return Boolean
     */
    public static final boolean test(long bits, boolean isSet, int bitIndex) {
        check(bitIndex);
        return test$(bits, isSet, bitIndex);
    }

    /**
     * Test whether a bit is set
     *
     * @param bits Pattern
     * @param bitIndex Bit index
     * @return Boolean
     */
    public static final boolean isSet(long bits, int bitIndex) {
        check(bitIndex);
        return test$(bits, true, bitIndex);
    }

    /**
     * Test whether a range has a specific value or not
     *
     * @param bits Pattern
     * @param value Value to test for
     * @param start start (inclusive)
     * @param finish finish (exclusive)
     * @return Boolean
     */
    public static final boolean test(long bits, long value, int start, int finish) {
        check(start, finish);
        return test$(bits, value, start, finish);
    }

    /**
     * Get the bits from start (inclusive) to finish (exclusive), leaving them
     * aligned in the long. See also {@link #unpack} which returns the value found at
     * that place.
     *
     * @see #unpack(long, int, int)
     * @param bits
     * @param start
     * @param finish
     * @return long
     */
    public static final long access(long bits, int start, int finish) {
        check(start, finish);
        return access$(bits, start, finish);
    }

    /**
     * Clear the bit specified.
     *
     * @param bits
     * @param bitIndex
     * @return long
     */
    public static final long clear(long bits, int bitIndex) {
        check(bitIndex);
        return clear$(bits, bitIndex);
    }

    /**
     * Clear the bits specified.
     *
     * @param bits
     * @param start
     * @param finish
     * @return long
     */
    public static final long clear(long bits, int start, int finish) {
        check(start, finish);
        return clear$(bits, start, finish);
    }

    /**
     * Create a mask that has ones between bit positions start (inc) and finish
     * (exc), and zeros elsewhere.
     *
     * @param start
     * @param finish
     * @return long
     */
    public static final long mask(int start, int finish) {
        check(start, finish);
        return mask$(start, finish);
    }

    /**
     * Create a mask that has zeros between bit positions start (inc) and finish
     * (exc), and ones elsewhere
     *
     * @param start
     * @param finish
     * @return long
     */
    public static final long maskZero(int start, int finish) {
        check(start, finish);
        return maskZero$(start, finish);
    }

    private static final long clear$(long bits, int bitIndex) {
        long mask = maskZero$(bitIndex);
        bits = bits & mask;
        return bits;
    }

    private static final long clear$(long bits, int start, int finish) {
        long mask = maskZero$(start, finish);
        bits = bits & mask;
        return bits;
    }

    private static final long set$(long bits, int bitIndex) {
        long mask = mask$(bitIndex);
        return bits | mask;
    }

    private static final long set$(long bits, int start, int finish) {
        long mask = mask$(start, finish);
        return bits | mask;
    }

    private static final boolean test$(long bits, boolean isSet, int bitIndex) {
        return isSet == access$(bits, bitIndex);
    }

    private static final boolean test$(long bits, long value, int start, int finish) {
        long v = access$(bits, start, finish);
        return v == value;
    }

    private static final boolean access$(long bits, int bitIndex) {
        long mask = mask$(bitIndex);
        return (bits & mask) != 0L;
    }

    private static final long access$(long bits, int start, int finish) {
        // Alternative
        //     int mask = mask$(start, finish);
        //     return bits & mask;
        return ((bits << (LongLen - finish)) >>> (LongLen - finish + start)) << start;
    }

    private static final long mask$(int bitIndex) {
        return 1L << bitIndex;
    }

    private static final long mask$(int start, int finish) {
        if ( finish == 0 )
            // Valid args; start is zero and so the mask is zero.
            return 0;
        long mask = -1L;
        // Order is left to right if the redundant parentheses are removed.
        return ((mask << (LongLen - finish)) >>> (LongLen - finish + start)) << start;
    }

    private static final long maskZero$(int bitIndex) {
        return ~mask$(bitIndex);
    }

    private static final long maskZero$(int start, int finish) {
        return ~mask$(start, finish);
    }

    private static final void check(long bitIndex) {
        if ( bitIndex < 0 || bitIndex >= LongLen )
            throw new IllegalArgumentException("Illegal bit index: " + bitIndex);
    }

    private static final void check(long start, long finish) {
        if ( start < 0 || start >= LongLen )
            throw new IllegalArgumentException("Illegal start: " + start);
        if ( finish < 0 || finish > LongLen )
            throw new IllegalArgumentException("Illegal finish: " + finish);
        if ( start > finish )
            throw new IllegalArgumentException("Illegal range: (" + start + ", " + finish + ")");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy