From c0f38b3f8d862d8ce38c36ad7459494a11d833e3 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 31 Jul 2015 04:55:06 +0200 Subject: Bitfield: Refine impl. complete get/put 32bit, add copy*(..), add synchronized delegation; TODO: Unit tests. --- src/java/com/jogamp/common/util/Bitfield.java | 55 ++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 9 deletions(-) (limited to 'src/java/com/jogamp/common/util/Bitfield.java') diff --git a/src/java/com/jogamp/common/util/Bitfield.java b/src/java/com/jogamp/common/util/Bitfield.java index 4086578..f7eaeb0 100644 --- a/src/java/com/jogamp/common/util/Bitfield.java +++ b/src/java/com/jogamp/common/util/Bitfield.java @@ -27,6 +27,8 @@ */ package com.jogamp.common.util; +import jogamp.common.util.SyncedBitfield; + /** * Simple bitfield interface for efficient bit storage access in O(1). * @since 2.3.2 @@ -72,27 +74,53 @@ public interface Bitfield { return new jogamp.common.util.Int32ArrayBitfield(storageBitSize); } } + /** + * Creates a synchronized {@link Bitfield} by wrapping the given {@link Bitfield} instance. + */ + public static Bitfield synchronize(final Bitfield impl) { + return new SyncedBitfield(impl); + } } - /** * Returns the storage size in bit units, e.g. 32 bit for implementations using one {@code int} field. */ int getStorageBitSize(); /** - * Returns the 32 bit integer mask w/ its lowest bit at the bit number {@code rightBitnum}. - * @param rightBitnum bit number denoting the position of the lowest bit, restricted to [0..{@link #getStorageBitSize()}-32]. + * Returns {@code length} bits from this storage, + * starting with the lowest bit from the storage position {@code lowBitnum}. + * @param lowBitnum storage bit position of the lowest bit, restricted to [0..{@link #getStorageBitSize()}-{@code length}]. + * @param length number of bits to read, constrained to [0..32]. * @throws IndexOutOfBoundsException if {@code rightBitnum} is out of bounds + * @see #put32(int, int, int) */ - int getInt32(final int rightBitnum) throws IndexOutOfBoundsException; + int get32(final int lowBitnum, final int length) throws IndexOutOfBoundsException; /** - * Sets the given 32 bit integer mask w/ its lowest bit at the bit number {@code rightBitnum}. - * @param rightBitnum bit number denoting the position of the lowest bit, restricted to [0..{@link #getStorageBitSize()}-32]. - * @param mask denoting the 32 bit mask value to store + * Puts {@code length} bits of given {@code data} into this storage, + * starting w/ the lowest bit to the storage position {@code lowBitnum}. + * @param lowBitnum storage bit position of the lowest bit, restricted to [0..{@link #getStorageBitSize()}-{@code length}]. + * @param length number of bits to read, constrained to [0..32]. + * @param data the actual bits to be put into this storage * @throws IndexOutOfBoundsException if {@code rightBitnum} is out of bounds + * @see #get32(int, int) */ - void putInt32(final int rightBitnum, final int mask) throws IndexOutOfBoundsException; + void put32(final int lowBitnum, final int length, final int data) throws IndexOutOfBoundsException; + + /** + * Copies {@code length} bits at position {@code srcLowBitnum} to position {@code dstLowBitnum} + * and returning the bits. + *

+ * Implementation shall operate as if invoking {@link #get32(int, int)} + * and then {@link #put32(int, int, int)} sequentially. + *

+ * @param srcLowBitnum source bit number, restricted to [0..{@link #getStorageBitSize()}-1]. + * @param dstLowBitnum destination bit number, restricted to [0..{@link #getStorageBitSize()}-1]. + * @throws IndexOutOfBoundsException if {@code bitnum} is out of bounds + * @see #get32(int, int) + * @see #put32(int, int, int) + */ + int copy32(final int srcLowBitnum, final int dstLowBitnum, final int length) throws IndexOutOfBoundsException; /** * Return true if the bit at position bitnum is set, otherwise false. @@ -107,7 +135,7 @@ public interface Bitfield { * @param bitnum bit number, restricted to [0..{@link #getStorageBitSize()}-1]. * @throws IndexOutOfBoundsException if {@code bitnum} is out of bounds */ - boolean put(final int bitnum, final boolean bit) throws IndexOutOfBoundsException; + void put(final int bitnum, final boolean bit) throws IndexOutOfBoundsException; /** * Set the bit at position bitnum according to bit. @@ -123,6 +151,15 @@ public interface Bitfield { */ void clear(final int bitnum) throws IndexOutOfBoundsException; + /** + * Copies the bit at position {@code srcBitnum} to position {@code dstBitnum} + * and returning true if the bit is set, otherwise false. + * @param srcBitnum source bit number, restricted to [0..{@link #getStorageBitSize()}-1]. + * @param dstBitnum destination bit number, restricted to [0..{@link #getStorageBitSize()}-1]. + * @throws IndexOutOfBoundsException if {@code bitnum} is out of bounds + */ + boolean copy(final int srcBitnum, final int dstBitnum) throws IndexOutOfBoundsException; + /** * Returns the number of set bits within this bitfield. *

-- cgit v1.2.3