Package com.illumon.iris.db.v2.utils
Class IntColumnSourceRedirectionIndex
java.lang.Object
com.illumon.iris.db.v2.utils.IntColumnSourceRedirectionIndex
- All Implemented Interfaces:
RedirectionIndex
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.utils.RedirectionIndex
RedirectionIndex.Factory
-
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 keymakeFillContext
(int chunkSize, SharedContext sharedContext) long
put
(long key, long index) Insert a mapping from key to inner index into this redirection.void
putVoid
(long key, long index) Like put, but we do not care about a return value.long
remove
(long key) Remove the specified mapping from the redirectionvoid
removeAll
(OrderedKeys keys) Remove all the keys contained in theOrderedKeys
from this redirectionvoid
removeVoid
(long key) Like remove, but we do not care about a return value.void
Indicate to the implementation that it should track changes with previous values for ticking updates.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.illumon.iris.db.v2.utils.RedirectionIndex
applyShift, ascendingMapping, fillChunkUnordered, fillFromChunk, makeFillFromContext, removeAllUnordered
-
Constructor Details
-
IntColumnSourceRedirectionIndex
-
-
Method Details
-
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
-
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.
-
putVoid
public void putVoid(long key, long index) Description copied from interface:RedirectionIndex
Like put, but we do not care about a return value.- Specified by:
putVoid
in interfaceRedirectionIndex
- Parameters:
key
- the key to putindex
- the inner value to insert into the redirection index
-
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.
-
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
-
remove
public long remove(long key) Description copied from interface:RedirectionIndex
Remove the specified mapping from the redirection- Specified by:
remove
in interfaceRedirectionIndex
- Parameters:
key
- the index to unmap.- Returns:
- the previous mapping or
ReadOnlyIndex.NULL_KEY
if none existed.
-
removeVoid
public void removeVoid(long key) Description copied from interface:RedirectionIndex
Like remove, but we do not care about a return value.- Specified by:
removeVoid
in interfaceRedirectionIndex
- Parameters:
key
- the key to remove
-
removeAll
Description copied from interface:RedirectionIndex
Remove all the keys contained in theOrderedKeys
from this redirection- Specified by:
removeAll
in interfaceRedirectionIndex
- Parameters:
keys
- the keys to remove.
-
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
-