Class MultiBinaryLongMap
Since additions or removals from the primary instance has an effect on all other instances, it is possible to listen to changes in the primary instance's key set by implementing the BinaryLongMapListener interface. This listener interface provides notifications of additions (after they happen), removals (before they happen), and clear operations (both before and after they happen). By using this interface, it is possible for consumers of the additional BinaryLongMap instances to keep in sync with the changes that are occurring to the primary BinaryLongMap instance.
- Author:
- cp, rhl 2012-08-07
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Abstract base class for BinaryLongMap implementations that delegate the key and value storage to the MultiBinaryLongMap.static interface
A listener that allows the owner of one of the delegating maps to respond to changes in the key set made by an owner of another delegating map.protected static class
A ChainedLock is aLock
implementation that represents a composition of two component locks, parent and child.static class
An implementation of BinaryLongMap that uses another BinaryLongMap to store its keys and one index of a LongStorage to store its values.class
LeftoverLongMapHolder is the MaskedLongMapHolder implementation that is backed by the "real" key tree itself.protected static class
An internal data structure for managing elastic storage of multi-dimensional data; basically, it is a two-dimensional array of rows and columns that can be grown in either dimension, but is optimized specifically for the addition and removal of rows.static class
MaskedBinaryLongMap is a BinaryLongMap which represents a mapping from a Binary to a fixed-bit-width numeric value (though exposed as a long datatype), based on an underlying BinaryLongMap.protected static class
MaskedLongMapHolder is used to produceMultiBinaryLongMap.MaskedBinaryLongMap
instances backed by a shared BinaryLongMap.class
A BinaryLongMap implementation that logically represents the "primary" BinaryLongMap of the containing MultiBinaryLongMap.static class
The SafeBinaryLongMap is a BinaryLongMap implementation that wraps an underlying BinaryLongMap in order to add thread safety.protected static class
SafeEntry is an immutableBinaryLongMap.Entry
implementation that exposes the logical contents of an underlying Entry in a way that is safe from mutations or being held as a reference.static interface
SafeEntryVisitor is a marker interface used internally by the implementation of the MultiBinaryLongMap to indicate that anBinaryLongMap.EntryVisitor
implementation is "safe" and does not retain any references to passed Entries.static interface
SafePredicate is a marker interface used internally by the implementation of the MultiBinaryLongMap to indicate that aPredicate
implementation is "safe" and does not retain any references to passed Entries.static class
The WrapperBinaryLongMap is a BinaryLongMap implementation that wraps an underlying BinaryLongMap. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final MultiBinaryLongMap.PrimaryBinaryLongMap
The primary BinaryLongMap instance.protected final MultiBinaryLongMap.LeftoverLongMapHolder
The MaskedLongMapHolder representing the "leftover" space in the primary BinaryLongMap.protected final ArrayList
The list of delegates (either a DelegateBLM, or a MaskedLongMapHolder) indexed by the freeprotected final ReentrantReadWriteLock
The read/write lock for concurrency control for the BinaryRadixTree.protected final MultiBinaryLongMap.LongStorage
The underlying storage for the values.protected final BinaryRadixTree
The underlying storage for the keys and handles. -
Constructor Summary
ConstructorsConstructorDescriptionConstruct a MultiBinaryLongMap.Construct a MultiBinaryLongMap. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add the specified listener to listen to changes that occur to the MultiBinaryLongMap's primary BinaryLongMap.Create a new BinaryLongMap that can be used to manage int (not long) values for the set of keys present in the primary BinaryLongMap instance.Create a new BinaryLongMap that can be used to manage values for the set of keys present in the primary BinaryLongMap instance.Helper method to create a new delegating BinaryLongMap.createBitMap
(int cBits) Create a new BinaryLongMap that can be used to manage numeric values of the specified bit-width for the set of keys present in the primary BinaryLongMap instance.protected static int
decodeRemainder
(long l) Extract the "remainder" portion (the portion not encoding theslot
) from the specified long that was stored in a BinaryLongMap.protected static int
decodeSlot
(long l) Extract a slot index from a long that was stored in a BinaryLongMap.protected static long
encodeRemainder
(long l, int iRemainder) Encode a 32-bit "remainder" value as a long that can be stored in a BinaryLongMap.protected static long
encodeSlot
(long l, int iSlot) Encode a slot index as a long that can be stored in a BinaryLongMap.protected static MultiBinaryLongMap.SafePredicate
ensureSafePredicate
(Predicate<BinaryLongMap.Entry> predicate) Return a SafePredicate based on the specified predicate implementation.protected static MultiBinaryLongMap.SafeEntryVisitor
ensureSafeVisitor
(BinaryLongMap blm, BinaryLongMap.EntryVisitor visitor) Return a SafeEntryVisitor based on the specified visitor implementation.Obtain a reference to the primary BinaryLongMap instance.void
releaseMap
(BinaryLongMap blm) Release one of the maps previously returned from eithercreateBinaryLongMap()
,createBinaryIntMap()
orcreateBitMap(int)
.protected void
Helper method for releasing a BinaryLongMap created by this MultiBinaryLongMap.void
Remove the specified listener from listening to changes that occur to the MultiBinaryLongMap's primary BinaryLongMap.
-
Field Details
-
f_tree
The underlying storage for the keys and handles. -
f_storage
The underlying storage for the values. -
f_blmPrimary
The primary BinaryLongMap instance. -
f_holderLeftover
The MaskedLongMapHolder representing the "leftover" space in the primary BinaryLongMap. -
f_rwLockMaster
The read/write lock for concurrency control for the BinaryRadixTree. -
f_listDelegates
The list of delegates (either a DelegateBLM, or a MaskedLongMapHolder) indexed by the free
-
-
Constructor Details
-
MultiBinaryLongMap
public MultiBinaryLongMap()Construct a MultiBinaryLongMap. -
MultiBinaryLongMap
Construct a MultiBinaryLongMap.- Parameters:
lock
- the ReentrantReadWriteLock to use for thread safety; if one is not provided, then one will be created
-
-
Method Details
-
getPrimaryBinaryLongMap
Obtain a reference to the primary BinaryLongMap instance.The returned BinaryLongMap is thread-safe.
- Returns:
- the primary BinaryLongMap instance, which "owns" the keys that are represented in all of the BinaryLongMap instances, and thus can add or remove keys
-
createBinaryLongMap
Create a new BinaryLongMap that can be used to manage values for the set of keys present in the primary BinaryLongMap instance.The returned BinaryLongMap is thread-safe.
- Returns:
- a new BinaryLongMap instance that manages a mapping between Binary keys and long values
-
createBinaryLongMapInternal
Helper method to create a new delegating BinaryLongMap. This method does not return the created BinaryLongMap as a SafeBinaryLongMap and requires that the caller holds the master exclusive lock for the MultiBinaryLongMap.- Returns:
- a new delegating BinaryLongMap
-
createBitMap
Create a new BinaryLongMap that can be used to manage numeric values of the specified bit-width for the set of keys present in the primary BinaryLongMap instance. Values inserted into the returned BinaryLongMap must fit within the specified number of bits (logically having the range of: -(1 << (cBits - 1) through (1 << (cBits - 1))) - 1. Values returned from the resulting map will be sign-extended to the long data-type and it is the responsibility of calling code intending to use the map to store unsigned values to adjust/mask the sign accordingly.The returned BinaryLongMap is thread-safe.
- Parameters:
cBits
- the bit-width of values- Returns:
- a new BinaryLongMap instance that manages a mapping between Binary keys and numeric values of the specified bit width
-
createBinaryIntMap
Create a new BinaryLongMap that can be used to manage int (not long) values for the set of keys present in the primary BinaryLongMap instance. Values inserted into the returned BinaryLongMap must fit within the 32-bits (logically having the range of the int datatype. More formally, the value logically inserted into the map is given by: (long) ((int) (lValue & 0xFFFFFFFFL)). Values returned from the resulting map will be sign-extended to the long data-type and it is the responsibility of calling code intending to use the map to store unsigned values to adjust/mask the sign accordingly.The returned BinaryLongMap is thread-safe.
- Returns:
- a new BinaryLongMap instance that manages a mapping between Binary keys and int values
-
releaseMap
Release one of the maps previously returned from eithercreateBinaryLongMap()
,createBinaryIntMap()
orcreateBitMap(int)
. It is illegal to pass an instance not created by this MultiBinaryLongMap, or to pass the primary BinaryLongMap instance.- Parameters:
blm
- a BinaryLongMap instance previously created by this MultiBinaryLongMap
-
releaseMapInternal
Helper method for releasing a BinaryLongMap created by this MultiBinaryLongMap. The caller is responsible for unwrapping any"safe" wrappers
around the BinaryLongMap that is being released, as well as holding the master exclusive lock for this MultiBinaryLongMap.- Parameters:
blm
- the BinaryLongMap to be released
-
addListener
Add the specified listener to listen to changes that occur to the MultiBinaryLongMap's primary BinaryLongMap.- Parameters:
listener
- the listener to add
-
removeListener
Remove the specified listener from listening to changes that occur to the MultiBinaryLongMap's primary BinaryLongMap.- Parameters:
listener
- the listener to remove
-
decodeSlot
protected static int decodeSlot(long l) Extract a slot index from a long that was stored in a BinaryLongMap.- Parameters:
l
- the long value stored in the BinaryLongMap- Returns:
- the slot index to use with a LongStorage
-
decodeRemainder
protected static int decodeRemainder(long l) Extract the "remainder" portion (the portion not encoding theslot
) from the specified long that was stored in a BinaryLongMap.- Parameters:
l
- the long value stored in the BinaryLongMap- Returns:
- the remainder portion of the specified long value
-
encodeSlot
protected static long encodeSlot(long l, int iSlot) Encode a slot index as a long that can be stored in a BinaryLongMap. Only the least significant 32 bits are used.- Parameters:
l
- the long value stored in the BinaryLongMapiSlot
- the slot index for a LongStorage- Returns:
- the long to store in the BinaryLongMap
-
encodeRemainder
protected static long encodeRemainder(long l, int iRemainder) Encode a 32-bit "remainder" value as a long that can be stored in a BinaryLongMap.- Parameters:
l
- the long value stored in the BinaryLongMapiRemainder
- the 32-bit remainder to encode- Returns:
- the long to store in the BinaryLongMap
-
ensureSafePredicate
protected static MultiBinaryLongMap.SafePredicate ensureSafePredicate(Predicate<BinaryLongMap.Entry> predicate) Return a SafePredicate based on the specified predicate implementation.- Parameters:
predicate
- the predicate- Returns:
- a SafePredicate
-
ensureSafeVisitor
protected static MultiBinaryLongMap.SafeEntryVisitor ensureSafeVisitor(BinaryLongMap blm, BinaryLongMap.EntryVisitor visitor) Return a SafeEntryVisitor based on the specified visitor implementation.- Parameters:
visitor
- the visitor- Returns:
- a SafeEntryVisitor
-