Package org.roaringbitmap
Class RunContainer
- java.lang.Object
-
- org.roaringbitmap.Container
-
- org.roaringbitmap.RunContainer
-
- All Implemented Interfaces:
Externalizable,Serializable,Cloneable,Iterable<Short>,WordStorage<Container>
public final class RunContainer extends Container implements Cloneable
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.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.roaringbitmap.Container
ContainerNames
-
-
Constructor Summary
Constructors Modifier Constructor Description RunContainer()Create a container with default capacityRunContainer(int capacity)Create an array container with specified capacityRunContainer(int firstOfRun, int lastOfRun)Create an run container with a run of ones from firstOfRun to lastOfRun.RunContainer(short[] array, int numRuns)Construct a new RunContainer backed by the provided array.protectedRunContainer(ArrayContainer arr, int nbrRuns)protectedRunContainer(BitmapContainer bc, int nbrRuns)RunContainer(MappeableRunContainer bc)Creates a new non-mappeable container from a mappeable one.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Containeradd(int begin, int end)Return a new container with all shorts in [begin,end) added using an unsigned interpretation.Containeradd(short k)Add a short to the container.Containerand(ArrayContainer x)Computes the bitwise AND of this container with another (intersection).Containerand(BitmapContainer x)Computes the bitwise AND of this container with another (intersection).Containerand(RunContainer x)Computes the bitwise AND of this container with another (intersection).intandCardinality(ArrayContainer x)intandCardinality(BitmapContainer x)intandCardinality(RunContainer x)ContainerandNot(ArrayContainer x)Computes the bitwise ANDNOT of this container with another (difference).ContainerandNot(BitmapContainer x)Computes the bitwise ANDNOT of this container with another (difference).ContainerandNot(RunContainer x)Computes the bitwise ANDNOT of this container with another (difference).voidclear()Empties the containerContainerclone()booleancontains(int minimum, int supremum)Checks whether the container contains the entire rangebooleancontains(short x)Checks whether the contain contains the provided valueprotected booleancontains(ArrayContainer arrayContainer)protected booleancontains(BitmapContainer bitmapContainer)protected booleancontains(RunContainer runContainer)voiddeserialize(DataInput in)Deserialize (recover) the container.protected voidensureCapacity(int minNbRuns)booleanequals(Object o)voidfillLeastSignificant16bits(int[] x, int i, int mask)Fill the least significant 16 bits of the integer array, starting at index i, with the short values from this container.intfirst()Get the first integer held in the containerContainerflip(short x)Add a short to the container if it is not present, otherwise remove it.voidforEach(short msb, IntConsumer ic)Iterate through the values of this container and pass them along to the IntConsumer, using msb as the 16 most significant bits.static RunContainerfull()protected intgetArraySizeInBytes()Size of the underlying arrayContainerBatchIteratorgetBatchIterator()Gets an iterator to visit the contents of the container in batchesintgetCardinality()Computes the distinct number of short values in the container.shortgetLength(int index)Gets the length of the run at the index.ShortIteratorgetReverseShortIterator()Iterator to visit the short values in the container in descending order.PeekableShortIteratorgetShortIterator()Iterator to visit the short values in the container in ascending order.PeekableShortRankIteratorgetShortRankIterator()Iterator to visit the short values in container and pre-compute ranksintgetSizeInBytes()Computes an estimate of the memory usage of this container.shortgetValue(int index)Gets the value of the first element of the run at the index.inthashCode()Containeriadd(int begin, int end)Add all shorts in [begin,end) using an unsigned interpretation.Containeriand(ArrayContainer x)Computes the in-place bitwise AND of this container with another (intersection).Containeriand(BitmapContainer x)Computes the in-place bitwise AND of this container with another (intersection).Containeriand(RunContainer x)Computes the in-place bitwise AND of this container with another (intersection).ContaineriandNot(ArrayContainer x)Computes the in-place bitwise ANDNOT of this container with another (difference).ContaineriandNot(BitmapContainer x)Computes the in-place bitwise ANDNOT of this container with another (difference).ContaineriandNot(RunContainer x)Computes the in-place bitwise ANDNOT of this container with another (difference).protected Containerilazyor(ArrayContainer x)Containerinot(int rangeStart, int rangeEnd)Computes the in-place bitwise NOT of this container (complement).booleanintersects(int minimum, int supremum)Checks if the container intersects with a rangebooleanintersects(ArrayContainer x)Returns true if the current container intersects the other container.booleanintersects(BitmapContainer x)Returns true if the current container intersects the other container.booleanintersects(RunContainer x)Returns true if the current container intersects the other container.Containerior(ArrayContainer x)Computes the in-place bitwise OR of this container with another (union).Containerior(BitmapContainer x)Computes the in-place bitwise OR of this container with another (union).Containerior(RunContainer x)Computes the in-place bitwise OR of this container with another (union).Containeriremove(int begin, int end)Remove shorts in [begin,end) using an unsigned interpretation.booleanisEmpty()Checks whether the container is empty or not.protected booleanisFull()Iterator<Short>iterator()Containerixor(ArrayContainer x)Computes the in-place bitwise XOR of this container with another (symmetric difference).Containerixor(BitmapContainer x)Computes the in-place bitwise XOR of this container with another (symmetric difference).Containerixor(RunContainer x)Computes the in-place bitwise XOR of this container with another (symmetric difference).intlast()Get the last integer held in the containerprotected Containerlazyor(ArrayContainer x)Containerlimit(int maxcardinality)Create a new Container containing at most maxcardinality integers.intnextAbsentValue(short fromValue)Gets the first absent value greater than or equal to the lower bound.intnextValue(short fromValue)Gets the first value greater than or equal to the lower bound, or -1 if no such value exists.Containernot(int rangeStart, int rangeEnd)Computes the bitwise NOT of this container (complement).intnumberOfRuns()Containeror(ArrayContainer x)Computes the bitwise OR of this container with another (union).Containeror(BitmapContainer x)Computes the bitwise OR of this container with another (union).Containeror(RunContainer x)Computes the bitwise OR of this container with another (union).intpreviousAbsentValue(short fromValue)Gets the last value less than or equal to the upper bound.intpreviousValue(short fromValue)Gets the last value less than or equal to the upper bound, or -1 if no such value exists.intrank(short lowbits)Rank returns the number of integers that are smaller or equal to x (Rank(infinity) would be GetCardinality()).voidreadExternal(ObjectInput in)Containerremove(int begin, int end)Return a new container with all shorts in [begin,end) remove using an unsigned interpretation.Containerremove(short x)Remove the short from this container.ContainerrepairAfterLazy()The output of a lazyOR or lazyIOR might be an invalid container, this should be called on it.ContainerrunOptimize()Convert to Array or Bitmap container if the serialized form would be shorter.shortselect(int j)Return the jth valuevoidserialize(DataOutput out)Serialize the container.intserializedSizeInBytes()Report the number of bytes required to serialize this container.protected static intserializedSizeInBytes(int numberOfRuns)BitmapContainertoBitmapContainer()Convert the current container to a BitmapContainer, if a conversion is needed.MappeableContainertoMappeableContainer()Convert to a mappeable container.ShortBuffertoShortBuffer()Return the content of this container as a ShortBuffer.StringtoString()voidtrim()If possible, recover wasted memory.protected voidwriteArray(DataOutput out)Write just the underlying array.voidwriteExternal(ObjectOutput out)Containerxor(ArrayContainer x)Computes the bitwise XOR of this container with another (symmetric difference).Containerxor(BitmapContainer x)Computes the bitwise XOR of this container with another (symmetric difference).Containerxor(RunContainer x)Computes the bitwise XOR of this container with another (symmetric difference).-
Methods inherited from class org.roaringbitmap.Container
and, andCardinality, andNot, assertNonEmpty, contains, getContainerName, iand, iandNot, intersects, ior, ixor, lazyIOR, lazyOR, or, rangeOfOnes, xor, xorCardinality
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
RunContainer
public RunContainer()
Create a container with default capacity
-
RunContainer
protected RunContainer(ArrayContainer arr, int nbrRuns)
-
RunContainer
public RunContainer(int firstOfRun, int lastOfRun)Create an run container with a run of ones from firstOfRun to lastOfRun.- Parameters:
firstOfRun- first indexlastOfRun- last index (range is exclusive)
-
RunContainer
protected RunContainer(BitmapContainer bc, int nbrRuns)
-
RunContainer
public RunContainer(int capacity)
Create an array container with specified capacity- Parameters:
capacity- The capacity of the container
-
RunContainer
public RunContainer(MappeableRunContainer bc)
Creates a new non-mappeable container from a mappeable one. This copies the data.- Parameters:
bc- the original container
-
RunContainer
public RunContainer(short[] array, int numRuns)Construct a new RunContainer backed by the provided array. Note that if you modify the RunContainer a new array may be produced.- Parameters:
array- array where the data is storednumRuns- number of runs (each using 2 shorts in the buffer)
-
-
Method Detail
-
serializedSizeInBytes
protected static int serializedSizeInBytes(int numberOfRuns)
-
add
public Container add(int begin, int end)
Description copied from class:ContainerReturn a new container with all shorts in [begin,end) added using an unsigned interpretation.
-
add
public Container add(short k)
Description copied from class:ContainerAdd a short to the container. May generate a new container.- Specified by:
addin interfaceWordStorage<Container>- Specified by:
addin classContainer- Parameters:
k- short to be added- Returns:
- the new container
-
and
public Container and(ArrayContainer x)
Description copied from class:ContainerComputes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.
-
and
public Container and(BitmapContainer x)
Description copied from class:ContainerComputes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.
-
and
public Container and(RunContainer x)
Description copied from class:ContainerComputes the bitwise AND of this container with another (intersection). This container as well as the provided container are left unaffected.
-
andCardinality
public int andCardinality(ArrayContainer x)
- Specified by:
andCardinalityin classContainer
-
andCardinality
public int andCardinality(BitmapContainer x)
- Specified by:
andCardinalityin classContainer
-
andCardinality
public int andCardinality(RunContainer x)
- Specified by:
andCardinalityin classContainer
-
andNot
public Container andNot(ArrayContainer x)
Description copied from class:ContainerComputes the bitwise ANDNOT of this container with another (difference). This container as well as the provided container are left unaffected.
-
andNot
public Container andNot(BitmapContainer x)
Description copied from class:ContainerComputes the bitwise ANDNOT of this container with another (difference). This container as well as the provided container are left unaffected.
-
andNot
public Container andNot(RunContainer x)
Description copied from class:ContainerComputes the bitwise ANDNOT of this container with another (difference). This container as well as the provided container are left unaffected.
-
clear
public void clear()
Description copied from class:ContainerEmpties the container
-
isEmpty
public boolean isEmpty()
Description copied from class:ContainerChecks whether the container is empty or not.- Specified by:
isEmptyin interfaceWordStorage<Container>- Specified by:
isEmptyin classContainer- Returns:
- true if the container is empty.
-
contains
public boolean contains(short x)
Description copied from class:ContainerChecks whether the contain contains the provided value
-
contains
public boolean contains(int minimum, int supremum)Description copied from class:ContainerChecks whether the container contains the entire range
-
contains
protected boolean contains(RunContainer runContainer)
-
contains
protected boolean contains(ArrayContainer arrayContainer)
-
contains
protected boolean contains(BitmapContainer bitmapContainer)
-
deserialize
public void deserialize(DataInput in) throws IOException
Description copied from class:ContainerDeserialize (recover) the container.- Specified by:
deserializein classContainer- Parameters:
in- the DataInput stream- Throws:
IOException- Signals that an I/O exception has occurred.
-
ensureCapacity
protected void ensureCapacity(int minNbRuns)
-
fillLeastSignificant16bits
public void fillLeastSignificant16bits(int[] x, int i, int mask)Description copied from class:ContainerFill the least significant 16 bits of the integer array, starting at index i, with the short values from this container. The caller is responsible to allocate enough room. The most significant 16 bits of each integer are given by the most significant bits of the provided mask.- Specified by:
fillLeastSignificant16bitsin classContainer- Parameters:
x- provided arrayi- starting indexmask- indicates most significant bits
-
flip
public Container flip(short x)
Description copied from class:ContainerAdd a short to the container if it is not present, otherwise remove it. May generate a new container.
-
getArraySizeInBytes
protected int getArraySizeInBytes()
Description copied from class:ContainerSize of the underlying array- Specified by:
getArraySizeInBytesin classContainer- Returns:
- size in bytes
-
getCardinality
public int getCardinality()
Description copied from class:ContainerComputes the distinct number of short values in the container. Can be expected to run in constant time.- Specified by:
getCardinalityin 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.
-
getReverseShortIterator
public ShortIterator getReverseShortIterator()
Description copied from class:ContainerIterator to visit the short values in the container in descending order.- Specified by:
getReverseShortIteratorin classContainer- Returns:
- iterator
-
getShortIterator
public PeekableShortIterator getShortIterator()
Description copied from class:ContainerIterator to visit the short values in the container in ascending order.- Specified by:
getShortIteratorin classContainer- Returns:
- iterator
-
getShortRankIterator
public PeekableShortRankIterator getShortRankIterator()
Description copied from class:ContainerIterator to visit the short values in container and pre-compute ranks- Specified by:
getShortRankIteratorin classContainer- Returns:
- iterator
-
getBatchIterator
public ContainerBatchIterator getBatchIterator()
Description copied from class:ContainerGets an iterator to visit the contents of the container in batches- Specified by:
getBatchIteratorin classContainer- Returns:
- iterator
-
getSizeInBytes
public int getSizeInBytes()
Description copied from class:ContainerComputes an estimate of the memory usage of this container. The estimate is not meant to be exact.- Specified by:
getSizeInBytesin classContainer- Returns:
- estimated memory usage in bytes
-
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.
-
iadd
public Container iadd(int begin, int end)
Description copied from class:ContainerAdd all shorts in [begin,end) using an unsigned interpretation. May generate a new container.
-
iand
public Container iand(ArrayContainer x)
Description copied from class:ContainerComputes 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
public Container iand(BitmapContainer x)
Description copied from class:ContainerComputes 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
public Container iand(RunContainer x)
Description copied from class:ContainerComputes 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
public Container iandNot(ArrayContainer x)
Description copied from class:ContainerComputes 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
public Container iandNot(BitmapContainer x)
Description copied from class:ContainerComputes 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
public Container iandNot(RunContainer x)
Description copied from class:ContainerComputes 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.
-
ilazyor
protected Container ilazyor(ArrayContainer x)
-
inot
public Container inot(int rangeStart, int rangeEnd)
Description copied from class:ContainerComputes 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.
-
intersects
public boolean intersects(ArrayContainer x)
Description copied from class:ContainerReturns true if the current container intersects the other container.- Specified by:
intersectsin classContainer- Parameters:
x- other container- Returns:
- whether they intersect
-
intersects
public boolean intersects(BitmapContainer x)
Description copied from class:ContainerReturns true if the current container intersects the other container.- Specified by:
intersectsin classContainer- Parameters:
x- other container- Returns:
- whether they intersect
-
intersects
public boolean intersects(RunContainer x)
Description copied from class:ContainerReturns true if the current container intersects the other container.- Specified by:
intersectsin classContainer- Parameters:
x- other container- Returns:
- whether they intersect
-
intersects
public boolean intersects(int minimum, int supremum)Description copied from class:ContainerChecks if the container intersects with a range- Specified by:
intersectsin classContainer- Parameters:
minimum- the inclusive unsigned lower bound of the rangesupremum- the exclusive unsigned upper bound of the range- Returns:
- true if the container intersects the range
-
ior
public Container ior(ArrayContainer x)
Description copied from class:ContainerComputes 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
public Container ior(BitmapContainer x)
Description copied from class:ContainerComputes 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
public Container ior(RunContainer x)
Description copied from class:ContainerComputes 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
public Container iremove(int begin, int end)
Description copied from class:ContainerRemove shorts in [begin,end) using an unsigned interpretation. May generate a new container.
-
isFull
protected boolean isFull()
-
full
public static RunContainer full()
-
ixor
public Container ixor(ArrayContainer x)
Description copied from class:ContainerComputes 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
public Container ixor(BitmapContainer x)
Description copied from class:ContainerComputes 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
public Container ixor(RunContainer x)
Description copied from class:ContainerComputes 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.
-
lazyor
protected Container lazyor(ArrayContainer x)
-
limit
public Container limit(int maxcardinality)
Description copied from class:ContainerCreate a new Container containing at most maxcardinality integers.
-
not
public Container not(int rangeStart, int rangeEnd)
Description copied from class:ContainerComputes the bitwise NOT of this container (complement). Only those bits within the range are affected. The current container is left unaffected.
-
numberOfRuns
public int numberOfRuns()
-
or
public Container or(ArrayContainer x)
Description copied from class:ContainerComputes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.
-
or
public Container or(BitmapContainer x)
Description copied from class:ContainerComputes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.
-
or
public Container or(RunContainer x)
Description copied from class:ContainerComputes 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:ContainerRank returns the number of integers that are smaller or equal to x (Rank(infinity) would be GetCardinality()).
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
remove
public Container remove(int begin, int end)
Description copied from class:ContainerReturn a new container with all shorts in [begin,end) remove using an unsigned interpretation.
-
remove
public Container remove(short x)
Description copied from class:ContainerRemove the short from this container. May create a new container.
-
repairAfterLazy
public Container repairAfterLazy()
Description copied from class:ContainerThe output of a lazyOR or lazyIOR might be an invalid container, this should be called on it.- Specified by:
repairAfterLazyin classContainer- Returns:
- a new valid container
-
runOptimize
public Container runOptimize()
Convert to Array or Bitmap container if the serialized form would be shorter. Exactly the same functionality as toEfficientContainer.- Specified by:
runOptimizein interfaceWordStorage<Container>- Specified by:
runOptimizein classContainer- Returns:
- the new container
-
select
public short select(int j)
Description copied from class:ContainerReturn the jth value
-
serialize
public void serialize(DataOutput out) throws IOException
Description copied from class:ContainerSerialize the container.- Specified by:
serializein classContainer- Parameters:
out- the DataOutput stream- Throws:
IOException- Signals that an I/O exception has occurred.
-
serializedSizeInBytes
public int serializedSizeInBytes()
Description copied from class:ContainerReport the number of bytes required to serialize this container.- Specified by:
serializedSizeInBytesin classContainer- Returns:
- the size in bytes
-
toMappeableContainer
public MappeableContainer toMappeableContainer()
Description copied from class:ContainerConvert to a mappeable container.- Specified by:
toMappeableContainerin classContainer- Returns:
- the mappeable container
-
toShortBuffer
public ShortBuffer toShortBuffer()
Return the content of this container as a ShortBuffer. This creates a copy and might be relatively slow.- Returns:
- the ShortBuffer
-
trim
public void trim()
Description copied from class:ContainerIf possible, recover wasted memory.
-
writeArray
protected void writeArray(DataOutput out) throws IOException
Description copied from class:ContainerWrite just the underlying array.- Specified by:
writeArrayin classContainer- Parameters:
out- output stream- Throws:
IOException- in case of failure
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
xor
public Container xor(ArrayContainer x)
Description copied from class:ContainerComputes the bitwise XOR of this container with another (symmetric difference). This container as well as the provided container are left unaffected.
-
xor
public Container xor(BitmapContainer x)
Description copied from class:ContainerComputes the bitwise XOR of this container with another (symmetric difference). This container as well as the provided container are left unaffected.
-
xor
public Container xor(RunContainer x)
Description copied from class:ContainerComputes the bitwise XOR of this container with another (symmetric difference). This container as well as the provided container are left unaffected.
-
forEach
public void forEach(short msb, IntConsumer ic)Description copied from class:ContainerIterate through the values of this container and pass them along to the IntConsumer, using msb as the 16 most significant bits.
-
toBitmapContainer
public BitmapContainer toBitmapContainer()
Description copied from class:ContainerConvert the current container to a BitmapContainer, if a conversion is needed. If the container is already a bitmap, the container is returned unchanged.- Specified by:
toBitmapContainerin classContainer- Returns:
- a bitmap container
-
nextValue
public int nextValue(short fromValue)
Description copied from class:ContainerGets the first value greater than or equal to the lower bound, or -1 if no such value exists.
-
previousValue
public int previousValue(short fromValue)
Description copied from class:ContainerGets the last value less than or equal to the upper bound, or -1 if no such value exists.- Specified by:
previousValuein classContainer- Parameters:
fromValue- the upper bound (inclusive)- Returns:
- the previous value
-
nextAbsentValue
public int nextAbsentValue(short fromValue)
Description copied from class:ContainerGets the first absent value greater than or equal to the lower bound.- Specified by:
nextAbsentValuein classContainer- Parameters:
fromValue- the lower bound (inclusive)- Returns:
- the next absent value
-
previousAbsentValue
public int previousAbsentValue(short fromValue)
Description copied from class:ContainerGets the last value less than or equal to the upper bound.- Specified by:
previousAbsentValuein classContainer- Parameters:
fromValue- the upper bound (inclusive)- Returns:
- the previous absent value
-
first
public int first()
Description copied from class:ContainerGet the first integer held in the container
-
-