org.apache.druid.segment.nested.ScalarLongColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-processing Show documentation
Show all versions of druid-processing Show documentation
A module that is everything required to understands Druid Segments
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.druid.segment.nested;
import org.apache.druid.collections.bitmap.ImmutableBitmap;
import org.apache.druid.common.config.NullHandling;
import org.apache.druid.query.monomorphicprocessing.RuntimeShapeInspector;
import org.apache.druid.segment.ColumnValueSelector;
import org.apache.druid.segment.LongColumnSelector;
import org.apache.druid.segment.column.ColumnType;
import org.apache.druid.segment.data.ColumnarLongs;
import org.apache.druid.segment.data.FixedIndexed;
import org.apache.druid.segment.data.Indexed;
import org.apache.druid.segment.data.ReadableOffset;
import org.apache.druid.segment.vector.BaseLongVectorValueSelector;
import org.apache.druid.segment.vector.ReadableVectorInspector;
import org.apache.druid.segment.vector.ReadableVectorOffset;
import org.apache.druid.segment.vector.VectorSelectorUtils;
import org.apache.druid.segment.vector.VectorValueSelector;
import org.roaringbitmap.PeekableIntIterator;
import javax.annotation.Nullable;
/**
* {@link NestedCommonFormatColumn} for {@link ColumnType#LONG}
*/
public class ScalarLongColumn implements NestedCommonFormatColumn
{
private final FixedIndexed longDictionary;
private final ColumnarLongs valueColumn;
private final ImmutableBitmap nullValueIndex;
public ScalarLongColumn(
FixedIndexed longDictionary,
ColumnarLongs valueColumn,
ImmutableBitmap nullValueIndex
)
{
this.longDictionary = longDictionary;
this.valueColumn = valueColumn;
this.nullValueIndex = nullValueIndex;
}
@Override
public Indexed getLongDictionary()
{
return longDictionary;
}
@Override
public ColumnType getLogicalType()
{
return ColumnType.LONG;
}
@Override
public ColumnValueSelector> makeColumnValueSelector(ReadableOffset offset)
{
return new LongColumnSelector()
{
private PeekableIntIterator nullIterator = nullValueIndex.peekableIterator();
private int nullMark = -1;
private int offsetMark = -1;
@Override
public long getLong()
{
return valueColumn.get(offset.getOffset());
}
@Override
public void inspectRuntimeShape(RuntimeShapeInspector inspector)
{
inspector.visit("longColumn", valueColumn);
inspector.visit("nullBitmap", nullValueIndex);
}
@Override
public boolean isNull()
{
if (NullHandling.replaceWithDefault()) {
return false;
}
final int i = offset.getOffset();
if (i < offsetMark) {
// offset was reset, reset iterator state
nullMark = -1;
nullIterator = nullValueIndex.peekableIterator();
}
offsetMark = i;
if (nullMark < i) {
nullIterator.advanceIfNeeded(offsetMark);
if (nullIterator.hasNext()) {
nullMark = nullIterator.next();
}
}
return nullMark == offsetMark;
}
};
}
@Override
public VectorValueSelector makeVectorValueSelector(ReadableVectorOffset offset)
{
return new BaseLongVectorValueSelector(offset)
{
private final long[] valueVector = new long[offset.getMaxVectorSize()];
@Nullable
private boolean[] nullVector = null;
private int id = ReadableVectorInspector.NULL_ID;
@Nullable
private PeekableIntIterator nullIterator = nullValueIndex.peekableIterator();
private int offsetMark = -1;
@Override
public long[] getLongVector()
{
computeVectorsIfNeeded();
return valueVector;
}
@Nullable
@Override
public boolean[] getNullVector()
{
if (NullHandling.replaceWithDefault()) {
return null;
}
computeVectorsIfNeeded();
return nullVector;
}
private void computeVectorsIfNeeded()
{
if (id == offset.getId()) {
return;
}
if (offset.isContiguous()) {
if (offset.getStartOffset() < offsetMark) {
nullIterator = nullValueIndex.peekableIterator();
}
offsetMark = offset.getStartOffset() + offset.getCurrentVectorSize();
valueColumn.get(valueVector, offset.getStartOffset(), offset.getCurrentVectorSize());
} else {
final int[] offsets = offset.getOffsets();
if (offsets[offsets.length - 1] < offsetMark) {
nullIterator = nullValueIndex.peekableIterator();
}
offsetMark = offsets[offsets.length - 1];
valueColumn.get(valueVector, offsets, offset.getCurrentVectorSize());
}
nullVector = VectorSelectorUtils.populateNullVector(nullVector, offset, nullIterator);
id = offset.getId();
}
};
}
@Override
public void close()
{
valueColumn.close();
}
}