BinaryRecordOutput.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.IOException;
  20. import java.util.TreeMap;
  21. import java.util.ArrayList;
  22. import java.io.DataOutput;
  23. import java.io.DataOutputStream;
  24. import java.io.OutputStream;
  25. /**
  26.  */
  27. public class BinaryRecordOutput implements RecordOutput {
  28.     
  29.   private DataOutput out;
  30.     
  31.   private BinaryRecordOutput() {}
  32.     
  33.   private void setDataOutput(DataOutput out) {
  34.     this.out = out;
  35.   }
  36.     
  37.   private static ThreadLocal bOut = new ThreadLocal() {
  38.       protected synchronized Object initialValue() {
  39.         return new BinaryRecordOutput();
  40.       }
  41.     };
  42.     
  43.   /**
  44.    * Get a thread-local record output for the supplied DataOutput.
  45.    * @param out data output stream
  46.    * @return binary record output corresponding to the supplied DataOutput.
  47.    */
  48.   public static BinaryRecordOutput get(DataOutput out) {
  49.     BinaryRecordOutput bout = (BinaryRecordOutput) bOut.get();
  50.     bout.setDataOutput(out);
  51.     return bout;
  52.   }
  53.     
  54.   /** Creates a new instance of BinaryRecordOutput */
  55.   public BinaryRecordOutput(OutputStream out) {
  56.     this.out = new DataOutputStream(out);
  57.   }
  58.     
  59.   /** Creates a new instance of BinaryRecordOutput */
  60.   public BinaryRecordOutput(DataOutput out) {
  61.     this.out = out;
  62.   }
  63.     
  64.     
  65.   public void writeByte(byte b, String tag) throws IOException {
  66.     out.writeByte(b);
  67.   }
  68.     
  69.   public void writeBool(boolean b, String tag) throws IOException {
  70.     out.writeBoolean(b);
  71.   }
  72.     
  73.   public void writeInt(int i, String tag) throws IOException {
  74.     Utils.writeVInt(out, i);
  75.   }
  76.     
  77.   public void writeLong(long l, String tag) throws IOException {
  78.     Utils.writeVLong(out, l);
  79.   }
  80.     
  81.   public void writeFloat(float f, String tag) throws IOException {
  82.     out.writeFloat(f);
  83.   }
  84.     
  85.   public void writeDouble(double d, String tag) throws IOException {
  86.     out.writeDouble(d);
  87.   }
  88.     
  89.   public void writeString(String s, String tag) throws IOException {
  90.     Utils.toBinaryString(out, s);
  91.   }
  92.     
  93.   public void writeBuffer(Buffer buf, String tag)
  94.     throws IOException {
  95.     byte[] barr = buf.get();
  96.     int len = buf.getCount();
  97.     Utils.writeVInt(out, len);
  98.     out.write(barr, 0, len);
  99.   }
  100.     
  101.   public void startRecord(Record r, String tag) throws IOException {}
  102.     
  103.   public void endRecord(Record r, String tag) throws IOException {}
  104.     
  105.   public void startVector(ArrayList v, String tag) throws IOException {
  106.     writeInt(v.size(), tag);
  107.   }
  108.     
  109.   public void endVector(ArrayList v, String tag) throws IOException {}
  110.     
  111.   public void startMap(TreeMap v, String tag) throws IOException {
  112.     writeInt(v.size(), tag);
  113.   }
  114.     
  115.   public void endMap(TreeMap v, String tag) throws IOException {}
  116.     
  117. }