package brickhouse.udf.json;
/**
* Copyright 2012 Klout, Inc
*
* Licensed 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.
*
**/
import brickhouse.udf.json.InspectorHandle.InspectorHandleFactory;
import org.apache.hadoop.hive.ql.exec.Description;
import org.apache.hadoop.hive.ql.exec.UDFArgumentException;
import org.apache.hadoop.hive.ql.metadata.HiveException;
import org.apache.hadoop.hive.ql.udf.generic.GenericUDF;
import org.apache.hadoop.hive.serde2.objectinspector.ConstantObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector.Category;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorFactory;
import org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector;
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.hive.serde2.typeinfo.TypeInfo;
import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoUtils;
import org.apache.hadoop.io.Text;
import org.codehaus.jackson.JsonNode;
import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.map.ObjectMapper;
import java.io.IOException;
/**
* UDF to split a JSON array into individual json strings ...
*/
@Description(name = "json_split",
value = "_FUNC_(json) - Returns a array of JSON strings from a JSON Array"
)
public class JsonSplitUDF extends GenericUDF {
private StringObjectInspector stringInspector;
private InspectorHandle inspHandle;
@Override
public Object evaluate(DeferredObject[] arguments) throws HiveException {
try {
String jsonString = this.stringInspector.getPrimitiveJavaObject(arguments[0].get());
//// Logic is the same as "from_json"
ObjectMapper om = new ObjectMapper();
JsonNode jsonNode = om.readTree(jsonString);
return inspHandle.parseJson(jsonNode);
} catch (JsonProcessingException jsonProc) {
throw new HiveException(jsonProc);
} catch (IOException e) {
throw new HiveException(e);
} catch (NullPointerException npe) {
return null;
}
}
@Override
public String getDisplayString(String[] arg0) {
return "json_split(" + arg0[0] + ")";
}
@Override
public ObjectInspector initialize(ObjectInspector[] arguments)
throws UDFArgumentException {
if (arguments.length != 1 && arguments.length != 2) {
throw new UDFArgumentException("Usage : json_split( jsonstring, optional typestring) ");
}
if (!arguments[0].getCategory().equals(Category.PRIMITIVE)
|| ((PrimitiveObjectInspector) arguments[0]).getPrimitiveCategory() != PrimitiveCategory.STRING) {
throw new UDFArgumentException("Usage : json_split( jsonstring, optional typestring) ");
}
stringInspector = (StringObjectInspector) arguments[0];
if (arguments.length > 1) {
if (!arguments[1].getCategory().equals(Category.PRIMITIVE)
|| ((PrimitiveObjectInspector) arguments[0]).getPrimitiveCategory() != PrimitiveCategory.STRING) {
throw new UDFArgumentException("Usage : json_split( jsonstring, optional typestring) ");
}
if (!(arguments[1] instanceof ConstantObjectInspector)) {
throw new UDFArgumentException("Usage : json_split( jsonstring, typestring) : typestring must be constant");
}
ConstantObjectInspector typeInsp = (ConstantObjectInspector) arguments[1];
String typeString = ((Text) typeInsp.getWritableConstantValue()).toString();
TypeInfo valType = TypeInfoUtils.getTypeInfoFromTypeString(typeString);
ObjectInspector valInsp = TypeInfoUtils.getStandardJavaObjectInspectorFromTypeInfo(valType);
ObjectInspector setInspector = ObjectInspectorFactory.getStandardListObjectInspector(valInsp);
inspHandle = InspectorHandleFactory.GenerateInspectorHandle(setInspector);
return inspHandle.getReturnType();
} else {
ObjectInspector valInspector = PrimitiveObjectInspectorFactory.javaStringObjectInspector;
ObjectInspector setInspector = ObjectInspectorFactory.getStandardListObjectInspector(valInspector);
inspHandle = InspectorHandleFactory.GenerateInspectorHandle(setInspector);
return inspHandle.getReturnType();
}
}
}