PageRenderTime 46ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/release-0.1-rc2/hive/external/serde/src/java/org/apache/hadoop/hive/serde2/dynamic_type/DynamicSerDeTypei64.java

#
Java | 78 lines | 45 code | 11 blank | 22 comment | 4 complexity | 2d5b0ff11cf91573a6d4eab164f894d8 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.serde2.dynamic_type;
  19. import org.apache.hadoop.hive.serde2.SerDeException;
  20. import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
  21. import org.apache.hadoop.hive.serde2.objectinspector.primitive.LongObjectInspector;
  22. import org.apache.thrift.TException;
  23. import org.apache.thrift.protocol.TProtocol;
  24. import org.apache.thrift.protocol.TType;
  25. /**
  26. * DynamicSerDeTypei64.
  27. *
  28. */
  29. public class DynamicSerDeTypei64 extends DynamicSerDeTypeBase {
  30. @Override
  31. public Class getRealType() {
  32. return Long.valueOf(0).getClass();
  33. }
  34. // production is: i64
  35. public DynamicSerDeTypei64(int i) {
  36. super(i);
  37. }
  38. public DynamicSerDeTypei64(thrift_grammar p, int i) {
  39. super(p, i);
  40. }
  41. @Override
  42. public String toString() {
  43. return "i64";
  44. }
  45. @Override
  46. public Object deserialize(Object reuse, TProtocol iprot)
  47. throws SerDeException, TException, IllegalAccessException {
  48. long val = iprot.readI64();
  49. if (val == 0
  50. && iprot instanceof org.apache.hadoop.hive.serde2.thrift.WriteNullsProtocol
  51. && ((org.apache.hadoop.hive.serde2.thrift.WriteNullsProtocol) iprot)
  52. .lastPrimitiveWasNull()) {
  53. return null;
  54. }
  55. return Long.valueOf(val);
  56. }
  57. @Override
  58. public void serialize(Object o, ObjectInspector oi, TProtocol oprot)
  59. throws TException, SerDeException, NoSuchFieldException, IllegalAccessException {
  60. LongObjectInspector poi = (LongObjectInspector) oi;
  61. oprot.writeI64(poi.get(o));
  62. }
  63. @Override
  64. public byte getType() {
  65. return TType.I64;
  66. }
  67. }