Package com.illumon.iris.db.v2.sources
Class BooleanArraySource
java.lang.Object
com.illumon.iris.db.v2.sources.AbstractColumnSource<T>
com.illumon.iris.db.v2.sources.AbstractDeferredGroupingColumnSource<T>
com.illumon.iris.db.v2.sources.ArrayBackedColumnSource<T>
com.illumon.iris.db.v2.sources.BooleanArraySource
- All Implemented Interfaces:
ChunkSource<Attributes.Values>
,ChunkSource.WithPrev<Attributes.Values>
,DefaultChunkSource<Attributes.Values>
,DefaultChunkSource.WithPrev<Attributes.Values>
,FillContextMaker
,GetContextMaker
,ColumnSource<Boolean>
,ColumnSourceGetDefaults.ForBoolean
,DeferredGroupingColumnSource<Boolean>
,ElementSource<Boolean>
,FillUnordered
,MutableColumnSource<Boolean>
,MutableColumnSourceGetDefaults.ForBoolean
,Releasable
,WritableChunkSink<Attributes.Values>
,WritableSource<Boolean>
,TupleExporter<Boolean>
,TupleSource<Boolean>
,ShiftData.ShiftCallback
,Serializable
public class BooleanArraySource extends ArrayBackedColumnSource<T> implements MutableColumnSourceGetDefaults.ForBoolean
An ArrayBackedColumnSource of boolean values, each stored as a byte encoded with
BooleanUtils.booleanAsByte(java.lang.Boolean)
.- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class com.illumon.iris.db.v2.sources.AbstractColumnSource
AbstractColumnSource.DefaultedImmutable<DATA_TYPE>, AbstractColumnSource.DefaultedMutable<DATA_TYPE>, AbstractColumnSource.IsSerializable
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource
ChunkSource.FillContext, ChunkSource.GetContext, ChunkSource.WithPrev<ATTR extends Attributes.Any>
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource
DefaultChunkSource.SupportsContiguousGet<ATTR extends Attributes.Any>, DefaultChunkSource.WithPrev<ATTR extends Attributes.Any>
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.sources.WritableChunkSink
WritableChunkSink.FillFromContext
-
Field Summary
Fields Modifier and Type Field Description protected UpdateCommitter<com.illumon.iris.db.v2.sources.ArraySourceHelper<T,UArray>>
prevFlusher
The presence of a prevFlusher means that this ArraySource wants to track previous values.Fields inherited from class com.illumon.iris.db.v2.sources.AbstractColumnSource
componentType, groupToRange, type
Fields inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource
DEFAULT_FILL_INSTANCE, ZERO_LENGTH_CHUNK_SOURCE_ARRAY
Fields inherited from interface com.illumon.iris.db.v2.sources.chunk.ChunkSource.WithPrev
ZERO_LENGTH_CHUNK_SOURCE_WITH_PREV_ARRAY
Fields inherited from interface com.illumon.iris.db.v2.sources.ColumnSource
ZERO_LENGTH_COLUMN_SOURCE_ARRAY
Fields inherited from interface com.illumon.iris.db.v2.sources.WritableChunkSink
DEFAULT_FILL_FROM_INSTANCE
Fields inherited from interface com.illumon.iris.db.v2.sources.WritableSource
ZERO_LENGTH_WRITABLE_SOURCE_ARRAY
-
Constructor Summary
Constructors Constructor Description BooleanArraySource()
-
Method Summary
Modifier and Type Method Description <ALTERNATE_DATA_TYPE>
booleanallowsReinterpret(Class<ALTERNATE_DATA_TYPE> alternateDataType)
Test if a reinterpret call will succeed.void
copy(ColumnSource<Boolean> sourceColumn, long sourceKey, long destKey)
protected <ALTERNATE_DATA_TYPE>
ColumnSource<ALTERNATE_DATA_TYPE>doReinterpret(Class<ALTERNATE_DATA_TYPE> alternateDataType)
Supply allowed reinterpret results.void
ensureCapacity(long capacity)
void
ensureCapacity(long capacity, boolean nullFill)
void
fillChunk(ChunkSource.FillContext context, WritableChunk<? super Attributes.Values> destination, OrderedKeys orderedKeys)
Populates the given destination chunk with data corresponding to the keys from the givenOrderedKeys
.void
fillFromChunk(WritableChunkSink.FillFromContext context, Chunk<? extends Attributes.Values> src, OrderedKeys orderedKeys)
Our default, inefficient, implementation.void
fillFromChunkUnordered(WritableChunkSink.FillFromContext context, Chunk<? extends Attributes.Values> src, LongChunk<Attributes.KeyIndices> keys)
Fills the ChunkSink with data from the source, with data corresponding to the keys from the given key chunk.void
fillPrevChunk(ChunkSource.FillContext context, WritableChunk<? super Attributes.Values> destination, OrderedKeys orderedKeys)
Populates the given destination chunk with data corresponding to the keys from the givenOrderedKeys
.protected void
fillSparseChunk(WritableChunk<? super Attributes.Values> destGeneric, OrderedKeys indices)
protected void
fillSparseChunkUnordered(WritableChunk<? super Attributes.Values> destGeneric, LongChunk<? extends Attributes.KeyIndices> indices)
protected void
fillSparsePrevChunk(WritableChunk<? super Attributes.Values> destGeneric, OrderedKeys indices)
protected void
fillSparsePrevChunkUnordered(WritableChunk<? super Attributes.Values> destGeneric, LongChunk<? extends Attributes.KeyIndices> indices)
Boolean
get(long index)
Get the value from the source.byte
getAndSetUnsafe(long index, byte newValue)
Boolean
getAndSetUnsafe(long index, Boolean newValue)
byte
getByte(long index)
Get the value at the index as a byte.long
getCapacity()
Get the capacity of this column source.Chunk<Attributes.Values>
getChunk(ChunkSource.GetContext context, OrderedKeys orderedKeys)
Returns a chunk of data corresponding to the keys from the givenOrderedKeys
.Boolean
getPrev(long index)
Get the previous value at the index.byte
getPrevByte(long index)
Get the previous value at the index as a byte.Chunk<Attributes.Values>
getPrevChunk(ChunkSource.GetContext context, OrderedKeys orderedKeys)
Returns a chunk of previous data corresponding to the keys from the givenOrderedKeys
.Boolean
getUnsafe(long index)
ChunkSource.FillContext
makeFillContext(int chunkCapacity, SharedContext sharedContext)
Allocate a newChunkSource.FillContext
for filling chunks from thisFillContextMaker
, typically aChunkSource
.WritableChunkSink.FillFromContext
makeFillFromContext(int chunkCapacity)
Provide a default, emptyWritableChunkSink.FillFromContext
for use with our defaultWritableSource.fillFromChunk(com.illumon.iris.db.v2.sources.WritableChunkSink.FillFromContext, com.illumon.iris.db.v2.sources.chunk.Chunk<? extends com.illumon.iris.db.v2.sources.chunk.Attributes.Values>, com.illumon.iris.db.v2.utils.OrderedKeys)
.long
resetWritableChunkToBackingStore(ResettableWritableChunk chunk, long position)
Resets the given chunk to provide a write-through reference to our backing array.void
set(long key, byte value)
void
set(long key, Boolean value)
void
setNull(long key)
void
shift(long start, long end, long offset)
void
startTrackingPrevValues()
Force my inheritors to implement this method, rather than taking the interface default.Methods inherited from class com.illumon.iris.db.v2.sources.ArrayBackedColumnSource
fillChunkUnordered, fillPrevChunkUnordered, getDateTimeMemoryColumnSource, getImmutableMemoryColumnSource, getImmutableMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, getMemoryColumnSource, isImmutable, set, set, set, set, set, set
Methods inherited from class com.illumon.iris.db.v2.sources.AbstractDeferredGroupingColumnSource
getGroupingProvider, getGroupToRange, getGroupToRange, setGroupingProvider
Methods inherited from class com.illumon.iris.db.v2.sources.AbstractColumnSource
computeFlattenedGroupings, defaultFillChunk, forEachGroup, forEachResponsiveGroup, getComponentType, getNativeType, getType, getValuesMapping, groupingToFlatSources, groupingToFlatSources, groupingToFlatSources, isSerializable, match, reinterpret, setGroupToRange
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.sources.ColumnSource
cast, createPreviousTuple, createTuple, createTupleFromValues, exportElement, exportElement, exportToExternalKey, getColumnSources, getComponentType, getGroupToRange, getGroupToRange, getNativeType, getPrevSource, getType, getValuesMapping, match, reinterpret, releaseCachedResources
Methods inherited from interface com.illumon.iris.db.v2.sources.ColumnSourceGetDefaults.ForBoolean
getBoolean, getChar, getDouble, getFloat, getInt, getLong, getShort
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource
getChunk, getChunkByFilling, makeFillContext, makeGetContext
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.DefaultChunkSource.WithPrev
getPrevChunk, getPrevChunkByFilling
Methods inherited from interface com.illumon.iris.db.v2.sources.DeferredGroupingColumnSource
setGroupToRange
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.FillContextMaker
makeFillContext
Methods inherited from interface com.illumon.iris.db.v2.sources.chunk.GetContextMaker
makeGetContext
Methods inherited from interface com.illumon.iris.db.v2.sources.MutableColumnSourceGetDefaults.ForBoolean
getPrevBoolean, getPrevChar, getPrevDouble, getPrevFloat, getPrevInt, getPrevLong, getPrevShort
Methods inherited from interface com.illumon.iris.db.v2.tuples.TupleExporter
exportElementReinterpreted
Methods inherited from interface com.illumon.iris.db.v2.tuples.TupleSource
createTupleFromReinterpretedValues
-
Field Details
-
prevFlusher
protected transient UpdateCommitter<com.illumon.iris.db.v2.sources.ArraySourceHelper<T,UArray>> prevFlusherThe presence of a prevFlusher means that this ArraySource wants to track previous values. If prevFlusher is null, the ArraySource does not want (or does not yet want) to track previous values. Deserialized ArraySources never track previous values.
-
-
Constructor Details
-
BooleanArraySource
public BooleanArraySource()
-
-
Method Details
-
startTrackingPrevValues
public void startTrackingPrevValues()Force my inheritors to implement this method, rather than taking the interface default.- Specified by:
startTrackingPrevValues
in interfaceColumnSource<Boolean>
-
ensureCapacity
public void ensureCapacity(long capacity)- Specified by:
ensureCapacity
in interfaceWritableSource<Boolean>
-
ensureCapacity
public void ensureCapacity(long capacity, boolean nullFill)- Specified by:
ensureCapacity
in classArrayBackedColumnSource<Boolean>
-
set
- Specified by:
set
in interfaceWritableSource<Boolean>
-
set
public void set(long key, byte value)- Specified by:
set
in interfaceWritableSource<Boolean>
- Overrides:
set
in classArrayBackedColumnSource<Boolean>
-
setNull
public void setNull(long key)- Specified by:
setNull
in interfaceWritableSource<Boolean>
-
get
Description copied from interface:ElementSource
Get the value from the source. This may return boxed values for basic types.- Specified by:
get
in interfaceElementSource<Boolean>
- Parameters:
index
- the location in index space to get the value from.- Returns:
- the value at the index, potentially null.
-
getUnsafe
-
getAndSetUnsafe
-
getAndSetUnsafe
public final byte getAndSetUnsafe(long index, byte newValue) -
getByte
public byte getByte(long index)Description copied from interface:ElementSource
Get the value at the index as a byte.- Specified by:
getByte
in interfaceColumnSourceGetDefaults.ForBoolean
- Specified by:
getByte
in interfaceElementSource<Boolean>
- Parameters:
index
- the location in index space to get the value from.- Returns:
- the boolean at the index, null values are represented by
QueryConstants.NULL_BYTE
-
getPrevByte
public byte getPrevByte(long index)Description copied from interface:ElementSource
Get the previous value at the index as a byte. SeeElementSource.getPrev(long)
for more details.- Specified by:
getPrevByte
in interfaceElementSource<Boolean>
- Specified by:
getPrevByte
in interfaceMutableColumnSourceGetDefaults.ForBoolean
- Parameters:
index
- the location in index space to get the previous value from.- Returns:
- the previous boolean at the index, null values are represented by
QueryConstants.NULL_BYTE
-
getPrev
Description copied from interface:ElementSource
Get the previous value at the index. Previous values are used during anLTM
update
cycle to process changes in data. Duringnormal
operation previous values will be identical tocurrent
values.- Specified by:
getPrev
in interfaceElementSource<Boolean>
- Parameters:
index
- the location in index space to get the value from.- Returns:
- the previous value at the index, or null.
-
copy
- Specified by:
copy
in interfaceWritableSource<Boolean>
-
shift
public void shift(long start, long end, long offset)- Specified by:
shift
in interfaceShiftData.ShiftCallback
- Overrides:
shift
in classArrayBackedColumnSource<Boolean>
-
fillSparseChunk
protected void fillSparseChunk(@NotNull WritableChunk<? super Attributes.Values> destGeneric, @NotNull OrderedKeys indices)- Specified by:
fillSparseChunk
in classArrayBackedColumnSource<Boolean>
-
fillSparsePrevChunk
protected void fillSparsePrevChunk(@NotNull WritableChunk<? super Attributes.Values> destGeneric, @NotNull OrderedKeys indices)- Specified by:
fillSparsePrevChunk
in classArrayBackedColumnSource<Boolean>
-
fillSparseChunkUnordered
protected void fillSparseChunkUnordered(@NotNull WritableChunk<? super Attributes.Values> destGeneric, @NotNull LongChunk<? extends Attributes.KeyIndices> indices)- Specified by:
fillSparseChunkUnordered
in classArrayBackedColumnSource<Boolean>
-
fillSparsePrevChunkUnordered
protected void fillSparsePrevChunkUnordered(@NotNull WritableChunk<? super Attributes.Values> destGeneric, @NotNull LongChunk<? extends Attributes.KeyIndices> indices)- Specified by:
fillSparsePrevChunkUnordered
in classArrayBackedColumnSource<Boolean>
-
fillChunk
public void fillChunk(@NotNull ChunkSource.FillContext context, @NotNull WritableChunk<? super Attributes.Values> destination, @NotNull OrderedKeys orderedKeys)Description copied from interface:ChunkSource
Populates the given destination chunk with data corresponding to the keys from the givenOrderedKeys
.- Specified by:
fillChunk
in interfaceChunkSource<Attributes.Values>
- Overrides:
fillChunk
in classArrayBackedColumnSource<Boolean>
- Parameters:
context
- A context containing all mutable/state related data used in retrieving the Chunk.destination
- The chunk to be populated according toorderedKeys
. No assumptions shall be made about the size of the chunk shall be made. The chunk will be populated from position [0,orderedKeys.size()).orderedKeys
- AnOrderedKeys
representing the keys to be fetched
-
resetWritableChunkToBackingStore
public long resetWritableChunkToBackingStore(@NotNull ResettableWritableChunk chunk, long position)Description copied from class:ArrayBackedColumnSource
Resets the given chunk to provide a write-through reference to our backing array. Note: This is unsafe to use if previous tracking has been enabled!- Specified by:
resetWritableChunkToBackingStore
in classArrayBackedColumnSource<Boolean>
- Parameters:
chunk
- the writable chunk to reset to our backing array.position
- position that we require- Returns:
- the first position addressable by the chunk
-
fillPrevChunk
public void fillPrevChunk(@NotNull ChunkSource.FillContext context, @NotNull WritableChunk<? super Attributes.Values> destination, @NotNull OrderedKeys orderedKeys)Description copied from interface:ChunkSource.WithPrev
Populates the given destination chunk with data corresponding to the keys from the givenOrderedKeys
.- Specified by:
fillPrevChunk
in interfaceChunkSource.WithPrev<Attributes.Values>
- Parameters:
context
- A context containing all mutable/state related data used in retrieving the Chunk.destination
- The chunk to be populated according toorderedKeys
. No assumptions shall be made about the size of the chunk shall be made. The chunk will be populated from position [0,orderedKeys.size()).orderedKeys
- AnOrderedKeys
representing the keys to be fetched
-
getChunk
public Chunk<Attributes.Values> getChunk(@NotNull ChunkSource.GetContext context, @NotNull OrderedKeys orderedKeys)Description copied from interface:ChunkSource
Returns a chunk of data corresponding to the keys from the givenOrderedKeys
.- Specified by:
getChunk
in interfaceChunkSource<Attributes.Values>
- Specified by:
getChunk
in interfaceDefaultChunkSource<Attributes.Values>
- Overrides:
getChunk
in classArrayBackedColumnSource<Boolean>
- Parameters:
context
- A context containing all mutable/state related data used in retrieving the Chunk. In particular, the Context may be used to provide a Chunk data poolorderedKeys
- AnOrderedKeys
representing the keys to be fetched- Returns:
- A chunk of data corresponding to the keys from the given
OrderedKeys
-
getPrevChunk
public Chunk<Attributes.Values> getPrevChunk(@NotNull ChunkSource.GetContext context, @NotNull OrderedKeys orderedKeys)Description copied from interface:ChunkSource.WithPrev
Returns a chunk of previous data corresponding to the keys from the givenOrderedKeys
.- Specified by:
getPrevChunk
in interfaceChunkSource.WithPrev<Attributes.Values>
- Specified by:
getPrevChunk
in interfaceDefaultChunkSource.WithPrev<Attributes.Values>
- Parameters:
context
- A context containing all mutable/state related data used in retrieving the Chunk. In particular, the Context may be used to provide a Chunk data poolorderedKeys
- AnOrderedKeys
representing the keys to be fetched- Returns:
- A chunk of data corresponding to the keys from the given
OrderedKeys
-
allowsReinterpret
public <ALTERNATE_DATA_TYPE> boolean allowsReinterpret(@NotNull Class<ALTERNATE_DATA_TYPE> alternateDataType)Description copied from interface:ColumnSource
Test if a reinterpret call will succeed.- Specified by:
allowsReinterpret
in interfaceColumnSource<Boolean>
- Overrides:
allowsReinterpret
in classAbstractColumnSource<Boolean>
- Parameters:
alternateDataType
- The alternative type to consider- Returns:
- If a reinterpret on this column source with the supplied alternateDataType will succeed.
-
doReinterpret
protected <ALTERNATE_DATA_TYPE> ColumnSource<ALTERNATE_DATA_TYPE> doReinterpret(@NotNull Class<ALTERNATE_DATA_TYPE> alternateDataType)Description copied from class:AbstractColumnSource
Supply allowed reinterpret results. The default implementation handles the most common case to avoid code duplication.- Overrides:
doReinterpret
in classAbstractColumnSource<Boolean>
- Parameters:
alternateDataType
- The alternate data type- Returns:
- The resulting
ColumnSource
-
fillFromChunkUnordered
public void fillFromChunkUnordered(@NotNull WritableChunkSink.FillFromContext context, @NotNull Chunk<? extends Attributes.Values> src, @NotNull LongChunk<Attributes.KeyIndices> keys)Description copied from interface:WritableChunkSink
Fills the ChunkSink with data from the source, with data corresponding to the keys from the given key chunk.- Specified by:
fillFromChunkUnordered
in interfaceWritableChunkSink<Attributes.Values>
- Specified by:
fillFromChunkUnordered
in interfaceWritableSource<Boolean>
- Parameters:
context
- A context containing all mutable/state related data used in writing the Chunk.src
- The source of the dataorderedKeys
keys
- ALongChunk
representing the keys to be written
-
makeFillContext
Description copied from interface:FillContextMaker
Allocate a newChunkSource.FillContext
for filling chunks from thisFillContextMaker
, typically aChunkSource
.- Parameters:
chunkCapacity
- The maximum size of anyWritableChunk
that will be filled with this contextsharedContext
- Shared store of intermediate results.- Returns:
- A context for use with fill operations
-
getCapacity
public final long getCapacity()Get the capacity of this column source. This number is one higher than the highest key that may be accessed (read or written).- Returns:
- The capacity of this column source
-
makeFillFromContext
Description copied from interface:WritableSource
Provide a default, emptyWritableChunkSink.FillFromContext
for use with our defaultWritableSource.fillFromChunk(com.illumon.iris.db.v2.sources.WritableChunkSink.FillFromContext, com.illumon.iris.db.v2.sources.chunk.Chunk<? extends com.illumon.iris.db.v2.sources.chunk.Attributes.Values>, com.illumon.iris.db.v2.utils.OrderedKeys)
. -
fillFromChunk
public void fillFromChunk(@NotNull WritableChunkSink.FillFromContext context, @NotNull Chunk<? extends Attributes.Values> src, @NotNull OrderedKeys orderedKeys)Description copied from interface:WritableSource
Our default, inefficient, implementation. Inheritors who care should provide a better implementation.- Parameters:
context
- A context containing all mutable/state related data used in writing the Chunk.src
- The source of the dataorderedKeys
orderedKeys
- AnOrderedKeys
representing the keys to be written
-