cannam@128
|
1 /* deflate.h -- internal compression state
|
cannam@128
|
2 * Copyright (C) 1995-2012 Jean-loup Gailly
|
cannam@128
|
3 * For conditions of distribution and use, see copyright notice in zlib.h
|
cannam@128
|
4 */
|
cannam@128
|
5
|
cannam@128
|
6 /* WARNING: this file should *not* be used by applications. It is
|
cannam@128
|
7 part of the implementation of the compression library and is
|
cannam@128
|
8 subject to change. Applications should only use zlib.h.
|
cannam@128
|
9 */
|
cannam@128
|
10
|
cannam@128
|
11 /* @(#) $Id$ */
|
cannam@128
|
12
|
cannam@128
|
13 #ifndef DEFLATE_H
|
cannam@128
|
14 #define DEFLATE_H
|
cannam@128
|
15
|
cannam@128
|
16 #include "zutil.h"
|
cannam@128
|
17
|
cannam@128
|
18 /* define NO_GZIP when compiling if you want to disable gzip header and
|
cannam@128
|
19 trailer creation by deflate(). NO_GZIP would be used to avoid linking in
|
cannam@128
|
20 the crc code when it is not needed. For shared libraries, gzip encoding
|
cannam@128
|
21 should be left enabled. */
|
cannam@128
|
22 #ifndef NO_GZIP
|
cannam@128
|
23 # define GZIP
|
cannam@128
|
24 #endif
|
cannam@128
|
25
|
cannam@128
|
26 /* ===========================================================================
|
cannam@128
|
27 * Internal compression state.
|
cannam@128
|
28 */
|
cannam@128
|
29
|
cannam@128
|
30 #define LENGTH_CODES 29
|
cannam@128
|
31 /* number of length codes, not counting the special END_BLOCK code */
|
cannam@128
|
32
|
cannam@128
|
33 #define LITERALS 256
|
cannam@128
|
34 /* number of literal bytes 0..255 */
|
cannam@128
|
35
|
cannam@128
|
36 #define L_CODES (LITERALS+1+LENGTH_CODES)
|
cannam@128
|
37 /* number of Literal or Length codes, including the END_BLOCK code */
|
cannam@128
|
38
|
cannam@128
|
39 #define D_CODES 30
|
cannam@128
|
40 /* number of distance codes */
|
cannam@128
|
41
|
cannam@128
|
42 #define BL_CODES 19
|
cannam@128
|
43 /* number of codes used to transfer the bit lengths */
|
cannam@128
|
44
|
cannam@128
|
45 #define HEAP_SIZE (2*L_CODES+1)
|
cannam@128
|
46 /* maximum heap size */
|
cannam@128
|
47
|
cannam@128
|
48 #define MAX_BITS 15
|
cannam@128
|
49 /* All codes must not exceed MAX_BITS bits */
|
cannam@128
|
50
|
cannam@128
|
51 #define Buf_size 16
|
cannam@128
|
52 /* size of bit buffer in bi_buf */
|
cannam@128
|
53
|
cannam@128
|
54 #define INIT_STATE 42
|
cannam@128
|
55 #define EXTRA_STATE 69
|
cannam@128
|
56 #define NAME_STATE 73
|
cannam@128
|
57 #define COMMENT_STATE 91
|
cannam@128
|
58 #define HCRC_STATE 103
|
cannam@128
|
59 #define BUSY_STATE 113
|
cannam@128
|
60 #define FINISH_STATE 666
|
cannam@128
|
61 /* Stream status */
|
cannam@128
|
62
|
cannam@128
|
63
|
cannam@128
|
64 /* Data structure describing a single value and its code string. */
|
cannam@128
|
65 typedef struct ct_data_s {
|
cannam@128
|
66 union {
|
cannam@128
|
67 ush freq; /* frequency count */
|
cannam@128
|
68 ush code; /* bit string */
|
cannam@128
|
69 } fc;
|
cannam@128
|
70 union {
|
cannam@128
|
71 ush dad; /* father node in Huffman tree */
|
cannam@128
|
72 ush len; /* length of bit string */
|
cannam@128
|
73 } dl;
|
cannam@128
|
74 } FAR ct_data;
|
cannam@128
|
75
|
cannam@128
|
76 #define Freq fc.freq
|
cannam@128
|
77 #define Code fc.code
|
cannam@128
|
78 #define Dad dl.dad
|
cannam@128
|
79 #define Len dl.len
|
cannam@128
|
80
|
cannam@128
|
81 typedef struct static_tree_desc_s static_tree_desc;
|
cannam@128
|
82
|
cannam@128
|
83 typedef struct tree_desc_s {
|
cannam@128
|
84 ct_data *dyn_tree; /* the dynamic tree */
|
cannam@128
|
85 int max_code; /* largest code with non zero frequency */
|
cannam@128
|
86 static_tree_desc *stat_desc; /* the corresponding static tree */
|
cannam@128
|
87 } FAR tree_desc;
|
cannam@128
|
88
|
cannam@128
|
89 typedef ush Pos;
|
cannam@128
|
90 typedef Pos FAR Posf;
|
cannam@128
|
91 typedef unsigned IPos;
|
cannam@128
|
92
|
cannam@128
|
93 /* A Pos is an index in the character window. We use short instead of int to
|
cannam@128
|
94 * save space in the various tables. IPos is used only for parameter passing.
|
cannam@128
|
95 */
|
cannam@128
|
96
|
cannam@128
|
97 typedef struct internal_state {
|
cannam@128
|
98 z_streamp strm; /* pointer back to this zlib stream */
|
cannam@128
|
99 int status; /* as the name implies */
|
cannam@128
|
100 Bytef *pending_buf; /* output still pending */
|
cannam@128
|
101 ulg pending_buf_size; /* size of pending_buf */
|
cannam@128
|
102 Bytef *pending_out; /* next pending byte to output to the stream */
|
cannam@128
|
103 uInt pending; /* nb of bytes in the pending buffer */
|
cannam@128
|
104 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
|
cannam@128
|
105 gz_headerp gzhead; /* gzip header information to write */
|
cannam@128
|
106 uInt gzindex; /* where in extra, name, or comment */
|
cannam@128
|
107 Byte method; /* can only be DEFLATED */
|
cannam@128
|
108 int last_flush; /* value of flush param for previous deflate call */
|
cannam@128
|
109
|
cannam@128
|
110 /* used by deflate.c: */
|
cannam@128
|
111
|
cannam@128
|
112 uInt w_size; /* LZ77 window size (32K by default) */
|
cannam@128
|
113 uInt w_bits; /* log2(w_size) (8..16) */
|
cannam@128
|
114 uInt w_mask; /* w_size - 1 */
|
cannam@128
|
115
|
cannam@128
|
116 Bytef *window;
|
cannam@128
|
117 /* Sliding window. Input bytes are read into the second half of the window,
|
cannam@128
|
118 * and move to the first half later to keep a dictionary of at least wSize
|
cannam@128
|
119 * bytes. With this organization, matches are limited to a distance of
|
cannam@128
|
120 * wSize-MAX_MATCH bytes, but this ensures that IO is always
|
cannam@128
|
121 * performed with a length multiple of the block size. Also, it limits
|
cannam@128
|
122 * the window size to 64K, which is quite useful on MSDOS.
|
cannam@128
|
123 * To do: use the user input buffer as sliding window.
|
cannam@128
|
124 */
|
cannam@128
|
125
|
cannam@128
|
126 ulg window_size;
|
cannam@128
|
127 /* Actual size of window: 2*wSize, except when the user input buffer
|
cannam@128
|
128 * is directly used as sliding window.
|
cannam@128
|
129 */
|
cannam@128
|
130
|
cannam@128
|
131 Posf *prev;
|
cannam@128
|
132 /* Link to older string with same hash index. To limit the size of this
|
cannam@128
|
133 * array to 64K, this link is maintained only for the last 32K strings.
|
cannam@128
|
134 * An index in this array is thus a window index modulo 32K.
|
cannam@128
|
135 */
|
cannam@128
|
136
|
cannam@128
|
137 Posf *head; /* Heads of the hash chains or NIL. */
|
cannam@128
|
138
|
cannam@128
|
139 uInt ins_h; /* hash index of string to be inserted */
|
cannam@128
|
140 uInt hash_size; /* number of elements in hash table */
|
cannam@128
|
141 uInt hash_bits; /* log2(hash_size) */
|
cannam@128
|
142 uInt hash_mask; /* hash_size-1 */
|
cannam@128
|
143
|
cannam@128
|
144 uInt hash_shift;
|
cannam@128
|
145 /* Number of bits by which ins_h must be shifted at each input
|
cannam@128
|
146 * step. It must be such that after MIN_MATCH steps, the oldest
|
cannam@128
|
147 * byte no longer takes part in the hash key, that is:
|
cannam@128
|
148 * hash_shift * MIN_MATCH >= hash_bits
|
cannam@128
|
149 */
|
cannam@128
|
150
|
cannam@128
|
151 long block_start;
|
cannam@128
|
152 /* Window position at the beginning of the current output block. Gets
|
cannam@128
|
153 * negative when the window is moved backwards.
|
cannam@128
|
154 */
|
cannam@128
|
155
|
cannam@128
|
156 uInt match_length; /* length of best match */
|
cannam@128
|
157 IPos prev_match; /* previous match */
|
cannam@128
|
158 int match_available; /* set if previous match exists */
|
cannam@128
|
159 uInt strstart; /* start of string to insert */
|
cannam@128
|
160 uInt match_start; /* start of matching string */
|
cannam@128
|
161 uInt lookahead; /* number of valid bytes ahead in window */
|
cannam@128
|
162
|
cannam@128
|
163 uInt prev_length;
|
cannam@128
|
164 /* Length of the best match at previous step. Matches not greater than this
|
cannam@128
|
165 * are discarded. This is used in the lazy match evaluation.
|
cannam@128
|
166 */
|
cannam@128
|
167
|
cannam@128
|
168 uInt max_chain_length;
|
cannam@128
|
169 /* To speed up deflation, hash chains are never searched beyond this
|
cannam@128
|
170 * length. A higher limit improves compression ratio but degrades the
|
cannam@128
|
171 * speed.
|
cannam@128
|
172 */
|
cannam@128
|
173
|
cannam@128
|
174 uInt max_lazy_match;
|
cannam@128
|
175 /* Attempt to find a better match only when the current match is strictly
|
cannam@128
|
176 * smaller than this value. This mechanism is used only for compression
|
cannam@128
|
177 * levels >= 4.
|
cannam@128
|
178 */
|
cannam@128
|
179 # define max_insert_length max_lazy_match
|
cannam@128
|
180 /* Insert new strings in the hash table only if the match length is not
|
cannam@128
|
181 * greater than this length. This saves time but degrades compression.
|
cannam@128
|
182 * max_insert_length is used only for compression levels <= 3.
|
cannam@128
|
183 */
|
cannam@128
|
184
|
cannam@128
|
185 int level; /* compression level (1..9) */
|
cannam@128
|
186 int strategy; /* favor or force Huffman coding*/
|
cannam@128
|
187
|
cannam@128
|
188 uInt good_match;
|
cannam@128
|
189 /* Use a faster search when the previous match is longer than this */
|
cannam@128
|
190
|
cannam@128
|
191 int nice_match; /* Stop searching when current match exceeds this */
|
cannam@128
|
192
|
cannam@128
|
193 /* used by trees.c: */
|
cannam@128
|
194 /* Didn't use ct_data typedef below to suppress compiler warning */
|
cannam@128
|
195 struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */
|
cannam@128
|
196 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
|
cannam@128
|
197 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
|
cannam@128
|
198
|
cannam@128
|
199 struct tree_desc_s l_desc; /* desc. for literal tree */
|
cannam@128
|
200 struct tree_desc_s d_desc; /* desc. for distance tree */
|
cannam@128
|
201 struct tree_desc_s bl_desc; /* desc. for bit length tree */
|
cannam@128
|
202
|
cannam@128
|
203 ush bl_count[MAX_BITS+1];
|
cannam@128
|
204 /* number of codes at each bit length for an optimal tree */
|
cannam@128
|
205
|
cannam@128
|
206 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */
|
cannam@128
|
207 int heap_len; /* number of elements in the heap */
|
cannam@128
|
208 int heap_max; /* element of largest frequency */
|
cannam@128
|
209 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
|
cannam@128
|
210 * The same heap array is used to build all trees.
|
cannam@128
|
211 */
|
cannam@128
|
212
|
cannam@128
|
213 uch depth[2*L_CODES+1];
|
cannam@128
|
214 /* Depth of each subtree used as tie breaker for trees of equal frequency
|
cannam@128
|
215 */
|
cannam@128
|
216
|
cannam@128
|
217 uchf *l_buf; /* buffer for literals or lengths */
|
cannam@128
|
218
|
cannam@128
|
219 uInt lit_bufsize;
|
cannam@128
|
220 /* Size of match buffer for literals/lengths. There are 4 reasons for
|
cannam@128
|
221 * limiting lit_bufsize to 64K:
|
cannam@128
|
222 * - frequencies can be kept in 16 bit counters
|
cannam@128
|
223 * - if compression is not successful for the first block, all input
|
cannam@128
|
224 * data is still in the window so we can still emit a stored block even
|
cannam@128
|
225 * when input comes from standard input. (This can also be done for
|
cannam@128
|
226 * all blocks if lit_bufsize is not greater than 32K.)
|
cannam@128
|
227 * - if compression is not successful for a file smaller than 64K, we can
|
cannam@128
|
228 * even emit a stored file instead of a stored block (saving 5 bytes).
|
cannam@128
|
229 * This is applicable only for zip (not gzip or zlib).
|
cannam@128
|
230 * - creating new Huffman trees less frequently may not provide fast
|
cannam@128
|
231 * adaptation to changes in the input data statistics. (Take for
|
cannam@128
|
232 * example a binary file with poorly compressible code followed by
|
cannam@128
|
233 * a highly compressible string table.) Smaller buffer sizes give
|
cannam@128
|
234 * fast adaptation but have of course the overhead of transmitting
|
cannam@128
|
235 * trees more frequently.
|
cannam@128
|
236 * - I can't count above 4
|
cannam@128
|
237 */
|
cannam@128
|
238
|
cannam@128
|
239 uInt last_lit; /* running index in l_buf */
|
cannam@128
|
240
|
cannam@128
|
241 ushf *d_buf;
|
cannam@128
|
242 /* Buffer for distances. To simplify the code, d_buf and l_buf have
|
cannam@128
|
243 * the same number of elements. To use different lengths, an extra flag
|
cannam@128
|
244 * array would be necessary.
|
cannam@128
|
245 */
|
cannam@128
|
246
|
cannam@128
|
247 ulg opt_len; /* bit length of current block with optimal trees */
|
cannam@128
|
248 ulg static_len; /* bit length of current block with static trees */
|
cannam@128
|
249 uInt matches; /* number of string matches in current block */
|
cannam@128
|
250 uInt insert; /* bytes at end of window left to insert */
|
cannam@128
|
251
|
cannam@128
|
252 #ifdef DEBUG
|
cannam@128
|
253 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
|
cannam@128
|
254 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
|
cannam@128
|
255 #endif
|
cannam@128
|
256
|
cannam@128
|
257 ush bi_buf;
|
cannam@128
|
258 /* Output buffer. bits are inserted starting at the bottom (least
|
cannam@128
|
259 * significant bits).
|
cannam@128
|
260 */
|
cannam@128
|
261 int bi_valid;
|
cannam@128
|
262 /* Number of valid bits in bi_buf. All bits above the last valid bit
|
cannam@128
|
263 * are always zero.
|
cannam@128
|
264 */
|
cannam@128
|
265
|
cannam@128
|
266 ulg high_water;
|
cannam@128
|
267 /* High water mark offset in window for initialized bytes -- bytes above
|
cannam@128
|
268 * this are set to zero in order to avoid memory check warnings when
|
cannam@128
|
269 * longest match routines access bytes past the input. This is then
|
cannam@128
|
270 * updated to the new high water mark.
|
cannam@128
|
271 */
|
cannam@128
|
272
|
cannam@128
|
273 } FAR deflate_state;
|
cannam@128
|
274
|
cannam@128
|
275 /* Output a byte on the stream.
|
cannam@128
|
276 * IN assertion: there is enough room in pending_buf.
|
cannam@128
|
277 */
|
cannam@128
|
278 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
|
cannam@128
|
279
|
cannam@128
|
280
|
cannam@128
|
281 #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
|
cannam@128
|
282 /* Minimum amount of lookahead, except at the end of the input file.
|
cannam@128
|
283 * See deflate.c for comments about the MIN_MATCH+1.
|
cannam@128
|
284 */
|
cannam@128
|
285
|
cannam@128
|
286 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
cannam@128
|
287 /* In order to simplify the code, particularly on 16 bit machines, match
|
cannam@128
|
288 * distances are limited to MAX_DIST instead of WSIZE.
|
cannam@128
|
289 */
|
cannam@128
|
290
|
cannam@128
|
291 #define WIN_INIT MAX_MATCH
|
cannam@128
|
292 /* Number of bytes after end of data in window to initialize in order to avoid
|
cannam@128
|
293 memory checker errors from longest match routines */
|
cannam@128
|
294
|
cannam@128
|
295 /* in trees.c */
|
cannam@128
|
296 void ZLIB_INTERNAL _tr_init OF((deflate_state *s));
|
cannam@128
|
297 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
|
cannam@128
|
298 void ZLIB_INTERNAL _tr_flush_block OF((deflate_state *s, charf *buf,
|
cannam@128
|
299 ulg stored_len, int last));
|
cannam@128
|
300 void ZLIB_INTERNAL _tr_flush_bits OF((deflate_state *s));
|
cannam@128
|
301 void ZLIB_INTERNAL _tr_align OF((deflate_state *s));
|
cannam@128
|
302 void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
|
cannam@128
|
303 ulg stored_len, int last));
|
cannam@128
|
304
|
cannam@128
|
305 #define d_code(dist) \
|
cannam@128
|
306 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
|
cannam@128
|
307 /* Mapping from a distance to a distance code. dist is the distance - 1 and
|
cannam@128
|
308 * must not have side effects. _dist_code[256] and _dist_code[257] are never
|
cannam@128
|
309 * used.
|
cannam@128
|
310 */
|
cannam@128
|
311
|
cannam@128
|
312 #ifndef DEBUG
|
cannam@128
|
313 /* Inline versions of _tr_tally for speed: */
|
cannam@128
|
314
|
cannam@128
|
315 #if defined(GEN_TREES_H) || !defined(STDC)
|
cannam@128
|
316 extern uch ZLIB_INTERNAL _length_code[];
|
cannam@128
|
317 extern uch ZLIB_INTERNAL _dist_code[];
|
cannam@128
|
318 #else
|
cannam@128
|
319 extern const uch ZLIB_INTERNAL _length_code[];
|
cannam@128
|
320 extern const uch ZLIB_INTERNAL _dist_code[];
|
cannam@128
|
321 #endif
|
cannam@128
|
322
|
cannam@128
|
323 # define _tr_tally_lit(s, c, flush) \
|
cannam@128
|
324 { uch cc = (c); \
|
cannam@128
|
325 s->d_buf[s->last_lit] = 0; \
|
cannam@128
|
326 s->l_buf[s->last_lit++] = cc; \
|
cannam@128
|
327 s->dyn_ltree[cc].Freq++; \
|
cannam@128
|
328 flush = (s->last_lit == s->lit_bufsize-1); \
|
cannam@128
|
329 }
|
cannam@128
|
330 # define _tr_tally_dist(s, distance, length, flush) \
|
cannam@128
|
331 { uch len = (length); \
|
cannam@128
|
332 ush dist = (distance); \
|
cannam@128
|
333 s->d_buf[s->last_lit] = dist; \
|
cannam@128
|
334 s->l_buf[s->last_lit++] = len; \
|
cannam@128
|
335 dist--; \
|
cannam@128
|
336 s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
|
cannam@128
|
337 s->dyn_dtree[d_code(dist)].Freq++; \
|
cannam@128
|
338 flush = (s->last_lit == s->lit_bufsize-1); \
|
cannam@128
|
339 }
|
cannam@128
|
340 #else
|
cannam@128
|
341 # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)
|
cannam@128
|
342 # define _tr_tally_dist(s, distance, length, flush) \
|
cannam@128
|
343 flush = _tr_tally(s, distance, length)
|
cannam@128
|
344 #endif
|
cannam@128
|
345
|
cannam@128
|
346 #endif /* DEFLATE_H */
|