
org.apache.hadoop.hive.ql.udf.generic.GenericUDAFFirstValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache Show documentation
Show all versions of hive-apache Show documentation
Shaded version of Apache Hive for Presto
/**
* 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.hadoop.hive.ql.udf.generic;
import java.util.ArrayDeque;
import java.util.Deque;
import com.facebook.presto.hive.$internal.org.apache.commons.logging.Log;
import com.facebook.presto.hive.$internal.org.apache.commons.logging.LogFactory;
import org.apache.hadoop.hive.ql.exec.Description;
import org.apache.hadoop.hive.ql.exec.UDFArgumentTypeException;
import org.apache.hadoop.hive.ql.exec.WindowFunctionDescription;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.ql.parse.SemanticException;
import org.apache.hadoop.hive.ql.parse.WindowingSpec.BoundarySpec;
import org.apache.hadoop.hive.ql.plan.ptf.BoundaryDef;
import org.apache.hadoop.hive.ql.plan.ptf.WindowFrameDef;
import org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvaluator.AggregationBuffer;
import org.apache.hadoop.hive.ql.util.JavaDataModel;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils.ObjectInspectorCopyOption;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorUtils;
import org.apache.hadoop.hive.serde2.typeinfo.TypeInfo;
import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoFactory;
@WindowFunctionDescription(
description = @Description(
name = "first_value",
value = "_FUNC_(x)"
),
supportsWindow = true,
pivotResult = false,
impliesOrder = true
)
public class GenericUDAFFirstValue extends AbstractGenericUDAFResolver {
static final Log LOG = LogFactory.getLog(GenericUDAFFirstValue.class.getName());
@Override
public GenericUDAFEvaluator getEvaluator(TypeInfo[] parameters) throws SemanticException {
if (parameters.length > 2) {
throw new UDFArgumentTypeException(2, "At most 2 arguments expected");
}
if (parameters.length > 1 && !parameters[1].equals(TypeInfoFactory.booleanTypeInfo)) {
throw new UDFArgumentTypeException(1, "second argument must be a boolean expression");
}
return createEvaluator();
}
protected GenericUDAFFirstValueEvaluator createEvaluator() {
return new GenericUDAFFirstValueEvaluator();
}
static class FirstValueBuffer implements AggregationBuffer {
Object val;
boolean valSet;
boolean firstRow;
boolean skipNulls;
FirstValueBuffer() {
init();
}
void init() {
val = null;
valSet = false;
firstRow = true;
skipNulls = false;
}
}
public static class GenericUDAFFirstValueEvaluator extends GenericUDAFEvaluator {
ObjectInspector inputOI;
ObjectInspector outputOI;
@Override
public ObjectInspector init(Mode m, ObjectInspector[] parameters) throws HiveException {
super.init(m, parameters);
if (m != Mode.COMPLETE) {
throw new HiveException("Only COMPLETE mode supported for Rank function");
}
inputOI = parameters[0];
outputOI = ObjectInspectorUtils.getStandardObjectInspector(inputOI,
ObjectInspectorCopyOption.WRITABLE);
return outputOI;
}
@Override
public AggregationBuffer getNewAggregationBuffer() throws HiveException {
return new FirstValueBuffer();
}
@Override
public void reset(AggregationBuffer agg) throws HiveException {
((FirstValueBuffer) agg).init();
}
@Override
public void iterate(AggregationBuffer agg, Object[] parameters) throws HiveException {
FirstValueBuffer fb = (FirstValueBuffer) agg;
if (fb.firstRow) {
fb.firstRow = false;
if (parameters.length == 2) {
fb.skipNulls = PrimitiveObjectInspectorUtils.getBoolean(parameters[1],
PrimitiveObjectInspectorFactory.writableBooleanObjectInspector);
}
}
if (!fb.valSet) {
fb.val = ObjectInspectorUtils.copyToStandardObject(parameters[0], inputOI,
ObjectInspectorCopyOption.WRITABLE);
if (!fb.skipNulls || fb.val != null) {
fb.valSet = true;
}
}
}
@Override
public Object terminatePartial(AggregationBuffer agg) throws HiveException {
throw new HiveException("terminatePartial not supported");
}
@Override
public void merge(AggregationBuffer agg, Object partial) throws HiveException {
throw new HiveException("merge not supported");
}
@Override
public Object terminate(AggregationBuffer agg) throws HiveException {
return ((FirstValueBuffer) agg).val;
}
@Override
public GenericUDAFEvaluator getWindowingEvaluator(WindowFrameDef wFrmDef) {
BoundaryDef start = wFrmDef.getStart();
BoundaryDef end = wFrmDef.getEnd();
return new FirstValStreamingFixedWindow(this, start.getAmt(), end.getAmt());
}
}
static class ValIndexPair {
Object val;
int idx;
ValIndexPair(Object val, int idx) {
this.val = val;
this.idx = idx;
}
}
static class FirstValStreamingFixedWindow extends GenericUDAFStreamingEvaluator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy