Deflater.java 11 KB
Newer Older
1
/* Deflater.java - Compress a data stream
2
   Copyright (C) 1999, 2000, 2001, 2004, 2006 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 39

package java.util.zip;

40 41 42
import gnu.gcj.RawData;

/**
43 44 45 46 47 48 49 50
 * This is the Deflater class.  The deflater class compresses input
 * with the deflate algorithm described in RFC 1951.  It has several
 * compression levels and three different strategies described below.
 * 
 * This class is <i>not</i> thread safe.  This is inherent in the API, due
 * to the split of deflate and setInput.
 * 
 * @author Jochen Hoenicke
51 52
 * @author Tom Tromey
 */
Tom Tromey committed
53 54
public class Deflater
{
55 56 57 58
  /**
   * The best and slowest compression level.  This tries to find very
   * long and distant string repetitions.  
   */
59
  public static final int BEST_COMPRESSION = 9;
60 61 62
  /**
   * The worst but fastest compression level.  
   */
63
  public static final int BEST_SPEED = 1;
64 65 66
  /**
   * The default compression level.
   */
67
  public static final int DEFAULT_COMPRESSION = -1;
68 69 70
  /**
   * This level won't compress at all but output uncompressed blocks.
   */
71 72
  public static final int NO_COMPRESSION = 0;

73 74 75
  /**
   * The default strategy.
   */
76
  public static final int DEFAULT_STRATEGY = 0;
77 78 79 80
  /**
   * This strategy will only allow longer string repetitions.  It is
   * useful for random data with a small character set.
   */
81
  public static final int FILTERED = 1;
82 83 84 85 86 87

  /** 
   * This strategy will not look for string repetitions at all.  It
   * only encodes with Huffman trees (which means, that more common
   * characters get a smaller encoding.  
   */
88 89
  public static final int HUFFMAN_ONLY = 2;

90 91 92 93
  /**
   * The compression method.  This is the only method supported so far.
   * There is no need to use this constant at all.
   */
94 95
  public static final int DEFLATED = 8;

96 97
  /** Compression level. */
  private int level;
98

99 100 101 102 103
  /** Compression strategy. */
  private int strategy;

  /** The zlib stream. */
  private RawData zstream;
104

105 106 107 108 109 110 111 112 113 114
  /** True if finished. */
  private boolean is_finished;

  /** `Flush' flag to pass to next call to deflate. */
  private int flush_flag;

  /**
   * Creates a new deflater with default compression level.
   */
  public Deflater()
115
  {
116
    this(DEFAULT_COMPRESSION, false);
117 118
  }

119 120 121 122 123 124 125
  /**
   * Creates a new deflater with given compression level.
   * @param lvl the compression level, a value between NO_COMPRESSION
   * and BEST_COMPRESSION, or DEFAULT_COMPRESSION.  
   * @exception IllegalArgumentException if lvl is out of range.
   */
  public Deflater(int lvl)
126
  {
127
    this(lvl, false);
128 129
  }

130 131 132 133 134 135 136 137 138 139
  /**
   * Creates a new deflater with given compression level.
   * @param lvl the compression level, a value between NO_COMPRESSION
   * and BEST_COMPRESSION.  
   * @param nowrap true, iff we should suppress the deflate header at the
   * beginning and the adler checksum at the end of the output.  This is
   * useful for the GZIP format.
   * @exception IllegalArgumentException if lvl is out of range.
   */
  public Deflater(int lvl, boolean noHeader)
140 141
  {
    this.strategy = DEFAULT_STRATEGY;
142 143
    init(lvl, noHeader);
    setLevel(lvl);
144 145
  }

146 147 148
  private native void init(int level, boolean noHeader);
  
  private native void update();
149

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
  /** 
   * Resets the deflater.  The deflater acts afterwards as if it was
   * just created with the same compression level and strategy as it
   * had before.  
   */
  public native void reset();
  
  /**
   * Frees all objects allocated by the compressor.  There's no
   * reason to call this, since you can just rely on garbage
   * collection.  Exists only for compatibility against Sun's JDK,
   * where the compressor allocates native memory.
   * If you call any method (even reset) afterwards the behaviour is
   * <i>undefined</i>.  
   * @deprecated Just clear all references to deflater instead.
   */
  public native void end();
167

168 169 170 171 172
  /** 
   * Gets the current adler checksum of the data that was processed so
   * far.
   */
  public native int getAdler();
173

174 175 176
  /** 
   * Gets the number of input bytes processed so far.
   */
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
  @Deprecated
  public int getTotalIn()
  {
    return (int) getBytesRead();
  }

  /** 
   * Gets the number of input bytes processed so far.
   * @since 1.5
   */
  public native long getBytesRead();

  /** 
   * Gets the number of output bytes so far.
   */
  @Deprecated
  public int getTotalOut()
  {
    return (int) getBytesWritten();
  }
197 198 199

  /** 
   * Gets the number of output bytes so far.
200
   * @since 1.5
201
   */
202
  public native long getBytesWritten();
203 204 205 206 207

