Package org.apache.lucene.internal.hppc
Class LongObjectHashMap<VType>
- java.lang.Object
-
- org.apache.lucene.internal.hppc.LongObjectHashMap<VType>
-
- All Implemented Interfaces:
Cloneable
,Iterable<LongObjectHashMap.LongObjectCursor<VType>>
,Accountable
public class LongObjectHashMap<VType> extends Object implements Iterable<LongObjectHashMap.LongObjectCursor<VType>>, Accountable, Cloneable
A hash map oflong
toObject
, implemented using open addressing with linear probing for collision resolution. Supports null values.Mostly forked and trimmed from com.carrotsearch.hppc.LongObjectHashMap
github: https://github.com/carrotsearch/hppc release 0.10.0
- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
LongObjectHashMap.KeysContainer
A view of the keys inside this hash map.static class
LongObjectHashMap.LongObjectCursor<VType>
Forked from HPPC, holding int index,key and valueclass
LongObjectHashMap.ValuesContainer
A view over the set of values of this map.
-
Field Summary
Fields Modifier and Type Field Description protected int
assigned
The number of stored keys (assigned key slots), excluding the special "empty" key, if any (usesize()
instead).protected boolean
hasEmptyKey
Special treatment for the "empty slot" key marker.protected int
iterationSeed
Seed used to ensure the hash iteration order is different from an iteration to another.long[]
keys
The array holding keys.protected double
loadFactor
The load factor forkeys
.protected int
mask
Mask for slot scans inkeys
.protected int
resizeAt
Object[]
values
The array holding values.-
Fields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE
-
-
Constructor Summary
Constructors Constructor Description LongObjectHashMap()
New instance with sane defaults.LongObjectHashMap(int expectedElements)
New instance with sane defaults.LongObjectHashMap(int expectedElements, double loadFactor)
New instance with the provided defaults.LongObjectHashMap(LongObjectHashMap<VType> map)
Create a hash map from all key-value pairs of another map.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
allocateBuffers(int arraySize)
Allocate new internal buffers.protected void
allocateThenInsertThenRehash(int slot, long pendingKey, VType pendingValue)
This method is invoked when there is a new key/ value pair to be inserted into the buffers but there is not enough empty slots to do so.void
clear()
LongObjectHashMap<VType>
clone()
boolean
containsKey(long key)
void
ensureCapacity(int expectedElements)
Ensure this container can hold at least the given number of keys (entries) without resizing its buffers.protected boolean
equalElements(LongObjectHashMap<?> other)
Return true if all keys of some other container exist in this container.boolean
equals(Object obj)
static <VType> LongObjectHashMap<VType>
from(long[] keys, VType[] values)
Creates a hash map from two index-aligned arrays of key-value pairs.VType
get(long key)
VType
getOrDefault(long key, VType defaultValue)
int
hashCode()
protected int
hashKey(long key)
Returns a hash code for the given key.boolean
indexExists(int index)
VType
indexGet(int index)
void
indexInsert(int index, long key, VType value)
int
indexOf(long key)
VType
indexRemove(int index)
VType
indexReplace(int index, VType newValue)
boolean
isEmpty()
Iterator<LongObjectHashMap.LongObjectCursor<VType>>
iterator()
LongObjectHashMap.KeysContainer
keys()
Returns a specialized view of the keys of this associated container.protected int
nextIterationSeed()
Provides the next iteration seed used to build the iteration starting slot and offset increment.VType
put(long key, VType value)
int
putAll(Iterable<? extends LongObjectHashMap.LongObjectCursor<? extends VType>> iterable)
boolean
putIfAbsent(long key, VType value)
Trove-inspired API method.long
ramBytesUsed()
Return the memory usage of this object in bytes.protected void
rehash(long[] fromKeys, VType[] fromValues)
Rehash from old buffers to new buffers.void
release()
VType
remove(long key)
protected void
shiftConflictingKeys(int gapSlot)
Shift all the slot-conflicting keys and values allocated to (and including)slot
.int
size()
String
toString()
Convert the contents of this map to a human-friendly string.LongObjectHashMap.ValuesContainer
values()
protected double
verifyLoadFactor(double loadFactor)
Validate load factor range and return it.-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.util.Accountable
getChildResources
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
keys
public long[] keys
The array holding keys.
-
values
public Object[] values
The array holding values.
-
assigned
protected int assigned
The number of stored keys (assigned key slots), excluding the special "empty" key, if any (usesize()
instead).- See Also:
size()
-
mask
protected int mask
Mask for slot scans inkeys
.
-
resizeAt
protected int resizeAt
-
hasEmptyKey
protected boolean hasEmptyKey
Special treatment for the "empty slot" key marker.
-
loadFactor
protected double loadFactor
The load factor forkeys
.
-
iterationSeed
protected int iterationSeed
Seed used to ensure the hash iteration order is different from an iteration to another.
-
-
Constructor Detail
-
LongObjectHashMap
public LongObjectHashMap()
New instance with sane defaults.
-
LongObjectHashMap
public LongObjectHashMap(int expectedElements)
New instance with sane defaults.- Parameters:
expectedElements
- The expected number of elements guaranteed not to cause buffer expansion (inclusive).
-
LongObjectHashMap
public LongObjectHashMap(int expectedElements, double loadFactor)
New instance with the provided defaults.- Parameters:
expectedElements
- The expected number of elements guaranteed not to cause a rehash (inclusive).loadFactor
- The load factor for internal buffers. Insane load factors (zero, full capacity) are rejected byverifyLoadFactor(double)
.
-
LongObjectHashMap
public LongObjectHashMap(LongObjectHashMap<VType> map)
Create a hash map from all key-value pairs of another map.
-
-
Method Detail
-
putAll
public int putAll(Iterable<? extends LongObjectHashMap.LongObjectCursor<? extends VType>> iterable)
-
putIfAbsent
public boolean putIfAbsent(long key, VType value)
Trove-inspired API method. An equivalent of the following code:if (!map.containsKey(key)) map.put(value);
- Parameters:
key
- The key of the value to check.value
- The value to put ifkey
does not exist.- Returns:
true
ifkey
did not exist andvalue
was placed in the map.
-
remove
public VType remove(long key)
-
get
public VType get(long key)
-
containsKey
public boolean containsKey(long key)
-
indexOf
public int indexOf(long key)
-
indexExists
public boolean indexExists(int index)
-
indexGet
public VType indexGet(int index)
-
indexInsert
public void indexInsert(int index, long key, VType value)
-
indexRemove
public VType indexRemove(int index)
-
clear
public void clear()
-
release
public void release()
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
equalElements
protected boolean equalElements(LongObjectHashMap<?> other)
Return true if all keys of some other container exist in this container.
-
ensureCapacity
public void ensureCapacity(int expectedElements)
Ensure this container can hold at least the given number of keys (entries) without resizing its buffers.- Parameters:
expectedElements
- The total number of keys, inclusive.
-
nextIterationSeed
protected int nextIterationSeed()
Provides the next iteration seed used to build the iteration starting slot and offset increment. This method does not need to be synchronized, what matters is that each thread gets a sequence of varying seeds.
-
iterator
public Iterator<LongObjectHashMap.LongObjectCursor<VType>> iterator()
-
ramBytesUsed
public long ramBytesUsed()
Description copied from interface:Accountable
Return the memory usage of this object in bytes. Negative values are illegal.- Specified by:
ramBytesUsed
in interfaceAccountable
-
keys
public LongObjectHashMap.KeysContainer keys()
Returns a specialized view of the keys of this associated container.
-
values
public LongObjectHashMap.ValuesContainer values()
- Returns:
- Returns a container with all values stored in this map.
-
clone
public LongObjectHashMap<VType> clone()
-
toString
public String toString()
Convert the contents of this map to a human-friendly string.
-
from
public static <VType> LongObjectHashMap<VType> from(long[] keys, VType[] values)
Creates a hash map from two index-aligned arrays of key-value pairs.
-
hashKey
protected int hashKey(long key)
Returns a hash code for the given key.The output from this function should evenly distribute keys across the entire integer range.
-
verifyLoadFactor
protected double verifyLoadFactor(double loadFactor)
Validate load factor range and return it. Override and suppress if you need insane load factors.
-
rehash
protected void rehash(long[] fromKeys, VType[] fromValues)
Rehash from old buffers to new buffers.
-
allocateBuffers
protected void allocateBuffers(int arraySize)
Allocate new internal buffers. This method attempts to allocate and assign internal buffers atomically (either allocations succeed or not).
-
allocateThenInsertThenRehash
protected void allocateThenInsertThenRehash(int slot, long pendingKey, VType pendingValue)
This method is invoked when there is a new key/ value pair to be inserted into the buffers but there is not enough empty slots to do so.New buffers are allocated. If this succeeds, we know we can proceed with rehashing so we assign the pending element to the previous buffer (possibly violating the invariant of having at least one empty slot) and rehash all keys, substituting new buffers at the end.
-
shiftConflictingKeys
protected void shiftConflictingKeys(int gapSlot)
Shift all the slot-conflicting keys and values allocated to (and including)slot
.
-
-