DeflaterOutputStream.java 5.63 KB
Newer Older
1
/* DeflaterOutputStream.java - Output filter for compressing.
2
   Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
3 4 5 6 7 8 9

This file is part of GNU Classpath.

GNU Classpath 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, or (at your option)
any later version.
10

11 12 13 14 15 16 17
GNU Classpath 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.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Kelley Cook committed
18 19
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
20

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */
Tom Tromey committed
37

38

Tom Tromey committed
39 40
package java.util.zip;

41 42
import java.io.FilterOutputStream;
import java.io.IOException;
43
import java.io.OutputStream;
44 45 46 47 48

/* Written using on-line Java Platform 1.2 API Specification
 * and JCL book.
 * Believed complete and correct.
 */
Tom Tromey committed
49

50 51 52 53 54 55 56 57 58 59
/**
 * This is a special FilterOutputStream deflating the bytes that are
 * written through it.  It uses the Deflater for deflating.
 *
 * A special thing to be noted is that flush() doesn't flush
 * everything in Sun's JDK, but it does so in jazzlib. This is because
 * Sun's Deflater doesn't have a way to flush() everything, without
 * finishing the stream.
 *
 * @author Tom Tromey, Jochen Hoenicke
60
 * @date Jan 11, 2001 
61
 */
Tom Tromey committed
62 63
public class DeflaterOutputStream extends FilterOutputStream
{
64 65 66 67 68
  /** 
   * This buffer is used temporarily to retrieve the bytes from the
   * deflater and write them to the underlying output stream.  
   */
  protected byte[] buf;
Tom Tromey committed
69

70 71 72 73 74
  /** 
   * The deflater which is used to deflate the stream.
   */
  protected Deflater def;
  
75 76 77 78 79
  /**
   * Deflates everything in the def's input buffers.  This will call
   * <code>def.deflate()</code> until all bytes from the input buffers
   * are processed.
   */
80
  protected void deflate() throws IOException
81
  {
82
    while (! def.needsInput())
83 84
      {
	int len = def.deflate(buf, 0, buf.length);
85 86 87
	if (len > 0)
	  out.write(buf, 0, len);
       }
88
  }
Tom Tromey committed
89

90 91 92 93 94
  /** 
   * Creates a new DeflaterOutputStream with a default Deflater and
   * default buffer size.
   * @param out the output stream where deflated output should be written.
   */
95
  public DeflaterOutputStream(OutputStream out)
Tom Tromey committed
96
  {
97
    this(out, new Deflater(), 512);
Tom Tromey committed
98 99
  }

100 101 102 103 104 105
  /** 
   * Creates a new DeflaterOutputStream with the given Deflater and
   * default buffer size.
   * @param out the output stream where deflated output should be written.
   * @param defl the underlying deflater.
   */
106
  public DeflaterOutputStream(OutputStream out, Deflater defl)
Tom Tromey committed
107
  {
108
    this(out, defl, 512);
Tom Tromey committed
109 110
  }

111 112 113 114 115 116 117 118
  /** 
   * Creates a new DeflaterOutputStream with the given Deflater and
   * buffer size.
   * @param out the output stream where deflated output should be written.
   * @param defl the underlying deflater.
   * @param bufsize the buffer size.
   * @exception IllegalArgumentException if bufsize isn't positive.
   */
Tom Tromey committed
119 120
  public DeflaterOutputStream(OutputStream out, Deflater defl, int bufsize)
  {
121
    super(out);
122 123
    if (bufsize <= 0)
      throw new IllegalArgumentException("bufsize <= 0");
Tom Tromey committed
124 125 126 127
    buf = new byte[bufsize];
    def = defl;
  }

128 129 130 131 132
  /**
   * Finishes the stream by calling finish() on the deflater.  This
   * was the only way to ensure that all bytes are flushed in Sun's
   * JDK.  
   */
133
  public void finish() throws IOException
Tom Tromey committed
134
  {
135
    inbufWrite();
136
    def.finish();
137
    while (! def.finished())
138 139 140 141 142
      {
	int len = def.deflate(buf, 0, buf.length);
	if (len > 0)
	  out.write(buf, 0, len);
      }
Tom Tromey committed
143 144
  }

145 146 147 148 149 150 151 152 153 154 155 156 157 158
  /**
   * Calls finish() and closes the stream. 
   */
  public void close() throws IOException
  {
    finish();
    out.close();
  }

  /**
   * Writes a single byte to the compressed output stream.
   * @param bval the byte value.
   */
  public void write(int bval) throws IOException
Tom Tromey committed
159
  {
160
    if (inbuf == null)
161
      inbuf = new byte[128];
162
    else if (inbufLength == inbuf.length)
163
      inbufWrite();
164
    inbuf[inbufLength++] = (byte) bval;
165 166
  }

167 168 169 170 171 172 173
  /**
   * Writes a len bytes from an array to the compressed stream.
   * @param buf the byte array.
   * @param off the offset into the byte array where to start.
   * @param len the number of bytes to write.
   */
  public void write(byte[] buf, int off, int len) throws IOException
174
  {
175 176 177
    inbufWrite();
    def.setInput(buf, off, len);
    deflate();
178 179
  }

180
  private void inbufWrite() throws IOException
181
  {
182 183
    if (inbufLength > 0)
      {
184
	int size = inbufLength;
185
	inbufLength = 0;
186
	write(inbuf, 0, size);
187
      }
Tom Tromey committed
188
  }
189

190 191 192 193
  // Used, if needed, for write(int).
  private byte[] inbuf;
  // Used length of inbuf.
  private int inbufLength;
Tom Tromey committed
194
}