blob: 5c959e72b77f046e111d97bf65ed08185d2cefd8 [file] [log] [blame]
/*
* 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.virtual;
import com.google.common.base.Preconditions;
import org.apache.druid.math.expr.Expr;
import org.apache.druid.math.expr.vector.ExprEvalVector;
import org.apache.druid.math.expr.vector.ExprVectorProcessor;
import org.apache.druid.segment.vector.ReadableVectorInspector;
import org.apache.druid.segment.vector.VectorValueSelector;
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
import javax.annotation.Nullable;
public class ExpressionVectorValueSelector implements VectorValueSelector
{
private final Expr.VectorInputBinding bindings;
private final ExprVectorProcessor<?> processor;
private final float[] floats;
@MonotonicNonNull
private ExprEvalVector<?> evalResult;
private int currentOffsetId = ReadableVectorInspector.NULL_ID;
private int currentFloatsId = ReadableVectorInspector.NULL_ID;
public ExpressionVectorValueSelector(ExprVectorProcessor<?> processor, Expr.VectorInputBinding bindings)
{
this.processor = Preconditions.checkNotNull(processor, "processor");
this.bindings = Preconditions.checkNotNull(bindings, "bindings");
this.floats = new float[bindings.getMaxVectorSize()];
}
@Override
public long[] getLongVector()
{
eval();
return evalResult.getLongVector();
}
@Override
public float[] getFloatVector()
{
if (currentFloatsId != bindings.getCurrentVectorId()) {
eval();
currentFloatsId = currentOffsetId;
final double[] doubles = evalResult.getDoubleVector();
for (int i = 0; i < bindings.getCurrentVectorSize(); i++) {
floats[i] = (float) doubles[i];
}
}
return floats;
}
@Override
public double[] getDoubleVector()
{
eval();
return evalResult.getDoubleVector();
}
@Nullable
@Override
public boolean[] getNullVector()
{
eval();
return evalResult.getNullVector();
}
@Override
public int getMaxVectorSize()
{
return bindings.getMaxVectorSize();
}
@Override
public int getCurrentVectorSize()
{
return bindings.getCurrentVectorSize();
}
private void eval()
{
if (currentOffsetId != bindings.getCurrentVectorId()) {
currentOffsetId = bindings.getCurrentVectorId();
evalResult = processor.evalVector(bindings);
}
}
}