Record.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;
  19. import java.io.DataInput;
  20. import java.io.DataOutput;
  21. import java.io.ByteArrayOutputStream;
  22. import java.io.IOException;
  23. import org.apache.hadoop.io.WritableComparable;
  24. /**
  25.  * Abstract class that is extended by generated classes.
  26.  * 
  27.  */
  28. public abstract class Record implements WritableComparable, Cloneable {
  29.   
  30.   /**
  31.    * Serialize a record with tag (ususally field name)
  32.    * @param rout Record output destination
  33.    * @param tag record tag (Used only in tagged serialization e.g. XML)
  34.    */
  35.   public abstract void serialize(RecordOutput rout, String tag)
  36.     throws IOException;
  37.   
  38.   /**
  39.    * Deserialize a record with a tag (usually field name)
  40.    * @param rin Record input source
  41.    * @param tag Record tag (Used only in tagged serialization e.g. XML)
  42.    */
  43.   public abstract void deserialize(RecordInput rin, String tag)
  44.     throws IOException;
  45.   
  46.   // inheric javadoc
  47.   public abstract int compareTo (final Object peer) throws ClassCastException;
  48.   
  49.   /**
  50.    * Serialize a record without a tag
  51.    * @param rout Record output destination
  52.    */
  53.   public void serialize(RecordOutput rout) throws IOException {
  54.     this.serialize(rout, "");
  55.   }
  56.   
  57.   /**
  58.    * Deserialize a record without a tag
  59.    * @param rin Record input source
  60.    */
  61.   public void deserialize(RecordInput rin) throws IOException {
  62.     this.deserialize(rin, "");
  63.   }
  64.   
  65.   // inherit javadoc
  66.   public void write(final DataOutput out) throws java.io.IOException {
  67.     BinaryRecordOutput bout = BinaryRecordOutput.get(out);
  68.     this.serialize(bout);
  69.   }
  70.   
  71.   // inherit javadoc
  72.   public void readFields(final DataInput din) throws java.io.IOException {
  73.     BinaryRecordInput rin = BinaryRecordInput.get(din);
  74.     this.deserialize(rin);
  75.   }
  76.   // inherit javadoc
  77.   public String toString() {
  78.     try {
  79.       ByteArrayOutputStream s = new ByteArrayOutputStream();
  80.       CsvRecordOutput a = new CsvRecordOutput(s);
  81.       this.serialize(a);
  82.       return new String(s.toByteArray(), "UTF-8");
  83.     } catch (Throwable ex) {
  84.       throw new RuntimeException(ex);
  85.     }
  86.   }
  87. }