tempoutputstream.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 196 行

JAVA
196
字号
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the *   Free SoftwareFoundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.vfs;import java.io.*;public class TempOutputStream extends OutputStream{  private TempBuffer _head;  private TempBuffer _tail;  public byte []getTail()  {    return _tail.getBuffer();  }	     public void write(int ch)  {    if (_tail == null)      addBuffer(TempBuffer.allocate());    else if (_tail._buf.length <= _tail._length)      addBuffer(TempBuffer.allocate());    _tail.getBuffer()[_tail._length++] = (byte) ch;  }      @Override  public void write(byte []buf, int offset, int length)  {    int index = 0;    while (index < length) {      if (_tail == null)	addBuffer(TempBuffer.allocate());      else if (_tail._buf.length <= _tail._length)	addBuffer(TempBuffer.allocate());      int sublen = _tail._buf.length - _tail._length;      if (length - index < sublen)	sublen = length - index;      System.arraycopy(buf, index + offset, _tail._buf, _tail._length, sublen);      index += sublen;      _tail._length += sublen;    }  }  private void addBuffer(TempBuffer buf)  {    buf._next = null;    if (_tail != null) {      _tail._next = buf;      _tail = buf;    } else {      _tail = buf;      _head = buf;    }    _head._bufferCount++;  }  @Override  public void flush()    throws IOException  {  }  @Override  public void close()    throws IOException  {  }  /**   * Opens a read stream to the buffer.   */  public ReadStream openRead()    throws IOException  {    close();        TempReadStream read = new TempReadStream(_head);    read.setFreeWhenDone(true);    _head = null;    _tail = null;        return new ReadStream(read);  }  /**   * Opens a read stream to the buffer.   */  public InputStream openInputStream()    throws IOException  {    close();    TempBuffer head = _head;    _head = null;    _tail = null;        return new TempInputStream(head);  }  /**   * Opens a read stream to the buffer.   */  public InputStream openInputStreamNoFree()    throws IOException  {    close();    TempBuffer head = _head;        return new TempInputStreamNoFree(head);  }  /**   * Returns the head buffer.   */  public TempBuffer getHead()  {    return _head;  }  /**   * clear without removing   */  public void clear()  {    _head = null;    _tail = null;  }  public void writeToStream(OutputStream os)    throws IOException  {    for (TempBuffer ptr = _head; ptr != null; ptr = ptr._next) {      os.write(ptr.getBuffer(), 0, ptr.getLength());    }  }  /**   * Returns the total length of the buffer's bytes   */  public int getLength()  {    int length = 0;        for (TempBuffer ptr = _head; ptr != null; ptr = ptr._next) {      length += ptr.getLength();    }    return length;  }  /**   * Clean up the temp stream.   */  public void destroy()  {    TempBuffer ptr = _head;        _head = null;    _tail = null;    TempBuffer.freeAll(ptr);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?