Utils.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  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.record.meta;
  19. import java.io.IOException;
  20. import java.util.Iterator;
  21. import org.apache.hadoop.record.RecordInput;
  22. /**
  23.  * Various utility functions for Hadooop record I/O platform.
  24.  */
  25. public class Utils {
  26.   
  27.   /** Cannot create a new instance of Utils */
  28.   private Utils() {
  29.   }
  30.   
  31.   /**
  32.    * read/skip bytes from stream based on a type
  33.    */
  34.   public static void skip(RecordInput rin, String tag, TypeID typeID) throws IOException {
  35.     switch (typeID.typeVal) {
  36.     case TypeID.RIOType.BOOL: 
  37.       rin.readBool(tag);
  38.       break;
  39.     case TypeID.RIOType.BUFFER: 
  40.       rin.readBuffer(tag);
  41.       break;
  42.     case TypeID.RIOType.BYTE: 
  43.       rin.readByte(tag);
  44.       break;
  45.     case TypeID.RIOType.DOUBLE: 
  46.       rin.readDouble(tag);
  47.       break;
  48.     case TypeID.RIOType.FLOAT: 
  49.       rin.readFloat(tag);
  50.       break;
  51.     case TypeID.RIOType.INT: 
  52.       rin.readInt(tag);
  53.       break;
  54.     case TypeID.RIOType.LONG: 
  55.       rin.readLong(tag);
  56.       break;
  57.     case TypeID.RIOType.MAP: 
  58.       org.apache.hadoop.record.Index midx1 = rin.startMap(tag);
  59.       MapTypeID mtID = (MapTypeID) typeID;
  60.       for (; !midx1.done(); midx1.incr()) {
  61.         skip(rin, tag, mtID.getKeyTypeID());
  62.         skip(rin, tag, mtID.getValueTypeID());
  63.       }
  64.       rin.endMap(tag);
  65.       break;
  66.     case TypeID.RIOType.STRING: 
  67.       rin.readString(tag);
  68.       break;
  69.     case TypeID.RIOType.STRUCT:
  70.       rin.startRecord(tag);
  71.       // read past each field in the struct
  72.       StructTypeID stID = (StructTypeID) typeID;
  73.       Iterator<FieldTypeInfo> it = stID.getFieldTypeInfos().iterator();
  74.       while (it.hasNext()) {
  75.         FieldTypeInfo tInfo = it.next();
  76.         skip(rin, tag, tInfo.getTypeID());
  77.       }
  78.       rin.endRecord(tag);
  79.       break;
  80.     case TypeID.RIOType.VECTOR: 
  81.       org.apache.hadoop.record.Index vidx1 = rin.startVector(tag);
  82.       VectorTypeID vtID = (VectorTypeID) typeID;
  83.       for (; !vidx1.done(); vidx1.incr()) {
  84.         skip(rin, tag, vtID.getElementTypeID());
  85.       }
  86.       rin.endVector(tag);
  87.       break;
  88.     default: 
  89.       // shouldn't be here
  90.       throw new IOException("Unknown typeID when skipping bytes");
  91.     }
  92.   }
  93. }