RecordTypeInfo.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.meta;
  19. import java.io.IOException;
  20. import java.util.*;
  21. import org.apache.hadoop.record.RecordInput;
  22. import org.apache.hadoop.record.RecordOutput;
  23. /** 
  24.  * A record's Type Information object which can read/write itself. 
  25.  * 
  26.  * Type information for a record comprises metadata about the record, 
  27.  * as well as a collection of type information for each field in the record. 
  28.  */
  29. public class RecordTypeInfo extends org.apache.hadoop.record.Record 
  30. {
  31.   private String name;
  32.   // A RecordTypeInfo is really just a wrapper around StructTypeID
  33.   StructTypeID sTid;
  34.    // A RecordTypeInfo object is just a collection of TypeInfo objects for each of its fields.  
  35.   //private ArrayList<FieldTypeInfo> typeInfos = new ArrayList<FieldTypeInfo>();
  36.   // we keep a hashmap of struct/record names and their type information, as we need it to 
  37.   // set filters when reading nested structs. This map is used during deserialization.
  38.   //private Map<String, RecordTypeInfo> structRTIs = new HashMap<String, RecordTypeInfo>();
  39.   /**
  40.    * Create an empty RecordTypeInfo object.
  41.    */
  42.   public RecordTypeInfo() {
  43.     sTid = new StructTypeID();
  44.   }
  45.   /**
  46.    * Create a RecordTypeInfo object representing a record with the given name
  47.    * @param name Name of the record
  48.    */
  49.   public RecordTypeInfo(String name) {
  50.     this.name = name;
  51.     sTid = new StructTypeID();
  52.   }
  53.   /*
  54.    * private constructor
  55.    */
  56.   private RecordTypeInfo(String name, StructTypeID stid) {
  57.     this.sTid = stid;
  58.     this.name = name;
  59.   }
  60.   
  61.   /**
  62.    * return the name of the record
  63.    */
  64.   public String getName() {
  65.     return name;
  66.   }
  67.   /**
  68.    * set the name of the record
  69.    */
  70.   public void setName(String name) {
  71.     this.name = name;
  72.   }
  73.   /**
  74.    * Add a field. 
  75.    * @param fieldName Name of the field
  76.    * @param tid Type ID of the field
  77.    */
  78.   public void addField(String fieldName, TypeID tid) {
  79.     sTid.getFieldTypeInfos().add(new FieldTypeInfo(fieldName, tid));
  80.   }
  81.   
  82.   private void addAll(Collection<FieldTypeInfo> tis) {
  83.     sTid.getFieldTypeInfos().addAll(tis);
  84.   }
  85.   /**
  86.    * Return a collection of field type infos
  87.    */
  88.   public Collection<FieldTypeInfo> getFieldTypeInfos() {
  89.     return sTid.getFieldTypeInfos();
  90.   }
  91.   
  92.   /**
  93.    * Return the type info of a nested record. We only consider nesting 
  94.    * to one level. 
  95.    * @param name Name of the nested record
  96.    */
  97.   public RecordTypeInfo getNestedStructTypeInfo(String name) {
  98.     StructTypeID stid = sTid.findStruct(name);
  99.     if (null == stid) return null;
  100.     return new RecordTypeInfo(name, stid);
  101.   }
  102.   /**
  103.    * Serialize the type information for a record
  104.    */
  105.   public void serialize(RecordOutput rout, String tag) throws IOException {
  106.     // write out any header, version info, here
  107.     rout.startRecord(this, tag);
  108.     rout.writeString(name, tag);
  109.     sTid.writeRest(rout, tag);
  110.     rout.endRecord(this, tag);
  111.   }
  112.   /**
  113.    * Deserialize the type information for a record
  114.    */
  115.   public void deserialize(RecordInput rin, String tag) throws IOException {
  116.     // read in any header, version info 
  117.     rin.startRecord(tag);
  118.     // name
  119.     this.name = rin.readString(tag);
  120.     sTid.read(rin, tag);
  121.     rin.endRecord(tag);
  122.   }
  123.   
  124.   /**
  125.    * This class doesn't implement Comparable as it's not meant to be used 
  126.    * for anything besides de/serializing.
  127.    * So we always throw an exception.
  128.    * Not implemented. Always returns 0 if another RecordTypeInfo is passed in. 
  129.    */
  130.   public int compareTo (final Object peer_) throws ClassCastException {
  131.     if (!(peer_ instanceof RecordTypeInfo)) {
  132.       throw new ClassCastException("Comparing different types of records.");
  133.     }
  134.     throw new UnsupportedOperationException("compareTo() is not supported");
  135.   }
  136. }