Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.lang.reflect.Method;
import java.util.Arrays;
import org.apache.hadoop.hive.common.JavaUtils;
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.ql.udf.UDFType;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils;
import org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector.PrimitiveCategory;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
import org.apache.hadoop.hive.serde2.objectinspector.primitive.StringObjectInspector;
import org.apache.hadoop.util.ReflectionUtils;
/**
* A simple generic udf to call java static functions via reflection.
*/
@Description(name = "reflect",
value = "_FUNC_(class,method[,arg1[,arg2..]]) calls method with reflection",
extended = "Use this UDF to call Java methods by matching the argument signature\n")
@UDFType(deterministic = false)
public class GenericUDFReflect extends AbstractGenericUDFReflect {
private transient StringObjectInspector inputClassNameOI;
private transient StringObjectInspector inputMethodNameOI;
StringObjectInspector classNameOI;
StringObjectInspector methodNameOI;
@Override
public ObjectInspector initialize(ObjectInspector[] arguments)
throws UDFArgumentException {
if (arguments.length < 2) {
throw new UDFArgumentLengthException(
"The function GenericUDFReflect(class,method[,arg1[,arg2]...])"
+ " accepts 2 or more arguments.");
}
for (int i = 0; i < 2; i++) {
if (!(arguments[i] instanceof StringObjectInspector)) {
throw new UDFArgumentTypeException(i,
"The first 2 parameters of GenericUDFReflect(class,method[,arg1[,arg2]...])"
+ " should be string.");
}
}
inputClassNameOI = (StringObjectInspector) arguments[0];
inputMethodNameOI = (StringObjectInspector) arguments[1];
classNameOI = (StringObjectInspector)
ObjectInspectorUtils.getStandardObjectInspector(arguments[0]);
methodNameOI = (StringObjectInspector)
ObjectInspectorUtils.getStandardObjectInspector(arguments[1]);
setupParameterOIs(arguments, 2);
return PrimitiveObjectInspectorFactory.getPrimitiveJavaObjectInspector(
PrimitiveCategory.STRING);
}
Class> c;
Object o;
Method m;
Object className;
Object methodName;
@Override
public Object evaluate(DeferredObject[] arguments) throws HiveException {
// Try to find the class
// Skip class loading if the class name didn't change
boolean classNameChanged = false;
Object newClassName = arguments[0].get();
// We compare class name/method name using ObjectInspectorUtils.compare(...), to avoid
// any object conversion (which may cause object creation) in most cases, when the class
// name/method name is constant Java String, or constant Text (StringWritable).
if (className == null || ObjectInspectorUtils.compare(className, classNameOI, newClassName,
inputClassNameOI) != 0) {
className = ObjectInspectorUtils.copyToStandardObject(newClassName, inputClassNameOI);
String classNameString = classNameOI.getPrimitiveJavaObject(className);
try {
c = JavaUtils.loadClass(classNameString);
} catch (ClassNotFoundException ex) {
throw new HiveException("UDFReflect evaluate ", ex);
}
try {
o = null;
o = ReflectionUtils.newInstance(c, null);
} catch (Exception e) {
// ignored
}
classNameChanged = true;
}
// Try to find the method
// Skip method finding if the method name didn't change, and class name didn't change.
Object newMethodName = arguments[1].get();
if (methodName == null || ObjectInspectorUtils.compare(methodName, methodNameOI, newMethodName,
inputMethodNameOI) != 0 || classNameChanged) {
methodName = ObjectInspectorUtils.copyToStandardObject(newMethodName, inputMethodNameOI);
String methodNameString = methodNameOI.getPrimitiveJavaObject(methodName);
try {
m = findMethod(c, methodNameString, String.class, false);
} catch (Exception e) {
throw new HiveException("UDFReflect getMethod ", e);
}
}
Object[] parameterJavaValues = setupParameters(arguments, 2);
try {
return String.valueOf(m.invoke(o, parameterJavaValues));
} catch (Exception e1) {
System.err.println("UDFReflect evaluate " + e1 + " method = " + m + " args = " +
Arrays.asList(parameterJavaValues));
}
return null;
}
@Override
protected String functionName() {
return "reflect";
}
}