PageRenderTime 48ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

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

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