  /** 
   * Finalizes this object.
   */
  protected void finalize()
208
  {
209
    end();
210 211
  }

212 213 214 215 216 217
  /** 
   * Finishes the deflater with the current input block.  It is an error
   * to give more input after this method was called.  This method must
   * be called to force all bytes to be flushed.
   */
  public native void finish();
218

219 220 221 222 223
  /** 
   * Returns true iff the stream was finished and no more output bytes
   * are available.
   */
  public synchronized boolean finished()
224
  {
225
    return is_finished;
226 227
  }

228 229 230 231 232 233 234 235
  /**
   * Returns true, if the input buffer is empty.
   * You should then call setInput(). <br>
   *
   * <em>NOTE</em>: This method can also return true when the stream
   * was finished.  
   */
  public native boolean needsInput();
236

237 238 239 240 241 242 243 244 245 246 247 248
  /**
   * Sets the data which should be compressed next.  This should be only
   * called when needsInput indicates that more input is needed.
   * If you call setInput when needsInput() returns false, the
   * previous input that is still pending will be thrown away.
   * The given byte array should not be changed, before needsInput() returns
   * true again.
   * This call is equivalent to <code>setInput(input, 0, input.length)</code>.
   * @param input the buffer containing the input data.
   * @exception IllegalStateException if the buffer was finished() or ended().
   */
  public void setInput(byte[] input)
249
  {
250
    setInput(input, 0, input.length);
251 252
  }

253 254 255 256 257 258 259 260 261 262 263 264
  /**
   * Sets the data which should be compressed next.  This should be
   * only called when needsInput indicates that more input is needed.
   * The given byte array should not be changed, before needsInput() returns
   * true again.
   * @param input the buffer containing the input data.
   * @param off the start of the data.
   * @param len the length of the data.  
   * @exception IllegalStateException if the buffer was finished() or ended()
   * or if previous input is still pending.
   */
  public native void setInput(byte[] input, int off, int len);
265

266 267 268 269 270 271 272 273
  /** 
   * Sets the compression level.  There is no guarantee of the exact
   * position of the change, but if you call this when needsInput is
   * true the change of compression level will occur somewhere near
   * before the end of the so far given input.  
   * @param lvl the new compression level.
   */
  public synchronized void setLevel(int lvl)
274 275
  {
    if (lvl != -1 && (lvl < 0 || lvl > 9))
276
      throw new IllegalArgumentException();
277
    level = (lvl == -1) ? 6 : lvl;
278
    update();
279 280
  }

281 282 283 284 285 286 287 288
  /** 
   * Sets the compression strategy. Strategy is one of
   * DEFAULT_STRATEGY, HUFFMAN_ONLY and FILTERED.  For the exact
   * position where the strategy is changed, the same as for
   * setLevel() applies.
   * @param stgy the new compression strategy.
   */
  public synchronized void setStrategy(int stgy)
289 290 291
  {
    if (stgy != DEFAULT_STRATEGY && stgy != FILTERED
	&& stgy != HUFFMAN_ONLY)
292
      throw new IllegalArgumentException();
293
    strategy = stgy;
294
    update();
295 296
  }

297 298 299 300 301 302 303 304 305 306
  /**
   * Deflates the current input block to the given array.  It returns 
   * the number of bytes compressed, or 0 if either 
   * needsInput() or finished() returns true or length is zero.
   * @param output the buffer where to write the compressed data.
   */
  public int deflate(byte[] output)
  {
    return deflate(output, 0, output.length);
  }
307

308 309 310 311 312 313 314 315 316 317 318 319
  /**
   * Deflates the current input block to the given array.  It returns 
   * the number of bytes compressed, or 0 if either 
   * needsInput() or finished() returns true or length is zero.
   * @param output the buffer where to write the compressed data.
   * @param offset the offset into the output array.
   * @param length the maximum number of bytes that may be written.
   * @exception IllegalStateException if end() was called.
   * @exception IndexOutOfBoundsException if offset and/or length
   * don't match the array length.  
   */
  public native int deflate(byte[] output, int off, int len);
320

321 322 323 324 325 326 327 328 329 330 331 332
  /**
   * Sets the dictionary which should be used in the deflate process.
   * This call is equivalent to <code>setDictionary(dict, 0,
   * dict.length)</code>.  
   * @param dict the dictionary.  
   * @exception IllegalStateException if setInput () or deflate ()
   * were already called or another dictionary was already set.  
   */
  public void setDictionary(byte[] dict)
  {
    setDictionary(dict, 0, dict.length);
  }
333

334 335 336 337 338 339 340 341 342 343 344 345 346 347
  /**
   * Sets the dictionary which should be used in the deflate process.
   * The dictionary should be a byte array containing strings that are
   * likely to occur in the data which should be compressed.  The
   * dictionary is not stored in the compressed output, only a
   * checksum.  To decompress the output you need to supply the same
   * dictionary again.
   * @param dict the dictionary.
   * @param offset an offset into the dictionary.
   * @param length the length of the dictionary.
   * @exception IllegalStateException if setInput () or deflate () were
   * already called or another dictionary was already set.
   */
  public native void setDictionary(byte[] buf, int off, int len);
348 349 350 351 352 353

  // Classpath's compression library supports flushing, but we
  // don't.  So this is a no-op here.
  void flush()
  {
  }
Tom Tromey committed
354
}