/** * 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.ArrayList; import org.slf4j.Logger; import org.slf4j.LoggerFactory; 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.plan.ptf.WindowFrameDef; import org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvaluator.AggregationBuffer; import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector; import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorFactory; 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.typeinfo.TypeInfo; import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoUtils; import org.apache.hadoop.io.IntWritable; @WindowFunctionDescription( description = @Description( name = "rank", value = "_FUNC_(x)"), supportsWindow = false, pivotResult = true, rankingFunction = true, impliesOrder = true) public class GenericUDAFRank extends AbstractGenericUDAFResolver { static final Logger LOG = LoggerFactory.getLogger(GenericUDAFRank.class.getName()); @Override public GenericUDAFEvaluator getEvaluator(TypeInfo[] parameters) throws SemanticException { if (parameters.length < 1) { throw new UDFArgumentTypeException(parameters.length - 1, "One or more arguments are expected."); } for (int i = 0; i < parameters.length; i++) { ObjectInspector oi = TypeInfoUtils.getStandardJavaObjectInspectorFromTypeInfo(parameters[i]); if (!ObjectInspectorUtils.compareSupported(oi)) { throw new UDFArgumentTypeException(i, "Cannot support comparison of map<> type or complex type containing map<>."); } } return createEvaluator(); } protected GenericUDAFAbstractRankEvaluator createEvaluator() { return new GenericUDAFRankEvaluator(); } static class RankBuffer implements AggregationBuffer { ArrayList<IntWritable> rowNums; int currentRowNum; Object[] currVal; int currentRank; int numParams; boolean supportsStreaming; RankBuffer(int numParams, boolean supportsStreaming) { this.numParams = numParams; this.supportsStreaming = supportsStreaming; init(); } void init() { rowNums = new ArrayList<IntWritable>(); currentRowNum = 0; currentRank = 0; currVal = new Object[numParams]; if (supportsStreaming) { /* initialize rowNums to have 1 row */ rowNums.add(null); } } void incrRowNum() { currentRowNum++; } void addRank() { if (supportsStreaming) { rowNums.set(0, new IntWritable(currentRank)); } else { rowNums.add(new IntWritable(currentRank)); } } } public static abstract class GenericUDAFAbstractRankEvaluator extends GenericUDAFEvaluator { ObjectInspector[] inputOI; ObjectInspector[] outputOI; boolean isStreamingMode = false; protected boolean isStreaming() { return isStreamingMode; } @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; outputOI = new ObjectInspector[inputOI.length]; for (int i = 0; i < inputOI.length; i++) { outputOI[i] = ObjectInspectorUtils.getStandardObjectInspector(inputOI[i], ObjectInspectorCopyOption.JAVA); } return ObjectInspectorFactory.getStandardListObjectInspector( PrimitiveObjectInspectorFactory.writableIntObjectInspector); } @Override public AggregationBuffer getNewAggregationBuffer() throws HiveException { return new RankBuffer(inputOI.length, isStreamingMode); } @Override public void reset(AggregationBuffer agg) throws HiveException { ((RankBuffer) agg).init(); } @Override public void iterate(AggregationBuffer agg, Object[] parameters) throws HiveException { RankBuffer rb = (RankBuffer) agg; int c = GenericUDAFRank.compare(rb.currVal, outputOI, parameters, inputOI); rb.incrRowNum(); if (rb.currentRowNum == 1 || c != 0) { nextRank(rb); rb.currVal = GenericUDAFRank.copyToStandardObject(parameters, inputOI, ObjectInspectorCopyOption.JAVA); } rb.addRank(); } /* * Called when the value in the partition has changed. Update the currentRank */ protected void nextRank(RankBuffer rb) { rb.currentRank = rb.currentRowNum; } @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 ((RankBuffer) agg).rowNums; } } public static class GenericUDAFRankEvaluator extends GenericUDAFAbstractRankEvaluator implements ISupportStreamingModeForWindowing { @Override public Object getNextResult(AggregationBuffer agg) throws HiveException { return ((RankBuffer) agg).rowNums.get(0); } @Override public GenericUDAFEvaluator getWindowingEvaluator(WindowFrameDef wFrmDef) { isStreamingMode = true; return this; } @Override public int getRowsRemainingAfterTerminate() throws HiveException { return 0; } } public static int compare(Object[] o1, ObjectInspector[] oi1, Object[] o2, ObjectInspector[] oi2) { int c = 0; for (int i = 0; i < oi1.length; i++) { c = ObjectInspectorUtils.compare(o1[i], oi1[i], o2[i], oi2[i]); if (c != 0) { return c; } } return c; } public static Object[] copyToStandardObject(Object[] o, ObjectInspector[] oi, ObjectInspectorCopyOption objectInspectorOption) { Object[] out = new Object[o.length]; for (int i = 0; i < oi.length; i++) { out[i] = ObjectInspectorUtils.copyToStandardObject(o[i], oi[i], objectInspectorOption); } return out; } }