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

网格计算

开发平台:

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;
  19. import java.io.IOException;
  20. /**
  21.  * Interface that all the Deserializers have to implement.
  22.  */
  23. public interface RecordInput {
  24.   /**
  25.    * Read a byte from serialized record.
  26.    * @param tag Used by tagged serialization formats (such as XML)
  27.    * @return value read from serialized record.
  28.    */
  29.   byte readByte(String tag) throws IOException;
  30.   
  31.   /**
  32.    * Read a boolean from serialized record.
  33.    * @param tag Used by tagged serialization formats (such as XML)
  34.    * @return value read from serialized record.
  35.    */
  36.   boolean readBool(String tag) throws IOException;
  37.   
  38.   /**
  39.    * Read an integer from serialized record.
  40.    * @param tag Used by tagged serialization formats (such as XML)
  41.    * @return value read from serialized record.
  42.    */
  43.   int readInt(String tag) throws IOException;
  44.   
  45.   /**
  46.    * Read a long integer from serialized record.
  47.    * @param tag Used by tagged serialization formats (such as XML)
  48.    * @return value read from serialized record.
  49.    */
  50.   long readLong(String tag) throws IOException;
  51.   
  52.   /**
  53.    * Read a single-precision float from serialized record.
  54.    * @param tag Used by tagged serialization formats (such as XML)
  55.    * @return value read from serialized record.
  56.    */
  57.   float readFloat(String tag) throws IOException;
  58.   
  59.   /**
  60.    * Read a double-precision number from serialized record.
  61.    * @param tag Used by tagged serialization formats (such as XML)
  62.    * @return value read from serialized record.
  63.    */
  64.   double readDouble(String tag) throws IOException;
  65.   
  66.   /**
  67.    * Read a UTF-8 encoded string from serialized record.
  68.    * @param tag Used by tagged serialization formats (such as XML)
  69.    * @return value read from serialized record.
  70.    */
  71.   String readString(String tag) throws IOException;
  72.   
  73.   /**
  74.    * Read byte array from serialized record.
  75.    * @param tag Used by tagged serialization formats (such as XML)
  76.    * @return value read from serialized record.
  77.    */
  78.   Buffer readBuffer(String tag) throws IOException;
  79.   
  80.   /**
  81.    * Check the mark for start of the serialized record.
  82.    * @param tag Used by tagged serialization formats (such as XML)
  83.    */
  84.   void startRecord(String tag) throws IOException;
  85.   
  86.   /**
  87.    * Check the mark for end of the serialized record.
  88.    * @param tag Used by tagged serialization formats (such as XML)
  89.    */
  90.   void endRecord(String tag) throws IOException;
  91.   
  92.   /**
  93.    * Check the mark for start of the serialized vector.
  94.    * @param tag Used by tagged serialization formats (such as XML)
  95.    * @return Index that is used to count the number of elements.
  96.    */
  97.   Index startVector(String tag) throws IOException;
  98.   
  99.   /**
  100.    * Check the mark for end of the serialized vector.
  101.    * @param tag Used by tagged serialization formats (such as XML)
  102.    */
  103.   void endVector(String tag) throws IOException;
  104.   
  105.   /**
  106.    * Check the mark for start of the serialized map.
  107.    * @param tag Used by tagged serialization formats (such as XML)
  108.    * @return Index that is used to count the number of map entries.
  109.    */
  110.   Index startMap(String tag) throws IOException;
  111.   
  112.   /**
  113.    * Check the mark for end of the serialized map.
  114.    * @param tag Used by tagged serialization formats (such as XML)
  115.    */
  116.   void endMap(String tag) throws IOException;
  117. }