org.apache.hadoop.hive.ql.udf.generic.GenericUDFPrintf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-exec Show documentation
Show all versions of hive-exec Show documentation
Hive is a data warehouse infrastructure built on top of Hadoop see
http://wiki.apache.org/hadoop/Hive
/**
* 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 org.apache.hadoop.hive.ql.exec.Description;
import org.apache.hadoop.hive.ql.exec.UDFArgumentException;
import org.apache.hadoop.hive.ql.exec.UDFArgumentLengthException;
import org.apache.hadoop.hive.ql.exec.UDFArgumentTypeException;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.serde.serdeConstants;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector.Category;
import org.apache.hadoop.hive.serde2.objectinspector.ListObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.BooleanObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.ByteObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.ShortObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.IntObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.LongObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.FloatObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.DoubleObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.StringObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.TimestampObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.BinaryObjectInspector;
import org.apache.hadoop.hive.serde2.lazy.ByteArrayRef;
import org.apache.hadoop.io.Text;
import java.util.Formatter;
import java.util.Locale;
import java.util.ArrayList;
/**
* Generic UDF for printf function
* printf(String format, Obj... args)
.
*
* @see org.apache.hadoop.hive.ql.udf.generic.GenericUDF
*/
@Description(name = "printf",
value = "_FUNC_(String format, Obj... args) - "
+ "function that can format strings according to printf-style format strings",
extended = "Example:\n"
+ " > SELECT _FUNC_(\"Hello World %d %s\", 100, \"days\")"
+ "FROM src LIMIT 1;\n"
+ " \"Hello World 100 days\"")
public class GenericUDFPrintf extends GenericUDF {
private ObjectInspector[] argumentOIs;
private final Text resultText = new Text();
@Override
public ObjectInspector initialize(ObjectInspector[] arguments) throws UDFArgumentException {
if (arguments.length < 1) {
throw new UDFArgumentLengthException(
"The function PRINTF(String format, Obj... args) needs at least one arguments.");
}
if (arguments[0].getTypeName() != serdeConstants.STRING_TYPE_NAME
&& arguments[0].getTypeName() != serdeConstants.VOID_TYPE_NAME) {
throw new UDFArgumentTypeException(0, "Argument 1"
+ " of function PRINTF must be \"" + serdeConstants.STRING_TYPE_NAME
+ "\", but \"" + arguments[0].getTypeName() + "\" was found.");
}
for (int i = 1; i < arguments.length; i++) {
if (!arguments[i].getCategory().equals(Category.PRIMITIVE)){
throw new UDFArgumentTypeException(i, "Argument " + (i + 1)
+ " of function PRINTF must be \"" + Category.PRIMITIVE
+ "\", but \"" + arguments[i].getTypeName() + "\" was found.");
}
}
argumentOIs = arguments;
return PrimitiveObjectInspectorFactory.writableStringObjectInspector;
}
@Override
public Object evaluate(DeferredObject[] arguments) throws HiveException {
StringBuilder sb = new StringBuilder();
Formatter formatter = new Formatter(sb, Locale.US);
String pattern = ((StringObjectInspector) argumentOIs[0])
.getPrimitiveJavaObject(arguments[0].get());
ArrayList argumentList = new ArrayList();
for (int i = 1; i < arguments.length; i++) {
switch (((PrimitiveObjectInspector)argumentOIs[i]).getPrimitiveCategory()) {
case BOOLEAN:
argumentList.add(((BooleanObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case BYTE:
argumentList.add(((ByteObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case SHORT:
argumentList.add(((ShortObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case INT:
argumentList.add(((IntObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case LONG:
argumentList.add(((LongObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case FLOAT:
argumentList.add(((FloatObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case DOUBLE:
argumentList.add(((DoubleObjectInspector)argumentOIs[i]).get(arguments[i].get()));
break;
case STRING:
argumentList.add(((StringObjectInspector)argumentOIs[i])
.getPrimitiveJavaObject(arguments[i].get()));
break;
case TIMESTAMP:
argumentList.add(((TimestampObjectInspector)argumentOIs[i])
.getPrimitiveJavaObject(arguments[i].get()));
break;
case BINARY:
argumentList.add(arguments[i].get());
break;
default:
argumentList.add(arguments[i].get());
break;
}
}
formatter.format(pattern, argumentList.toArray());
resultText.set(sb.toString());
return resultText;
}
@Override
public String getDisplayString(String[] children) {
assert (children.length >= 2);
StringBuilder sb = new StringBuilder();
sb.append("printf(");
for (int i = 0; i < children.length - 1; i++) {
sb.append(children[i]).append(", ");
}
sb.append(children[children.length - 1]).append(")");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy