jaulib v1.3.0
Jau Support Library (C++, Java, ..)
Public Member Functions | List of all members
jau.util.SyncedBitfield Class Reference

Simple synchronized Bitfield by wrapping an existing Bitfield. More...

Inheritance diagram for jau.util.SyncedBitfield:
Collaboration diagram for jau.util.SyncedBitfield:

Public Member Functions

 SyncedBitfield (final Bitfield impl)
 
final synchronized int size ()
 Returns the storage size in bit units, e.g. More...
 
final synchronized void clearField (final boolean bit)
 Set all bits of this bitfield to the given value bit. More...
 
final synchronized int get32 (final int lowBitnum, final int length) throws IndexOutOfBoundsException
 Returns length bits from this storage, starting with the lowest bit from the storage position lowBitnum. More...
 
final synchronized void put32 (final int lowBitnum, final int length, final int data) throws IndexOutOfBoundsException
 Puts length bits of given data into this storage, starting w/ the lowest bit to the storage position lowBitnum. More...
 
final synchronized int copy32 (final int srcLowBitnum, final int dstLowBitnum, final int length) throws IndexOutOfBoundsException
 Copies length bits at position srcLowBitnum to position dstLowBitnum and returning the bits. More...
 
final synchronized boolean get (final int bitnum) throws IndexOutOfBoundsException
 Return true if the bit at position bitnum is set, otherwise false. More...
 
final synchronized boolean put (final int bitnum, final boolean bit) throws IndexOutOfBoundsException
 Set or clear the bit at position bitnum according to bit and return the previous value. More...
 
final synchronized void set (final int bitnum) throws IndexOutOfBoundsException
 Set the bit at position bitnum according to bit. More...
 
final synchronized void clear (final int bitnum) throws IndexOutOfBoundsException
 Clear the bit at position bitnum according to bit. More...
 
final synchronized boolean copy (final int srcBitnum, final int dstBitnum) throws IndexOutOfBoundsException
 Copies the bit at position srcBitnum to position dstBitnum and returning true if the bit is set, otherwise false. More...
 
final synchronized int bitCount ()
 Returns the number of one bits within this bitfield. More...
 
int size ()
 Returns the storage size in bit units, e.g. More...
 
void clearField (final boolean bit)
 Set all bits of this bitfield to the given value bit. More...
 
int get32 (final int lowBitnum, final int length) throws IndexOutOfBoundsException
 Returns length bits from this storage, starting with the lowest bit from the storage position lowBitnum. More...
 
void put32 (final int lowBitnum, final int length, final int data) throws IndexOutOfBoundsException
 Puts length bits of given data into this storage, starting w/ the lowest bit to the storage position lowBitnum. More...
 
int copy32 (final int srcLowBitnum, final int dstLowBitnum, final int length) throws IndexOutOfBoundsException
 Copies length bits at position srcLowBitnum to position dstLowBitnum and returning the bits. More...
 
boolean get (final int bitnum) throws IndexOutOfBoundsException
 Return true if the bit at position bitnum is set, otherwise false. More...
 
boolean put (final int bitnum, final boolean bit) throws IndexOutOfBoundsException
 Set or clear the bit at position bitnum according to bit and return the previous value. More...
 
void set (final int bitnum) throws IndexOutOfBoundsException
 Set the bit at position bitnum according to bit. More...
 
void clear (final int bitnum) throws IndexOutOfBoundsException
 Clear the bit at position bitnum according to bit. More...
 
boolean copy (final int srcBitnum, final int dstBitnum) throws IndexOutOfBoundsException
 Copies the bit at position srcBitnum to position dstBitnum and returning true if the bit is set, otherwise false. More...
 
int bitCount ()
 Returns the number of one bits within this bitfield. More...
 

Detailed Description

Simple synchronized Bitfield by wrapping an existing Bitfield.

Definition at line 33 of file SyncedBitfield.java.

Constructor & Destructor Documentation

◆ SyncedBitfield()

jau.util.SyncedBitfield.SyncedBitfield ( final Bitfield  impl)

Definition at line 36 of file SyncedBitfield.java.

Member Function Documentation

◆ bitCount()

final synchronized int jau.util.SyncedBitfield.bitCount ( )

Returns the number of one bits within this bitfield.

