DataOutputBuffer.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.io;
  19. import java.io.*;
  20. /** A reusable {@link DataOutput} implementation that writes to an in-memory
  21.  * buffer.
  22.  *
  23.  * <p>This saves memory over creating a new DataOutputStream and
  24.  * ByteArrayOutputStream each time data is written.
  25.  *
  26.  * <p>Typical usage is something like the following:<pre>
  27.  *
  28.  * DataOutputBuffer buffer = new DataOutputBuffer();
  29.  * while (... loop condition ...) {
  30.  *   buffer.reset();
  31.  *   ... write buffer using DataOutput methods ...
  32.  *   byte[] data = buffer.getData();
  33.  *   int dataLength = buffer.getLength();
  34.  *   ... write data to its ultimate destination ...
  35.  * }
  36.  * </pre>
  37.  *  
  38.  */
  39. public class DataOutputBuffer extends DataOutputStream {
  40.   private static class Buffer extends ByteArrayOutputStream {
  41.     public byte[] getData() { return buf; }
  42.     public int getLength() { return count; }
  43.     public Buffer() {
  44.       super();
  45.     }
  46.     
  47.     public Buffer(int size) {
  48.       super(size);
  49.     }
  50.     
  51.     public void write(DataInput in, int len) throws IOException {
  52.       int newcount = count + len;
  53.       if (newcount > buf.length) {
  54.         byte newbuf[] = new byte[Math.max(buf.length << 1, newcount)];
  55.         System.arraycopy(buf, 0, newbuf, 0, count);
  56.         buf = newbuf;
  57.       }
  58.       in.readFully(buf, count, len);
  59.       count = newcount;
  60.     }
  61.   }
  62.   private Buffer buffer;
  63.   
  64.   /** Constructs a new empty buffer. */
  65.   public DataOutputBuffer() {
  66.     this(new Buffer());
  67.   }
  68.   
  69.   public DataOutputBuffer(int size) {
  70.     this(new Buffer(size));
  71.   }
  72.   
  73.   private DataOutputBuffer(Buffer buffer) {
  74.     super(buffer);
  75.     this.buffer = buffer;
  76.   }
  77.   /** Returns the current contents of the buffer.
  78.    *  Data is only valid to {@link #getLength()}.
  79.    */
  80.   public byte[] getData() { return buffer.getData(); }
  81.   /** Returns the length of the valid data currently in the buffer. */
  82.   public int getLength() { return buffer.getLength(); }
  83.   /** Resets the buffer to empty. */
  84.   public DataOutputBuffer reset() {
  85.     this.written = 0;
  86.     buffer.reset();
  87.     return this;
  88.   }
  89.   /** Writes bytes from a DataInput directly into the buffer. */
  90.   public void write(DataInput in, int length) throws IOException {
  91.     buffer.write(in, length);
  92.   }
  93.   /** Write to a file stream */
  94.   public void writeTo(OutputStream out) throws IOException {
  95.     buffer.writeTo(out);
  96.   }
  97. }