PageRenderTime 49ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/release-0.1-rc2/hive/external/ql/src/java/org/apache/hadoop/hive/ql/exec/ExprNodeConstantEvaluator.java

#
Java | 60 lines | 30 code | 8 blank | 22 comment | 0 complexity | 6fc1a8e9fb038478daa45b65848ded4f MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, CPL-1.0
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.hadoop.hive.ql.exec;
  19. import org.apache.hadoop.hive.ql.metadata.HiveException;
  20. import org.apache.hadoop.hive.ql.plan.ExprNodeConstantDesc;
  21. import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
  22. import org.apache.hadoop.hive.serde2.objectinspector.PrimitiveObjectInspector.PrimitiveCategory;
  23. import org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
  24. import org.apache.hadoop.hive.serde2.typeinfo.PrimitiveTypeInfo;
  25. /**
  26. * ExprNodeConstantEvaluator.
  27. *
  28. */
  29. public class ExprNodeConstantEvaluator extends ExprNodeEvaluator {
  30. protected ExprNodeConstantDesc expr;
  31. transient ObjectInspector writableObjectInspector;
  32. transient Object writableValue;
  33. public ExprNodeConstantEvaluator(ExprNodeConstantDesc expr) {
  34. this.expr = expr;
  35. PrimitiveCategory pc = ((PrimitiveTypeInfo) expr.getTypeInfo())
  36. .getPrimitiveCategory();
  37. writableObjectInspector = PrimitiveObjectInspectorFactory
  38. .getPrimitiveWritableObjectInspector(pc);
  39. // Convert from Java to Writable
  40. writableValue = PrimitiveObjectInspectorFactory
  41. .getPrimitiveJavaObjectInspector(pc).getPrimitiveWritableObject(
  42. expr.getValue());
  43. }
  44. @Override
  45. public ObjectInspector initialize(ObjectInspector rowInspector) throws HiveException {
  46. return writableObjectInspector;
  47. }
  48. @Override
  49. public Object evaluate(Object row) throws HiveException {
  50. return writableValue;
  51. }
  52. }