Class RunContainer
java.lang.Object
io.deephaven.engine.rowset.impl.rsp.container.Container
io.deephaven.engine.rowset.impl.rsp.container.RunContainer
This container takes the form of runs of consecutive values (effectively, run-length encoding).
Adding and removing content from this container might make it wasteful so regular calls to "runOptimize" might be warranted.
-
Field Summary
Fields inherited from class io.deephaven.engine.rowset.impl.rsp.container.Container
ContainerNames, DEBUG, MAX_RANGE, MAX_VALUE, threadLocalBuf
-
Constructor Summary
ModifierConstructorDescriptionCreate a container with default capacityRunContainer
(int runsCapacity) Create an array container with specified initial capacityRunContainer
(int start, int end) Create an run container with a run of ones from start to end.RunContainer
(int start1, int end1, int start2, int end2) protected
RunContainer
(ArrayContainer arr, int nbrRunsCapacity) protected
-
Method Summary
Modifier and TypeMethodDescriptionadd
(int begin, int end) Return a new container with all shorts in [begin,end) added using an unsigned interpretation.Computes the bitwise AND of this container with another (intersection).Computes the bitwise AND of this container with another (intersection).and
(RunContainer x) Computes the bitwise AND of this container with another (intersection).Computes the bitwise ANDNOT of this container with another (difference).Computes the bitwise ANDNOT of this container with another (difference).Computes the bitwise ANDNOT of this container with another (difference).andRange
(int start, int end) Calculate the intersection of this container and a range, in a new container.int
int
void
clear()
boolean
contains
(int rangeStart, int rangeEnd) Checks whether the container contains the entire rangeboolean
contains
(short x) Checks whether the contain contains the provided valueprotected boolean
contains
(ArrayContainer arrayContainer) protected boolean
contains
(BitmapContainer bitmapContainer) protected boolean
contains
(RunContainer runContainer) cowRef()
Get a shared, copy-on-write copy of an existing container.deepCopy()
Get a full deep copy of the container in a new container object.protected void
ensureCapacity
(int minNbRuns) int
find
(short x) Searches for the specified short valueboolean
findRanges
(RangeConsumer outPositions, RangeIterator inValues, int maxPos) As find but for all the values in a range.int
first()
Get the first integer held in the containerboolean
forEach
(int rankOffset, ShortConsumer sc) Like forEach, but skipping the first rankOffset elements.boolean
forEach
(ShortConsumer sc) Iterate through the values of this container in order and pass them along to the ShortConsumer.boolean
forEachRange
(int rankOffset, ShortRangeConsumer sc) int
Computes the distinct number of short values in the container.short
getLength
(int index) Gets the length of the run at the index.int
getLengthAsInt
(int index) Iterator to visit the short values in the container in descending order.getShortBatchIterator
(int skipCount) Gets an iterator to visit the contents of the container in batches of short valuesIterator to visit the short values in the container in ascending order.getShortRangeIterator
(int initialSeek) Iterator to visit the short values in container in [start, end) ranges, in increasing order of start values.short
getValue
(int index) Gets the value of the first element of the run at the index.int
getValueAsInt
(int index) iadd
(int begin, int end) Add all shorts in [begin,end) using an unsigned interpretation.iaddUnsafe
(int begin, int end, int searchBeginRunIndex) Computes the in-place bitwise AND of this container with another (intersection).Computes the in-place bitwise AND of this container with another (intersection).iand
(RunContainer x) Computes the in-place bitwise AND of this container with another (intersection).Computes the in-place bitwise ANDNOT of this container with another (difference).Computes the in-place bitwise ANDNOT of this container with another (difference).Computes the in-place bitwise ANDNOT of this container with another (difference).iandRange
(int start, int end) Calculate the intersection of this container and a range; may overwrite the existing container or return a new one.iappend
(int begin, int end) Add all shorts in [begin,end) using an unsigned interpretation.iflip
(short x) Add a short to the container if it is not present, otherwise remove it.inot
(int rangeStart, int rangeEnd) Computes the in-place bitwise NOT of this container (complement).Computes the in-place bitwise OR of this container with another (union).Computes the in-place bitwise OR of this container with another (union).ior
(RunContainer x) Computes the in-place bitwise OR of this container with another (union).iremove
(int begin, int end) Remove shorts in [begin,end) using an unsigned interpretation.boolean
Checks whether the container spans the full 2^16 range (ie, contains every short value) This is an O(1) operation in all container types (some do not cache cardinality).boolean
isEmpty()
Checks whether the container is empty or not.iset
(short k) Insert a short to the container.boolean
isShared()
boolean
Checks whether the container has exactly one element (meaningful since cardinality may not be cached in some Container types, eg, Run).iunset
(short x) Create a new container with the short removed.Computes the in-place bitwise XOR of this container with another (symmetric difference).Computes the in-place bitwise XOR of this container with another (symmetric difference).ixor
(RunContainer x) Computes the in-place bitwise XOR of this container with another (symmetric difference).int
last()
Get the last integer held in the containerstatic RunContainer
makeByWrapping
(short[] valueslength, int nbrruns, int cardinality) Construct a new RunContainer using the provided array.int
nextValue
(short fromValue) Gets the first value greater than or equal to the lower bound, or -1 if no such value exists.not
(int rangeStart, int rangeEnd) Computes the bitwise NOT of this container (complement).int
or
(ArrayContainer x) Computes the bitwise OR of this container with another (union).Computes the bitwise OR of this container with another (union).or
(RunContainer x) Computes the bitwise OR of this container with another (union).boolean
boolean
boolean
boolean
overlapsRange
(int rangeStart, int rangeEnd) int
rank
(short lowbits) Rank returns the number of integers that are smaller or equal to x (Rank(infinity) would be GetCardinality()).remove
(int begin, int end) Return a new container with all shorts in [begin,end) remove using an unsigned interpretation.Convert to Array or Bitmap container if the serialized form would be shorter.short
select
(int j) Return the jth valueselect
(int startRank, int endRank) Returns a new container with all values between ranks startPos and endPos.static RunContainer
select
(RunContainer src, int startRank, int endRank) void
selectRanges
(RangeConsumer outValues, RangeIterator inPositions) As select but for all the positions in a range.set
(short k) Return a new container with the short given as parameter added.void
protected static int
sizeInBytes
(int numberOfRuns) boolean
boolean
boolean
Convert the current container to a BitmapContainer, if a conversion is needed.void
trim()
If possible, recover wasted memory.unset
(short x) Remove the short from this container.void
validate()
Computes the bitwise XOR of this container with another (symmetric difference).Computes the bitwise XOR of this container with another (symmetric difference).xor
(RunContainer x) Computes the bitwise XOR of this container with another (symmetric difference).Methods inherited from class io.deephaven.engine.rowset.impl.rsp.container.Container
and, andNot, check, contains, empty, full, getContainerName, iand, iandNot, ifDebugValidate, intersects, intersects, ior, isFull, ixor, numberOfRanges, or, overlaps, rangeOfOnes, remove, singleRange, singleton, subsetOf, toString, twoRanges, twoValues, xor
-
Constructor Details
-
RunContainer
public RunContainer()Create a container with default capacity -
RunContainer
-
RunContainer
-
RunContainer
public RunContainer(int start, int end) Create an run container with a run of ones from start to end.- Parameters:
start
- first indexend
- last index (range is exclusive)
-
RunContainer
public RunContainer(int start1, int end1, int start2, int end2) -
RunContainer
-
RunContainer
public RunContainer(int runsCapacity) Create an array container with specified initial capacity- Parameters:
runsCapacity
- The initial capacity of the container in number of runs.
-
-
Method Details
-
sizeInBytes
protected static int sizeInBytes(int numberOfRuns) -
select
-
makeByWrapping
Construct a new RunContainer using the provided array. The container takes ownership of the array.- Parameters:
valueslength
- array with valid runs, in increasing unsigned short order. The container takes ownership of this array.nbrruns
- number of runs (the array should contain 2*n elements).cardinality
- total cardinality in the runs.
-
iadd
Description copied from class:Container
Add all shorts in [begin,end) using an unsigned interpretation. May generate a new container. -
add
Description copied from class:Container
Return a new container with all shorts in [begin,end) added using an unsigned interpretation. -
iset
Description copied from class:Container
Insert a short to the container. May generate a new container. -
set
Description copied from class:Container
Return a new container with the short given as parameter added. -
and
Description copied from class:Container
Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected. -
and
Description copied from class:Container
Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected. -
and
Description copied from class:Container
Computes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected. -
andRange
Description copied from class:Container
Calculate the intersection of this container and a range, in a new container. The existing container is not modified. -
iandRange
Description copied from class:Container
Calculate the intersection of this container and a range; may overwrite the existing container or return a new one. -
andNot
Description copied from class:Container
Computes the bitwise ANDNOT of this container with another (difference). This container as well as the provided container are left unaffected. -
andNot
Description copied from class:Container
Computes the bitwise ANDNOT of this container with another (difference). This container as well as the provided container are left unaffected. -
andNot
Description copied from class:Container
Computes the bitwise ANDNOT of this container with another (difference). This container as well as the provided container are left unaffected. -
clear
public void clear() -
deepCopy
Description copied from class:Container
Get a full deep copy of the container in a new container object. -
cowRef
Description copied from class:Container
Get a shared, copy-on-write copy of an existing container. Mutations on the returned container will always return a copy and leave the original container unchanged.This operation allows for cheap read-only references to the same values, at the cost of an additional copy for any first mutation.
-
isEmpty
public boolean isEmpty()Description copied from class:Container
Checks whether the container is empty or not. -
isAllOnes
public boolean isAllOnes()Description copied from class:Container
Checks whether the container spans the full 2^16 range (ie, contains every short value) This is an O(1) operation in all container types (some do not cache cardinality). -
isSingleElement
public boolean isSingleElement()Description copied from class:Container
Checks whether the container has exactly one element (meaningful since cardinality may not be cached in some Container types, eg, Run).- Overrides:
isSingleElement
in classContainer
- Returns:
- true if the container contains exactly one element, false otherwise.
-
contains
public boolean contains(short x) Description copied from class:Container
Checks whether the contain contains the provided value -
contains
public boolean contains(int rangeStart, int rangeEnd) Description copied from class:Container
Checks whether the container contains the entire range -
contains
-
contains
-
contains
-
ensureCapacity
protected void ensureCapacity(int minNbRuns) -
iflip
Description copied from class:Container
Add a short to the container if it is not present, otherwise remove it. May generate a new container. -
getCardinality
public int getCardinality()Description copied from class:Container
Computes the distinct number of short values in the container. Can be expected to run in constant time.- Specified by:
getCardinality
in classContainer
- Returns:
- the cardinality
-
getLength
public short getLength(int index) Gets the length of the run at the index.- Parameters:
index
- the index of the run.- Returns:
- the length of the run at the index.
- Throws:
ArrayIndexOutOfBoundsException
- if index is negative or larger than the index of the last run.
-
getLengthAsInt
public int getLengthAsInt(int index) -
getReverseShortIterator
Description copied from class:Container
Iterator to visit the short values in the container in descending order.- Specified by:
getReverseShortIterator
in classContainer
- Returns:
- iterator
-
getShortIterator
Description copied from class:Container
Iterator to visit the short values in the container in ascending order.- Specified by:
getShortIterator
in classContainer
- Returns:
- iterator
-
getShortBatchIterator
Description copied from class:Container
Gets an iterator to visit the contents of the container in batches of short values- Specified by:
getShortBatchIterator
in classContainer
- Parameters:
skipCount
- number of elements to skip from the start of the container.- Returns:
- iterator
-
getShortRangeIterator
Description copied from class:Container
Iterator to visit the short values in container in [start, end) ranges, in increasing order of start values.- Specified by:
getShortRangeIterator
in classContainer
- Returns:
- iterator
-
getValue
public short getValue(int index) Gets the value of the first element of the run at the index.- Parameters:
index
- the index of the run.- Returns:
- the value of the first element of the run at the index.
- Throws:
ArrayIndexOutOfBoundsException
- if index is negative or larger than the index of the last run.
-
getValueAsInt
public int getValueAsInt(int index) -
iaddUnsafe
-
iappend
Description copied from class:Container
Add all shorts in [begin,end) using an unsigned interpretation. May generate a new container. The beginning of the range should be strictly greater than the last value already present in the container, if there is one. -
iand
Description copied from class:Container
Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
iand
Description copied from class:Container
Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
iand
Description copied from class:Container
Computes the in-place bitwise AND of this container with another (intersection). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
iandNot
Description copied from class:Container
Computes the in-place bitwise ANDNOT of this container with another (difference). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
iandNot
Description copied from class:Container
Computes the in-place bitwise ANDNOT of this container with another (difference). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
iandNot
Description copied from class:Container
Computes the in-place bitwise ANDNOT of this container with another (difference). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
inot
Description copied from class:Container
Computes the in-place bitwise NOT of this container (complement). Only those bits within the range are affected. The current container is generally modified. May generate a new container. -
ior
Description copied from class:Container
Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
ior
Description copied from class:Container
Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
ior
Description copied from class:Container
Computes the in-place bitwise OR of this container with another (union). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
iremove
Description copied from class:Container
Remove shorts in [begin,end) using an unsigned interpretation. May generate a new container. -
ixor
Description copied from class:Container
Computes the in-place bitwise XOR of this container with another (symmetric difference). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
ixor
Description copied from class:Container
Computes the in-place bitwise XOR of this container with another (symmetric difference). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
ixor
Description copied from class:Container
Computes the in-place bitwise XOR of this container with another (symmetric difference). The current container is generally modified, whereas the provided container (x) is unaffected. May generate a new container. -
not
Description copied from class:Container
Computes the bitwise NOT of this container (complement). Only those bits within the range are affected. This is equivalent to an xor with a range of ones for the given range. The current container is left unaffected. -
numberOfRuns
public int numberOfRuns() -
or
Description copied from class:Container
Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected. -
or
Description copied from class:Container
Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected. -
or
Description copied from class:Container
Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected. -
rank
public int rank(short lowbits) Description copied from class:Container
Rank returns the number of integers that are smaller or equal to x (Rank(infinity) would be GetCardinality()). -
remove
Description copied from class:Container
Return a new container with all shorts in [begin,end) remove using an unsigned interpretation. -
unset
Description copied from class:Container
Remove the short from this container. May create a new container. -
iunset
Description copied from class:Container
Create a new container with the short removed. -
runOptimize
Convert to Array or Bitmap container if the serialized form would be shorter. Exactly the same functionality as toEfficientContainer.- Specified by:
runOptimize
in classContainer
- Returns:
- the new container
-
select
public short select(int j) Description copied from class:Container
Return the jth value -
select
Description copied from class:Container
Returns a new container with all values between ranks startPos and endPos. -
find
public int find(short x) Description copied from class:Container
Searches for the specified short value- Specified by:
find
in classContainer
- Parameters:
x
- value to search for- Returns:
- Relative position of the value in the sorted set of elements in this container, in the range [0 ..
cardinality - 1]. If not present, (-(insertion point) - 1) similar to Array.binarySearch.
For values of x that
Container.contains(short)
returns true, this method returns the same value asContainer.rank(short)
.
-
selectRanges
Description copied from class:Container
As select but for all the positions in a range.- Specified by:
selectRanges
in classContainer
- Parameters:
outValues
- accept is called in this consumer for each resulting range.inPositions
- input iterator that provides the position ranges.
-
findRanges
Description copied from class:Container
As find but for all the values in a range.- Specified by:
findRanges
in classContainer
- Parameters:
outPositions
- accept is called in this consumer for each resulting position range.inValues
- input iterator that provides the key ranges; these must each exist in the container.maxPos
- maximum position to add to outPositions; values of position > maxPos are not added.- Returns:
- true if maxPos was reached, false otherwise.
-
trim
public void trim()Description copied from class:Container
If possible, recover wasted memory. -
xor
Description copied from class:Container
Computes the bitwise XOR of this container with another (symmetric difference). This container as well as the provided container are left unaffected. -
xor
Description copied from class:Container
Computes the bitwise XOR of this container with another (symmetric difference). This container as well as the provided container are left unaffected. -
xor
Description copied from class:Container
Computes the bitwise XOR of this container with another (symmetric difference). This container as well as the provided container are left unaffected. -
forEach
Description copied from class:Container
Iterate through the values of this container in order and pass them along to the ShortConsumer. -
forEach
Description copied from class:Container
Like forEach, but skipping the first rankOffset elements. -
forEachRange
- Specified by:
forEachRange
in classContainer
-
toBitmapContainer
Description copied from class:Container
Convert the current container to a BitmapContainer, if a conversion is needed. If the container is already a bitmap, the container is returned unchanged.When multiple container "merge" operations are done it might be more efficient to convert to bitmap first, and then at the end convert to the efficient container type, to avoid multiple container type conversions, since bitmap can always stay a bitmap.
- Specified by:
toBitmapContainer
in classContainer
- Returns:
- a bitmap container
-
nextValue
public int nextValue(short fromValue) Description copied from class:Container
Gets the first value greater than or equal to the lower bound, or -1 if no such value exists. -
first
public int first()Description copied from class:Container
Get the first integer held in the container -
last
public int last()Description copied from class:Container
Get the last integer held in the container -
subsetOf
-
subsetOf
-
subsetOf
-
overlapsRange
public boolean overlapsRange(int rangeStart, int rangeEnd) - Specified by:
overlapsRange
in classContainer
- Parameters:
rangeStart
- the beginning of the range, as an int.rangeEnd
- the end of the range (exclusive), as an int.- Returns:
- true if there is any element in this container in the range provided.
-
overlaps
-
overlaps
-
overlaps
-
setCopyOnWrite
public void setCopyOnWrite()- Specified by:
setCopyOnWrite
in classContainer
-
bytesAllocated
public int bytesAllocated()- Specified by:
bytesAllocated
in classContainer
- Returns:
- The allocated size in bytes of the underlying array backing store used by this container.
-
bytesUsed
public int bytesUsed() -
toLargeContainer
-
validate
public void validate()
-