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