📄 deflater.java
字号:
/* Deflater.java - Compress a data stream Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception statement from your version. */package java.util.zip;/** * 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 * @author Tom Tromey */public class Deflater{ /** * The best and slowest compression level. This tries to find very * long and distant string repetitions. */ public static final int BEST_COMPRESSION = 9; /** * The worst but fastest compression level. */ public static final int BEST_SPEED = 1; /** * The default compression level. */ public static final int DEFAULT_COMPRESSION = -1; /** * This level won't compress at all but output uncompressed blocks. */ public static final int NO_COMPRESSION = 0; /** * The default strategy. */ public static final int DEFAULT_STRATEGY = 0; /** * This strategy will only allow longer string repetitions. It is * useful for random data with a small character set. */ public static final int FILTERED = 1; /** * 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. */ public static final int HUFFMAN_ONLY = 2; /** * The compression method. This is the only method supported so far. * There is no need to use this constant at all. */ public static final int DEFLATED = 8; /* * The Deflater can do the following state transitions: * * (1) -> INIT_STATE ----> INIT_FINISHING_STATE ---. * / | (2) (5) | * / v (5) | * (3)| SETDICT_STATE ---> SETDICT_FINISHING_STATE |(3) * \ | (3) | ,-------' * | | | (3) / * v v (5) v v * (1) -> BUSY_STATE ----> FINISHING_STATE * | (6) * v * FINISHED_STATE * \_____________________________________/ * | (7) * v * CLOSED_STATE * * (1) If we should produce a header we start in INIT_STATE, otherwise * we start in BUSY_STATE. * (2) A dictionary may be set only when we are in INIT_STATE, then * we change the state as indicated. * (3) Whether a dictionary is set or not, on the first call of deflate * we change to BUSY_STATE. * (4) -- intentionally left blank -- :) * (5) FINISHING_STATE is entered, when flush() is called to indicate that * there is no more INPUT. There are also states indicating, that * the header wasn't written yet. * (6) FINISHED_STATE is entered, when everything has been flushed to the * internal pending output buffer. * (7) At any time (7) * */ private static final int IS_SETDICT = 0x01; private static final int IS_FLUSHING = 0x04; private static final int IS_FINISHING = 0x08; private static final int INIT_STATE = 0x00; private static final int SETDICT_STATE = 0x01; private static final int INIT_FINISHING_STATE = 0x08; private static final int SETDICT_FINISHING_STATE = 0x09; private static final int BUSY_STATE = 0x10; private static final int FLUSHING_STATE = 0x14; private static final int FINISHING_STATE = 0x1c; private static final int FINISHED_STATE = 0x1e; private static final int CLOSED_STATE = 0x7f; /** Compression level. */ private int level; /** should we include a header. */ private boolean noHeader; /** The current state. */ private int state; /** The total bytes of output written. */ private int totalOut; /** The pending output. */ private DeflaterPending pending; /** The deflater engine. */ private DeflaterEngine engine; /** * Creates a new deflater with default compression level. */ public Deflater() { this(DEFAULT_COMPRESSION, false); } /** * 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) { this(lvl, false); } /** * 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 nowrap) { if (lvl == DEFAULT_COMPRESSION) lvl = 6; else if (lvl < NO_COMPRESSION || lvl > BEST_COMPRESSION) throw new IllegalArgumentException(); pending = new DeflaterPending(); engine = new DeflaterEngine(pending); this.noHeader = nowrap; setStrategy(DEFAULT_STRATEGY); setLevel(lvl); reset(); } /** * 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 void reset() { state = (noHeader ? BUSY_STATE : INIT_STATE); totalOut = 0; pending.reset(); engine.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 void end() { engine = null; pending = null; state = CLOSED_STATE; } /** * Gets the current adler checksum of the data that was processed so * far. */ public int getAdler() { return engine.getAdler(); } /** * Gets the number of input bytes processed so far. */ public int getTotalIn() { return engine.getTotalIn(); } /** * Gets the number of output bytes so far. */ public int getTotalOut() { return totalOut; } /** * Finalizes this object. */ protected void finalize()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -