org.roaringbitmap.buffer.ArrayBatchIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-core Show documentation
Show all versions of spark-core Show documentation
Shaded version of Apache Spark 2.x.x for Presto
The newest version!
package org.roaringbitmap.buffer;
import org.roaringbitmap.ContainerBatchIterator;
import java.nio.ShortBuffer;
import static org.roaringbitmap.buffer.BufferUtil.toIntUnsigned;
public class ArrayBatchIterator implements ContainerBatchIterator {
private int index = 0;
private final MappeableArrayContainer array;
public ArrayBatchIterator(MappeableArrayContainer array) {
this.array = array;
}
@Override
public int next(int key, int[] buffer) {
int consumed = 0;
ShortBuffer data = array.content;
while (consumed < buffer.length && index < array.getCardinality()) {
buffer[consumed++] = key + toIntUnsigned(data.get(index++));
}
return consumed;
}
@Override
public boolean hasNext() {
return index < array.getCardinality();
}
@Override
public ContainerBatchIterator clone() {
try {
return (ContainerBatchIterator)super.clone();
} catch (CloneNotSupportedException e) {
// won't happen
throw new IllegalStateException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy