Package com.illumon.iris.db.v2.utils
Class StaticSingleValueRedirectionIndexImpl
java.lang.Object
com.illumon.iris.db.v2.utils.StaticSingleValueRedirectionIndexImpl
- All Implemented Interfaces:
RedirectionIndex
,SingleValueRedirectionIndex
public class StaticSingleValueRedirectionIndexImpl
extends Object
implements SingleValueRedirectionIndex
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.utils.RedirectionIndex
RedirectionIndex.Factory, RedirectionIndex.FillContext
-
Field Summary
Fields inherited from interface com.illumon.iris.db.v2.utils.RedirectionIndex
DEFAULT_FILL_INSTANCE, EMPTY_CONTEXT, FACTORY, USE_LOCK_FREE_IMPL_PROPERTY_NAME
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
ensureUpdateCapacity
(int capacity) Ensure that there is enough space to perform at least 'capacity' updates.void
fillChunk
(RedirectionIndex.FillContext fillContext, WritableLongChunk<Attributes.KeyIndices> mappedKeysOut, OrderedKeys keysToMap) Lookup each element in OrderedKeys and write the result to mappedKeysOutvoid
fillPrevChunk
(RedirectionIndex.FillContext fillContext, WritableLongChunk<Attributes.KeyIndices> mappedKeysOut, OrderedKeys keysToMap) long
get
(long key) Get the current inner mapping for the specified key.long
getPrev
(long key) Get the previous mapping for the specified keylong
getValue()
long
put
(long key, long index) Insert a mapping from key to inner index into this redirection.long
remove
(long leftIndex) Remove the specified mapping from the redirectionvoid
setValue
(long value) void
Indicate to the implementation that it should track changes with previous values for ticking updates.toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.illumon.iris.db.v2.utils.RedirectionIndex
applyShift, ascendingMapping, fillChunkUnordered, fillFromChunk, makeFillContext, makeFillFromContext, putVoid, removeAll, removeAllUnordered, removeVoid
-
Constructor Details
-
StaticSingleValueRedirectionIndexImpl
public StaticSingleValueRedirectionIndexImpl(long value)
-
-
Method Details
-
put
public long put(long key, long index) Description copied from interface:RedirectionIndex
Insert a mapping from key to inner index into this redirection.- Specified by:
put
in interfaceRedirectionIndex
- Parameters:
key
- the key to be mappedindex
- the index the key should be mapped to on the inner source- Returns:
- the previous mapping for the specified key, or
ReadOnlyIndex.NULL_KEY
if there was none.
-
get
public long get(long key) Description copied from interface:RedirectionIndex
Get the current inner mapping for the specified key.- Specified by:
get
in interfaceRedirectionIndex
- Parameters:
key
- the key to find a mapping for.- Returns:
- the current mapping for the specified key, or
ReadOnlyIndex.NULL_KEY
if there was none.
-
getPrev
public long getPrev(long key) Description copied from interface:RedirectionIndex
Get the previous mapping for the specified key- Specified by:
getPrev
in interfaceRedirectionIndex
- Parameters:
key
- the key to locate a mapping for- Returns:
- the mapped value or
ReadOnlyIndex.NULL_KEY
if none existed.
-
startTrackingPrevValues
public void startTrackingPrevValues()Description copied from interface:RedirectionIndex
Indicate to the implementation that it should track changes with previous values for ticking updates.- Specified by:
startTrackingPrevValues
in interfaceRedirectionIndex
-
remove
public long remove(long leftIndex) Description copied from interface:RedirectionIndex
Remove the specified mapping from the redirection- Specified by:
remove
in interfaceRedirectionIndex
- Parameters:
leftIndex
- the index to unmap.- Returns:
- the previous mapping or
ReadOnlyIndex.NULL_KEY
if none existed.
-
ensureUpdateCapacity
public void ensureUpdateCapacity(int capacity) Description copied from interface:RedirectionIndex
Ensure that there is enough space to perform at least 'capacity' updates.- Specified by:
ensureUpdateCapacity
in interfaceRedirectionIndex
- Parameters:
capacity
- the capacity of the update
-
toString
-
fillChunk
public void fillChunk(@NotNull RedirectionIndex.FillContext fillContext, @NotNull WritableLongChunk<Attributes.KeyIndices> mappedKeysOut, @NotNull OrderedKeys keysToMap) Description copied from interface:RedirectionIndex
Lookup each element in OrderedKeys and write the result to mappedKeysOut- Specified by:
fillChunk
in interfaceRedirectionIndex
- Parameters:
fillContext
- the RedirectionIndex FillContextmappedKeysOut
- the result chunkkeysToMap
- the keys to lookup in this redirection index
-
fillPrevChunk
public void fillPrevChunk(@NotNull RedirectionIndex.FillContext fillContext, @NotNull WritableLongChunk<Attributes.KeyIndices> mappedKeysOut, @NotNull OrderedKeys keysToMap) - Specified by:
fillPrevChunk
in interfaceRedirectionIndex
-
setValue
public void setValue(long value) - Specified by:
setValue
in interfaceSingleValueRedirectionIndex
-
getValue
public long getValue()- Specified by:
getValue
in interfaceSingleValueRedirectionIndex
-