Utilizes {#link Bitfield.Util#bitCount(int)}.

Implements org.jau.util.Bitfield.

Definition at line 91 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ clear()

final synchronized void jau.util.SyncedBitfield.clear ( final int  bitnum) throws IndexOutOfBoundsException

Clear the bit at position bitnum according to bit.

Parameters
bitnumbit number, restricted to [0..size()-1].
Exceptions
IndexOutOfBoundsExceptionif bitnum is out of bounds

Implements org.jau.util.Bitfield.

Definition at line 81 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ clearField()

final synchronized void jau.util.SyncedBitfield.clearField ( final boolean  bit)

Set all bits of this bitfield to the given value bit.

Implements org.jau.util.Bitfield.

Definition at line 46 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ copy()

final synchronized boolean jau.util.SyncedBitfield.copy ( final int  srcBitnum,
final int  dstBitnum 
) throws IndexOutOfBoundsException

Copies the bit at position srcBitnum to position dstBitnum and returning true if the bit is set, otherwise false.

Parameters
srcBitnumsource bit number, restricted to [0..size()-1].
dstBitnumdestination bit number, restricted to [0..size()-1].
Exceptions
IndexOutOfBoundsExceptionif bitnum is out of bounds

Implements org.jau.util.Bitfield.

Definition at line 86 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ copy32()

final synchronized int jau.util.SyncedBitfield.copy32 ( final int  srcLowBitnum,
final int  dstLowBitnum,
final int  length 
) throws IndexOutOfBoundsException

Copies length bits at position srcLowBitnum to position dstLowBitnum and returning the bits.

Implementation shall operate as if invoking get32(int, int) and then put32(int, int, int) sequentially.

Parameters
srcLowBitnumsource bit number, restricted to [0..size()-1].
dstLowBitnumdestination bit number, restricted to [0..size()-1].
Exceptions
IndexOutOfBoundsExceptionif bitnum is out of bounds
See also
get32(int, int)
put32(int, int, int)

Implements org.jau.util.Bitfield.

Definition at line 61 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ get()

final synchronized boolean jau.util.SyncedBitfield.get ( final int  bitnum) throws IndexOutOfBoundsException

Return true if the bit at position bitnum is set, otherwise false.

Parameters
bitnumbit number, restricted to [0..size()-1].
Exceptions
IndexOutOfBoundsExceptionif bitnum is out of bounds

Implements org.jau.util.Bitfield.

Definition at line 66 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ get32()

final synchronized int jau.util.SyncedBitfield.get32 ( final int  lowBitnum,
final int  length 
) throws IndexOutOfBoundsException

Returns length bits from this storage, starting with the lowest bit from the storage position lowBitnum.

Parameters
lowBitnumstorage bit position of the lowest bit, restricted to [0..size()-length].
lengthnumber of bits to read, constrained to [0..32].
Exceptions
IndexOutOfBoundsExceptionif rightBitnum is out of bounds
See also
put32(int, int, int)

Implements org.jau.util.Bitfield.

Definition at line 51 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ put()

final synchronized boolean jau.util.SyncedBitfield.put ( final int  bitnum,
final boolean  bit 
) throws IndexOutOfBoundsException

Set or clear the bit at position bitnum according to bit and return the previous value.

Parameters
bitnumbit number, restricted to [0..size()-1].
Exceptions
IndexOutOfBoundsExceptionif bitnum is out of bounds

Implements org.jau.util.Bitfield.

Definition at line 71 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ put32()

final synchronized void jau.util.SyncedBitfield.put32 ( final int  lowBitnum,
final int  length,
final int  data 
) throws IndexOutOfBoundsException

Puts length bits of given data into this storage, starting w/ the lowest bit to the storage position lowBitnum.

Parameters
lowBitnumstorage bit position of the lowest bit, restricted to [0..size()-length].
lengthnumber of bits to write, constrained to [0..32].
datathe actual bits to be put into this storage
Exceptions
IndexOutOfBoundsExceptionif rightBitnum is out of bounds
See also
get32(int, int)

Implements org.jau.util.Bitfield.

Definition at line 56 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ set()

final synchronized void jau.util.SyncedBitfield.set ( final int  bitnum) throws IndexOutOfBoundsException

Set the bit at position bitnum according to bit.

Parameters
bitnumbit number, restricted to [0..size()-1].
Exceptions
IndexOutOfBoundsExceptionif bitnum is out of bounds

Implements org.jau.util.Bitfield.

Definition at line 76 of file SyncedBitfield.java.

Here is the call graph for this function:

◆ size()

final synchronized int jau.util.SyncedBitfield.size ( )

Returns the storage size in bit units, e.g.

32 bit for implementations using one int field.

Implements org.jau.util.Bitfield.

Definition at line 41 of file SyncedBitfield.java.

Here is the call graph for this function:

The documentation for this class was generated from the following file: