cannam@89
|
1 /* deflate.c -- compress data using the deflation algorithm
|
cannam@89
|
2 * Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler
|
cannam@89
|
3 * For conditions of distribution and use, see copyright notice in zlib.h
|
cannam@89
|
4 */
|
cannam@89
|
5
|
cannam@89
|
6 /*
|
cannam@89
|
7 * ALGORITHM
|
cannam@89
|
8 *
|
cannam@89
|
9 * The "deflation" process depends on being able to identify portions
|
cannam@89
|
10 * of the input text which are identical to earlier input (within a
|
cannam@89
|
11 * sliding window trailing behind the input currently being processed).
|
cannam@89
|
12 *
|
cannam@89
|
13 * The most straightforward technique turns out to be the fastest for
|
cannam@89
|
14 * most input files: try all possible matches and select the longest.
|
cannam@89
|
15 * The key feature of this algorithm is that insertions into the string
|
cannam@89
|
16 * dictionary are very simple and thus fast, and deletions are avoided
|
cannam@89
|
17 * completely. Insertions are performed at each input character, whereas
|
cannam@89
|
18 * string matches are performed only when the previous match ends. So it
|
cannam@89
|
19 * is preferable to spend more time in matches to allow very fast string
|
cannam@89
|
20 * insertions and avoid deletions. The matching algorithm for small
|
cannam@89
|
21 * strings is inspired from that of Rabin & Karp. A brute force approach
|
cannam@89
|
22 * is used to find longer strings when a small match has been found.
|
cannam@89
|
23 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
|
cannam@89
|
24 * (by Leonid Broukhis).
|
cannam@89
|
25 * A previous version of this file used a more sophisticated algorithm
|
cannam@89
|
26 * (by Fiala and Greene) which is guaranteed to run in linear amortized
|
cannam@89
|
27 * time, but has a larger average cost, uses more memory and is patented.
|
cannam@89
|
28 * However the F&G algorithm may be faster for some highly redundant
|
cannam@89
|
29 * files if the parameter max_chain_length (described below) is too large.
|
cannam@89
|
30 *
|
cannam@89
|
31 * ACKNOWLEDGEMENTS
|
cannam@89
|
32 *
|
cannam@89
|
33 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
|
cannam@89
|
34 * I found it in 'freeze' written by Leonid Broukhis.
|
cannam@89
|
35 * Thanks to many people for bug reports and testing.
|
cannam@89
|
36 *
|
cannam@89
|
37 * REFERENCES
|
cannam@89
|
38 *
|
cannam@89
|
39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
|
cannam@89
|
40 * Available in http://tools.ietf.org/html/rfc1951
|
cannam@89
|
41 *
|
cannam@89
|
42 * A description of the Rabin and Karp algorithm is given in the book
|
cannam@89
|
43 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
|
cannam@89
|
44 *
|
cannam@89
|
45 * Fiala,E.R., and Greene,D.H.
|
cannam@89
|
46 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
|
cannam@89
|
47 *
|
cannam@89
|
48 */
|
cannam@89
|
49
|
cannam@89
|
50 /* @(#) $Id$ */
|
cannam@89
|
51
|
cannam@89
|
52 #include "deflate.h"
|
cannam@89
|
53
|
cannam@89
|
54 const char deflate_copyright[] =
|
cannam@89
|
55 " deflate 1.2.7 Copyright 1995-2012 Jean-loup Gailly and Mark Adler ";
|
cannam@89
|
56 /*
|
cannam@89
|
57 If you use the zlib library in a product, an acknowledgment is welcome
|
cannam@89
|
58 in the documentation of your product. If for some reason you cannot
|
cannam@89
|
59 include such an acknowledgment, I would appreciate that you keep this
|
cannam@89
|
60 copyright string in the executable of your product.
|
cannam@89
|
61 */
|
cannam@89
|
62
|
cannam@89
|
63 /* ===========================================================================
|
cannam@89
|
64 * Function prototypes.
|
cannam@89
|
65 */
|
cannam@89
|
66 typedef enum {
|
cannam@89
|
67 need_more, /* block not completed, need more input or more output */
|
cannam@89
|
68 block_done, /* block flush performed */
|
cannam@89
|
69 finish_started, /* finish started, need only more output at next deflate */
|
cannam@89
|
70 finish_done /* finish done, accept no more input or output */
|
cannam@89
|
71 } block_state;
|
cannam@89
|
72
|
cannam@89
|
73 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
|
cannam@89
|
74 /* Compression function. Returns the block state after the call. */
|
cannam@89
|
75
|
cannam@89
|
76 local void fill_window OF((deflate_state *s));
|
cannam@89
|
77 local block_state deflate_stored OF((deflate_state *s, int flush));
|
cannam@89
|
78 local block_state deflate_fast OF((deflate_state *s, int flush));
|
cannam@89
|
79 #ifndef FASTEST
|
cannam@89
|
80 local block_state deflate_slow OF((deflate_state *s, int flush));
|
cannam@89
|
81 #endif
|
cannam@89
|
82 local block_state deflate_rle OF((deflate_state *s, int flush));
|
cannam@89
|
83 local block_state deflate_huff OF((deflate_state *s, int flush));
|
cannam@89
|
84 local void lm_init OF((deflate_state *s));
|
cannam@89
|
85 local void putShortMSB OF((deflate_state *s, uInt b));
|
cannam@89
|
86 local void flush_pending OF((z_streamp strm));
|
cannam@89
|
87 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
|
cannam@89
|
88 #ifdef ASMV
|
cannam@89
|
89 void match_init OF((void)); /* asm code initialization */
|
cannam@89
|
90 uInt longest_match OF((deflate_state *s, IPos cur_match));
|
cannam@89
|
91 #else
|
cannam@89
|
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
|
cannam@89
|
93 #endif
|
cannam@89
|
94
|
cannam@89
|
95 #ifdef DEBUG
|
cannam@89
|
96 local void check_match OF((deflate_state *s, IPos start, IPos match,
|
cannam@89
|
97 int length));
|
cannam@89
|
98 #endif
|
cannam@89
|
99
|
cannam@89
|
100 /* ===========================================================================
|
cannam@89
|
101 * Local data
|
cannam@89
|
102 */
|
cannam@89
|
103
|
cannam@89
|
104 #define NIL 0
|
cannam@89
|
105 /* Tail of hash chains */
|
cannam@89
|
106
|
cannam@89
|
107 #ifndef TOO_FAR
|
cannam@89
|
108 # define TOO_FAR 4096
|
cannam@89
|
109 #endif
|
cannam@89
|
110 /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
|
cannam@89
|
111
|
cannam@89
|
112 /* Values for max_lazy_match, good_match and max_chain_length, depending on
|
cannam@89
|
113 * the desired pack level (0..9). The values given below have been tuned to
|
cannam@89
|
114 * exclude worst case performance for pathological files. Better values may be
|
cannam@89
|
115 * found for specific files.
|
cannam@89
|
116 */
|
cannam@89
|
117 typedef struct config_s {
|
cannam@89
|
118 ush good_length; /* reduce lazy search above this match length */
|
cannam@89
|
119 ush max_lazy; /* do not perform lazy search above this match length */
|
cannam@89
|
120 ush nice_length; /* quit search above this match length */
|
cannam@89
|
121 ush max_chain;
|
cannam@89
|
122 compress_func func;
|
cannam@89
|
123 } config;
|
cannam@89
|
124
|
cannam@89
|
125 #ifdef FASTEST
|
cannam@89
|
126 local const config configuration_table[2] = {
|
cannam@89
|
127 /* good lazy nice chain */
|
cannam@89
|
128 /* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */
|
cannam@89
|
129 /* 1 */ {4, 4, 8, 4, deflate_fast}}; /* max speed, no lazy matches */
|
cannam@89
|
130 #else
|
cannam@89
|
131 local const config configuration_table[10] = {
|
cannam@89
|
132 /* good lazy nice chain */
|
cannam@89
|
133 /* 0 */ {0, 0, 0, 0, deflate_stored}, /* store only */
|
cannam@89
|
134 /* 1 */ {4, 4, 8, 4, deflate_fast}, /* max speed, no lazy matches */
|
cannam@89
|
135 /* 2 */ {4, 5, 16, 8, deflate_fast},
|
cannam@89
|
136 /* 3 */ {4, 6, 32, 32, deflate_fast},
|
cannam@89
|
137
|
cannam@89
|
138 /* 4 */ {4, 4, 16, 16, deflate_slow}, /* lazy matches */
|
cannam@89
|
139 /* 5 */ {8, 16, 32, 32, deflate_slow},
|
cannam@89
|
140 /* 6 */ {8, 16, 128, 128, deflate_slow},
|
cannam@89
|
141 /* 7 */ {8, 32, 128, 256, deflate_slow},
|
cannam@89
|
142 /* 8 */ {32, 128, 258, 1024, deflate_slow},
|
cannam@89
|
143 /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */
|
cannam@89
|
144 #endif
|
cannam@89
|
145
|
cannam@89
|
146 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
|
cannam@89
|
147 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
|
cannam@89
|
148 * meaning.
|
cannam@89
|
149 */
|
cannam@89
|
150
|
cannam@89
|
151 #define EQUAL 0
|
cannam@89
|
152 /* result of memcmp for equal strings */
|
cannam@89
|
153
|
cannam@89
|
154 #ifndef NO_DUMMY_DECL
|
cannam@89
|
155 struct static_tree_desc_s {int dummy;}; /* for buggy compilers */
|
cannam@89
|
156 #endif
|
cannam@89
|
157
|
cannam@89
|
158 /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */
|
cannam@89
|
159 #define RANK(f) (((f) << 1) - ((f) > 4 ? 9 : 0))
|
cannam@89
|
160
|
cannam@89
|
161 /* ===========================================================================
|
cannam@89
|
162 * Update a hash value with the given input byte
|
cannam@89
|
163 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
|
cannam@89
|
164 * input characters, so that a running hash key can be computed from the
|
cannam@89
|
165 * previous key instead of complete recalculation each time.
|
cannam@89
|
166 */
|
cannam@89
|
167 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
|
cannam@89
|
168
|
cannam@89
|
169
|
cannam@89
|
170 /* ===========================================================================
|
cannam@89
|
171 * Insert string str in the dictionary and set match_head to the previous head
|
cannam@89
|
172 * of the hash chain (the most recent string with same hash key). Return
|
cannam@89
|
173 * the previous length of the hash chain.
|
cannam@89
|
174 * If this file is compiled with -DFASTEST, the compression level is forced
|
cannam@89
|
175 * to 1, and no hash chains are maintained.
|
cannam@89
|
176 * IN assertion: all calls to to INSERT_STRING are made with consecutive
|
cannam@89
|
177 * input characters and the first MIN_MATCH bytes of str are valid
|
cannam@89
|
178 * (except for the last MIN_MATCH-1 bytes of the input file).
|
cannam@89
|
179 */
|
cannam@89
|
180 #ifdef FASTEST
|
cannam@89
|
181 #define INSERT_STRING(s, str, match_head) \
|
cannam@89
|
182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
|
cannam@89
|
183 match_head = s->head[s->ins_h], \
|
cannam@89
|
184 s->head[s->ins_h] = (Pos)(str))
|
cannam@89
|
185 #else
|
cannam@89
|
186 #define INSERT_STRING(s, str, match_head) \
|
cannam@89
|
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
|
cannam@89
|
188 match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
|
cannam@89
|
189 s->head[s->ins_h] = (Pos)(str))
|
cannam@89
|
190 #endif
|
cannam@89
|
191
|
cannam@89
|
192 /* ===========================================================================
|
cannam@89
|
193 * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
|
cannam@89
|
194 * prev[] will be initialized on the fly.
|
cannam@89
|
195 */
|
cannam@89
|
196 #define CLEAR_HASH(s) \
|
cannam@89
|
197 s->head[s->hash_size-1] = NIL; \
|
cannam@89
|
198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
|
cannam@89
|
199
|
cannam@89
|
200 /* ========================================================================= */
|
cannam@89
|
201 int ZEXPORT deflateInit_(strm, level, version, stream_size)
|
cannam@89
|
202 z_streamp strm;
|
cannam@89
|
203 int level;
|
cannam@89
|
204 const char *version;
|
cannam@89
|
205 int stream_size;
|
cannam@89
|
206 {
|
cannam@89
|
207 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
|
cannam@89
|
208 Z_DEFAULT_STRATEGY, version, stream_size);
|
cannam@89
|
209 /* To do: ignore strm->next_in if we use it as window */
|
cannam@89
|
210 }
|
cannam@89
|
211
|
cannam@89
|
212 /* ========================================================================= */
|
cannam@89
|
213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
|
cannam@89
|
214 version, stream_size)
|
cannam@89
|
215 z_streamp strm;
|
cannam@89
|
216 int level;
|
cannam@89
|
217 int method;
|
cannam@89
|
218 int windowBits;
|
cannam@89
|
219 int memLevel;
|
cannam@89
|
220 int strategy;
|
cannam@89
|
221 const char *version;
|
cannam@89
|
222 int stream_size;
|
cannam@89
|
223 {
|
cannam@89
|
224 deflate_state *s;
|
cannam@89
|
225 int wrap = 1;
|
cannam@89
|
226 static const char my_version[] = ZLIB_VERSION;
|
cannam@89
|
227
|
cannam@89
|
228 ushf *overlay;
|
cannam@89
|
229 /* We overlay pending_buf and d_buf+l_buf. This works since the average
|
cannam@89
|
230 * output size for (length,distance) codes is <= 24 bits.
|
cannam@89
|
231 */
|
cannam@89
|
232
|
cannam@89
|
233 if (version == Z_NULL || version[0] != my_version[0] ||
|
cannam@89
|
234 stream_size != sizeof(z_stream)) {
|
cannam@89
|
235 return Z_VERSION_ERROR;
|
cannam@89
|
236 }
|
cannam@89
|
237 if (strm == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
238
|
cannam@89
|
239 strm->msg = Z_NULL;
|
cannam@89
|
240 if (strm->zalloc == (alloc_func)0) {
|
cannam@89
|
241 #ifdef Z_SOLO
|
cannam@89
|
242 return Z_STREAM_ERROR;
|
cannam@89
|
243 #else
|
cannam@89
|
244 strm->zalloc = zcalloc;
|
cannam@89
|
245 strm->opaque = (voidpf)0;
|
cannam@89
|
246 #endif
|
cannam@89
|
247 }
|
cannam@89
|
248 if (strm->zfree == (free_func)0)
|
cannam@89
|
249 #ifdef Z_SOLO
|
cannam@89
|
250 return Z_STREAM_ERROR;
|
cannam@89
|
251 #else
|
cannam@89
|
252 strm->zfree = zcfree;
|
cannam@89
|
253 #endif
|
cannam@89
|
254
|
cannam@89
|
255 #ifdef FASTEST
|
cannam@89
|
256 if (level != 0) level = 1;
|
cannam@89
|
257 #else
|
cannam@89
|
258 if (level == Z_DEFAULT_COMPRESSION) level = 6;
|
cannam@89
|
259 #endif
|
cannam@89
|
260
|
cannam@89
|
261 if (windowBits < 0) { /* suppress zlib wrapper */
|
cannam@89
|
262 wrap = 0;
|
cannam@89
|
263 windowBits = -windowBits;
|
cannam@89
|
264 }
|
cannam@89
|
265 #ifdef GZIP
|
cannam@89
|
266 else if (windowBits > 15) {
|
cannam@89
|
267 wrap = 2; /* write gzip wrapper instead */
|
cannam@89
|
268 windowBits -= 16;
|
cannam@89
|
269 }
|
cannam@89
|
270 #endif
|
cannam@89
|
271 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
|
cannam@89
|
272 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
|
cannam@89
|
273 strategy < 0 || strategy > Z_FIXED) {
|
cannam@89
|
274 return Z_STREAM_ERROR;
|
cannam@89
|
275 }
|
cannam@89
|
276 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
|
cannam@89
|
277 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
|
cannam@89
|
278 if (s == Z_NULL) return Z_MEM_ERROR;
|
cannam@89
|
279 strm->state = (struct internal_state FAR *)s;
|
cannam@89
|
280 s->strm = strm;
|
cannam@89
|
281
|
cannam@89
|
282 s->wrap = wrap;
|
cannam@89
|
283 s->gzhead = Z_NULL;
|
cannam@89
|
284 s->w_bits = windowBits;
|
cannam@89
|
285 s->w_size = 1 << s->w_bits;
|
cannam@89
|
286 s->w_mask = s->w_size - 1;
|
cannam@89
|
287
|
cannam@89
|
288 s->hash_bits = memLevel + 7;
|
cannam@89
|
289 s->hash_size = 1 << s->hash_bits;
|
cannam@89
|
290 s->hash_mask = s->hash_size - 1;
|
cannam@89
|
291 s->hash_shift = ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
|
cannam@89
|
292
|
cannam@89
|
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
|
cannam@89
|
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
|
cannam@89
|
295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
|
cannam@89
|
296
|
cannam@89
|
297 s->high_water = 0; /* nothing written to s->window yet */
|
cannam@89
|
298
|
cannam@89
|
299 s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
|
cannam@89
|
300
|
cannam@89
|
301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
|
cannam@89
|
302 s->pending_buf = (uchf *) overlay;
|
cannam@89
|
303 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
|
cannam@89
|
304
|
cannam@89
|
305 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
|
cannam@89
|
306 s->pending_buf == Z_NULL) {
|
cannam@89
|
307 s->status = FINISH_STATE;
|
cannam@89
|
308 strm->msg = (char*)ERR_MSG(Z_MEM_ERROR);
|
cannam@89
|
309 deflateEnd (strm);
|
cannam@89
|
310 return Z_MEM_ERROR;
|
cannam@89
|
311 }
|
cannam@89
|
312 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
|
cannam@89
|
313 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
|
cannam@89
|
314
|
cannam@89
|
315 s->level = level;
|
cannam@89
|
316 s->strategy = strategy;
|
cannam@89
|
317 s->method = (Byte)method;
|
cannam@89
|
318
|
cannam@89
|
319 return deflateReset(strm);
|
cannam@89
|
320 }
|
cannam@89
|
321
|
cannam@89
|
322 /* ========================================================================= */
|
cannam@89
|
323 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
|
cannam@89
|
324 z_streamp strm;
|
cannam@89
|
325 const Bytef *dictionary;
|
cannam@89
|
326 uInt dictLength;
|
cannam@89
|
327 {
|
cannam@89
|
328 deflate_state *s;
|
cannam@89
|
329 uInt str, n;
|
cannam@89
|
330 int wrap;
|
cannam@89
|
331 unsigned avail;
|
cannam@89
|
332 unsigned char *next;
|
cannam@89
|
333
|
cannam@89
|
334 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
|
cannam@89
|
335 return Z_STREAM_ERROR;
|
cannam@89
|
336 s = strm->state;
|
cannam@89
|
337 wrap = s->wrap;
|
cannam@89
|
338 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
|
cannam@89
|
339 return Z_STREAM_ERROR;
|
cannam@89
|
340
|
cannam@89
|
341 /* when using zlib wrappers, compute Adler-32 for provided dictionary */
|
cannam@89
|
342 if (wrap == 1)
|
cannam@89
|
343 strm->adler = adler32(strm->adler, dictionary, dictLength);
|
cannam@89
|
344 s->wrap = 0; /* avoid computing Adler-32 in read_buf */
|
cannam@89
|
345
|
cannam@89
|
346 /* if dictionary would fill window, just replace the history */
|
cannam@89
|
347 if (dictLength >= s->w_size) {
|
cannam@89
|
348 if (wrap == 0) { /* already empty otherwise */
|
cannam@89
|
349 CLEAR_HASH(s);
|
cannam@89
|
350 s->strstart = 0;
|
cannam@89
|
351 s->block_start = 0L;
|
cannam@89
|
352 s->insert = 0;
|
cannam@89
|
353 }
|
cannam@89
|
354 dictionary += dictLength - s->w_size; /* use the tail */
|
cannam@89
|
355 dictLength = s->w_size;
|
cannam@89
|
356 }
|
cannam@89
|
357
|
cannam@89
|
358 /* insert dictionary into window and hash */
|
cannam@89
|
359 avail = strm->avail_in;
|
cannam@89
|
360 next = strm->next_in;
|
cannam@89
|
361 strm->avail_in = dictLength;
|
cannam@89
|
362 strm->next_in = (Bytef *)dictionary;
|
cannam@89
|
363 fill_window(s);
|
cannam@89
|
364 while (s->lookahead >= MIN_MATCH) {
|
cannam@89
|
365 str = s->strstart;
|
cannam@89
|
366 n = s->lookahead - (MIN_MATCH-1);
|
cannam@89
|
367 do {
|
cannam@89
|
368 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
|
cannam@89
|
369 #ifndef FASTEST
|
cannam@89
|
370 s->prev[str & s->w_mask] = s->head[s->ins_h];
|
cannam@89
|
371 #endif
|
cannam@89
|
372 s->head[s->ins_h] = (Pos)str;
|
cannam@89
|
373 str++;
|
cannam@89
|
374 } while (--n);
|
cannam@89
|
375 s->strstart = str;
|
cannam@89
|
376 s->lookahead = MIN_MATCH-1;
|
cannam@89
|
377 fill_window(s);
|
cannam@89
|
378 }
|
cannam@89
|
379 s->strstart += s->lookahead;
|
cannam@89
|
380 s->block_start = (long)s->strstart;
|
cannam@89
|
381 s->insert = s->lookahead;
|
cannam@89
|
382 s->lookahead = 0;
|
cannam@89
|
383 s->match_length = s->prev_length = MIN_MATCH-1;
|
cannam@89
|
384 s->match_available = 0;
|
cannam@89
|
385 strm->next_in = next;
|
cannam@89
|
386 strm->avail_in = avail;
|
cannam@89
|
387 s->wrap = wrap;
|
cannam@89
|
388 return Z_OK;
|
cannam@89
|
389 }
|
cannam@89
|
390
|
cannam@89
|
391 /* ========================================================================= */
|
cannam@89
|
392 int ZEXPORT deflateResetKeep (strm)
|
cannam@89
|
393 z_streamp strm;
|
cannam@89
|
394 {
|
cannam@89
|
395 deflate_state *s;
|
cannam@89
|
396
|
cannam@89
|
397 if (strm == Z_NULL || strm->state == Z_NULL ||
|
cannam@89
|
398 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
|
cannam@89
|
399 return Z_STREAM_ERROR;
|
cannam@89
|
400 }
|
cannam@89
|
401
|
cannam@89
|
402 strm->total_in = strm->total_out = 0;
|
cannam@89
|
403 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
|
cannam@89
|
404 strm->data_type = Z_UNKNOWN;
|
cannam@89
|
405
|
cannam@89
|
406 s = (deflate_state *)strm->state;
|
cannam@89
|
407 s->pending = 0;
|
cannam@89
|
408 s->pending_out = s->pending_buf;
|
cannam@89
|
409
|
cannam@89
|
410 if (s->wrap < 0) {
|
cannam@89
|
411 s->wrap = -s->wrap; /* was made negative by deflate(..., Z_FINISH); */
|
cannam@89
|
412 }
|
cannam@89
|
413 s->status = s->wrap ? INIT_STATE : BUSY_STATE;
|
cannam@89
|
414 strm->adler =
|
cannam@89
|
415 #ifdef GZIP
|
cannam@89
|
416 s->wrap == 2 ? crc32(0L, Z_NULL, 0) :
|
cannam@89
|
417 #endif
|
cannam@89
|
418 adler32(0L, Z_NULL, 0);
|
cannam@89
|
419 s->last_flush = Z_NO_FLUSH;
|
cannam@89
|
420
|
cannam@89
|
421 _tr_init(s);
|
cannam@89
|
422
|
cannam@89
|
423 return Z_OK;
|
cannam@89
|
424 }
|
cannam@89
|
425
|
cannam@89
|
426 /* ========================================================================= */
|
cannam@89
|
427 int ZEXPORT deflateReset (strm)
|
cannam@89
|
428 z_streamp strm;
|
cannam@89
|
429 {
|
cannam@89
|
430 int ret;
|
cannam@89
|
431
|
cannam@89
|
432 ret = deflateResetKeep(strm);
|
cannam@89
|
433 if (ret == Z_OK)
|
cannam@89
|
434 lm_init(strm->state);
|
cannam@89
|
435 return ret;
|
cannam@89
|
436 }
|
cannam@89
|
437
|
cannam@89
|
438 /* ========================================================================= */
|
cannam@89
|
439 int ZEXPORT deflateSetHeader (strm, head)
|
cannam@89
|
440 z_streamp strm;
|
cannam@89
|
441 gz_headerp head;
|
cannam@89
|
442 {
|
cannam@89
|
443 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
444 if (strm->state->wrap != 2) return Z_STREAM_ERROR;
|
cannam@89
|
445 strm->state->gzhead = head;
|
cannam@89
|
446 return Z_OK;
|
cannam@89
|
447 }
|
cannam@89
|
448
|
cannam@89
|
449 /* ========================================================================= */
|
cannam@89
|
450 int ZEXPORT deflatePending (strm, pending, bits)
|
cannam@89
|
451 unsigned *pending;
|
cannam@89
|
452 int *bits;
|
cannam@89
|
453 z_streamp strm;
|
cannam@89
|
454 {
|
cannam@89
|
455 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
456 if (pending != Z_NULL)
|
cannam@89
|
457 *pending = strm->state->pending;
|
cannam@89
|
458 if (bits != Z_NULL)
|
cannam@89
|
459 *bits = strm->state->bi_valid;
|
cannam@89
|
460 return Z_OK;
|
cannam@89
|
461 }
|
cannam@89
|
462
|
cannam@89
|
463 /* ========================================================================= */
|
cannam@89
|
464 int ZEXPORT deflatePrime (strm, bits, value)
|
cannam@89
|
465 z_streamp strm;
|
cannam@89
|
466 int bits;
|
cannam@89
|
467 int value;
|
cannam@89
|
468 {
|
cannam@89
|
469 deflate_state *s;
|
cannam@89
|
470 int put;
|
cannam@89
|
471
|
cannam@89
|
472 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
473 s = strm->state;
|
cannam@89
|
474 if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
|
cannam@89
|
475 return Z_BUF_ERROR;
|
cannam@89
|
476 do {
|
cannam@89
|
477 put = Buf_size - s->bi_valid;
|
cannam@89
|
478 if (put > bits)
|
cannam@89
|
479 put = bits;
|
cannam@89
|
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
|
cannam@89
|
481 s->bi_valid += put;
|
cannam@89
|
482 _tr_flush_bits(s);
|
cannam@89
|
483 value >>= put;
|
cannam@89
|
484 bits -= put;
|
cannam@89
|
485 } while (bits);
|
cannam@89
|
486 return Z_OK;
|
cannam@89
|
487 }
|
cannam@89
|
488
|
cannam@89
|
489 /* ========================================================================= */
|
cannam@89
|
490 int ZEXPORT deflateParams(strm, level, strategy)
|
cannam@89
|
491 z_streamp strm;
|
cannam@89
|
492 int level;
|
cannam@89
|
493 int strategy;
|
cannam@89
|
494 {
|
cannam@89
|
495 deflate_state *s;
|
cannam@89
|
496 compress_func func;
|
cannam@89
|
497 int err = Z_OK;
|
cannam@89
|
498
|
cannam@89
|
499 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
500 s = strm->state;
|
cannam@89
|
501
|
cannam@89
|
502 #ifdef FASTEST
|
cannam@89
|
503 if (level != 0) level = 1;
|
cannam@89
|
504 #else
|
cannam@89
|
505 if (level == Z_DEFAULT_COMPRESSION) level = 6;
|
cannam@89
|
506 #endif
|
cannam@89
|
507 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
|
cannam@89
|
508 return Z_STREAM_ERROR;
|
cannam@89
|
509 }
|
cannam@89
|
510 func = configuration_table[s->level].func;
|
cannam@89
|
511
|
cannam@89
|
512 if ((strategy != s->strategy || func != configuration_table[level].func) &&
|
cannam@89
|
513 strm->total_in != 0) {
|
cannam@89
|
514 /* Flush the last buffer: */
|
cannam@89
|
515 err = deflate(strm, Z_BLOCK);
|
cannam@89
|
516 }
|
cannam@89
|
517 if (s->level != level) {
|
cannam@89
|
518 s->level = level;
|
cannam@89
|
519 s->max_lazy_match = configuration_table[level].max_lazy;
|
cannam@89
|
520 s->good_match = configuration_table[level].good_length;
|
cannam@89
|
521 s->nice_match = configuration_table[level].nice_length;
|
cannam@89
|
522 s->max_chain_length = configuration_table[level].max_chain;
|
cannam@89
|
523 }
|
cannam@89
|
524 s->strategy = strategy;
|
cannam@89
|
525 return err;
|
cannam@89
|
526 }
|
cannam@89
|
527
|
cannam@89
|
528 /* ========================================================================= */
|
cannam@89
|
529 int ZEXPORT deflateTune(strm, good_length, max_lazy, nice_length, max_chain)
|
cannam@89
|
530 z_streamp strm;
|
cannam@89
|
531 int good_length;
|
cannam@89
|
532 int max_lazy;
|
cannam@89
|
533 int nice_length;
|
cannam@89
|
534 int max_chain;
|
cannam@89
|
535 {
|
cannam@89
|
536 deflate_state *s;
|
cannam@89
|
537
|
cannam@89
|
538 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
539 s = strm->state;
|
cannam@89
|
540 s->good_match = good_length;
|
cannam@89
|
541 s->max_lazy_match = max_lazy;
|
cannam@89
|
542 s->nice_match = nice_length;
|
cannam@89
|
543 s->max_chain_length = max_chain;
|
cannam@89
|
544 return Z_OK;
|
cannam@89
|
545 }
|
cannam@89
|
546
|
cannam@89
|
547 /* =========================================================================
|
cannam@89
|
548 * For the default windowBits of 15 and memLevel of 8, this function returns
|
cannam@89
|
549 * a close to exact, as well as small, upper bound on the compressed size.
|
cannam@89
|
550 * They are coded as constants here for a reason--if the #define's are
|
cannam@89
|
551 * changed, then this function needs to be changed as well. The return
|
cannam@89
|
552 * value for 15 and 8 only works for those exact settings.
|
cannam@89
|
553 *
|
cannam@89
|
554 * For any setting other than those defaults for windowBits and memLevel,
|
cannam@89
|
555 * the value returned is a conservative worst case for the maximum expansion
|
cannam@89
|
556 * resulting from using fixed blocks instead of stored blocks, which deflate
|
cannam@89
|
557 * can emit on compressed data for some combinations of the parameters.
|
cannam@89
|
558 *
|
cannam@89
|
559 * This function could be more sophisticated to provide closer upper bounds for
|
cannam@89
|
560 * every combination of windowBits and memLevel. But even the conservative
|
cannam@89
|
561 * upper bound of about 14% expansion does not seem onerous for output buffer
|
cannam@89
|
562 * allocation.
|
cannam@89
|
563 */
|
cannam@89
|
564 uLong ZEXPORT deflateBound(strm, sourceLen)
|
cannam@89
|
565 z_streamp strm;
|
cannam@89
|
566 uLong sourceLen;
|
cannam@89
|
567 {
|
cannam@89
|
568 deflate_state *s;
|
cannam@89
|
569 uLong complen, wraplen;
|
cannam@89
|
570 Bytef *str;
|
cannam@89
|
571
|
cannam@89
|
572 /* conservative upper bound for compressed data */
|
cannam@89
|
573 complen = sourceLen +
|
cannam@89
|
574 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5;
|
cannam@89
|
575
|
cannam@89
|
576 /* if can't get parameters, return conservative bound plus zlib wrapper */
|
cannam@89
|
577 if (strm == Z_NULL || strm->state == Z_NULL)
|
cannam@89
|
578 return complen + 6;
|
cannam@89
|
579
|
cannam@89
|
580 /* compute wrapper length */
|
cannam@89
|
581 s = strm->state;
|
cannam@89
|
582 switch (s->wrap) {
|
cannam@89
|
583 case 0: /* raw deflate */
|
cannam@89
|
584 wraplen = 0;
|
cannam@89
|
585 break;
|
cannam@89
|
586 case 1: /* zlib wrapper */
|
cannam@89
|
587 wraplen = 6 + (s->strstart ? 4 : 0);
|
cannam@89
|
588 break;
|
cannam@89
|
589 case 2: /* gzip wrapper */
|
cannam@89
|
590 wraplen = 18;
|
cannam@89
|
591 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
|
cannam@89
|
592 if (s->gzhead->extra != Z_NULL)
|
cannam@89
|
593 wraplen += 2 + s->gzhead->extra_len;
|
cannam@89
|
594 str = s->gzhead->name;
|
cannam@89
|
595 if (str != Z_NULL)
|
cannam@89
|
596 do {
|
cannam@89
|
597 wraplen++;
|
cannam@89
|
598 } while (*str++);
|
cannam@89
|
599 str = s->gzhead->comment;
|
cannam@89
|
600 if (str != Z_NULL)
|
cannam@89
|
601 do {
|
cannam@89
|
602 wraplen++;
|
cannam@89
|
603 } while (*str++);
|
cannam@89
|
604 if (s->gzhead->hcrc)
|
cannam@89
|
605 wraplen += 2;
|
cannam@89
|
606 }
|
cannam@89
|
607 break;
|
cannam@89
|
608 default: /* for compiler happiness */
|
cannam@89
|
609 wraplen = 6;
|
cannam@89
|
610 }
|
cannam@89
|
611
|
cannam@89
|
612 /* if not default parameters, return conservative bound */
|
cannam@89
|
613 if (s->w_bits != 15 || s->hash_bits != 8 + 7)
|
cannam@89
|
614 return complen + wraplen;
|
cannam@89
|
615
|
cannam@89
|
616 /* default settings: return tight bound for that case */
|
cannam@89
|
617 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
|
cannam@89
|
618 (sourceLen >> 25) + 13 - 6 + wraplen;
|
cannam@89
|
619 }
|
cannam@89
|
620
|
cannam@89
|
621 /* =========================================================================
|
cannam@89
|
622 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
|
cannam@89
|
623 * IN assertion: the stream state is correct and there is enough room in
|
cannam@89
|
624 * pending_buf.
|
cannam@89
|
625 */
|
cannam@89
|
626 local void putShortMSB (s, b)
|
cannam@89
|
627 deflate_state *s;
|
cannam@89
|
628 uInt b;
|
cannam@89
|
629 {
|
cannam@89
|
630 put_byte(s, (Byte)(b >> 8));
|
cannam@89
|
631 put_byte(s, (Byte)(b & 0xff));
|
cannam@89
|
632 }
|
cannam@89
|
633
|
cannam@89
|
634 /* =========================================================================
|
cannam@89
|
635 * Flush as much pending output as possible. All deflate() output goes
|
cannam@89
|
636 * through this function so some applications may wish to modify it
|
cannam@89
|
637 * to avoid allocating a large strm->next_out buffer and copying into it.
|
cannam@89
|
638 * (See also read_buf()).
|
cannam@89
|
639 */
|
cannam@89
|
640 local void flush_pending(strm)
|
cannam@89
|
641 z_streamp strm;
|
cannam@89
|
642 {
|
cannam@89
|
643 unsigned len;
|
cannam@89
|
644 deflate_state *s = strm->state;
|
cannam@89
|
645
|
cannam@89
|
646 _tr_flush_bits(s);
|
cannam@89
|
647 len = s->pending;
|
cannam@89
|
648 if (len > strm->avail_out) len = strm->avail_out;
|
cannam@89
|
649 if (len == 0) return;
|
cannam@89
|
650
|
cannam@89
|
651 zmemcpy(strm->next_out, s->pending_out, len);
|
cannam@89
|
652 strm->next_out += len;
|
cannam@89
|
653 s->pending_out += len;
|
cannam@89
|
654 strm->total_out += len;
|
cannam@89
|
655 strm->avail_out -= len;
|
cannam@89
|
656 s->pending -= len;
|
cannam@89
|
657 if (s->pending == 0) {
|
cannam@89
|
658 s->pending_out = s->pending_buf;
|
cannam@89
|
659 }
|
cannam@89
|
660 }
|
cannam@89
|
661
|
cannam@89
|
662 /* ========================================================================= */
|
cannam@89
|
663 int ZEXPORT deflate (strm, flush)
|
cannam@89
|
664 z_streamp strm;
|
cannam@89
|
665 int flush;
|
cannam@89
|
666 {
|
cannam@89
|
667 int old_flush; /* value of flush param for previous deflate call */
|
cannam@89
|
668 deflate_state *s;
|
cannam@89
|
669
|
cannam@89
|
670 if (strm == Z_NULL || strm->state == Z_NULL ||
|
cannam@89
|
671 flush > Z_BLOCK || flush < 0) {
|
cannam@89
|
672 return Z_STREAM_ERROR;
|
cannam@89
|
673 }
|
cannam@89
|
674 s = strm->state;
|
cannam@89
|
675
|
cannam@89
|
676 if (strm->next_out == Z_NULL ||
|
cannam@89
|
677 (strm->next_in == Z_NULL && strm->avail_in != 0) ||
|
cannam@89
|
678 (s->status == FINISH_STATE && flush != Z_FINISH)) {
|
cannam@89
|
679 ERR_RETURN(strm, Z_STREAM_ERROR);
|
cannam@89
|
680 }
|
cannam@89
|
681 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
|
cannam@89
|
682
|
cannam@89
|
683 s->strm = strm; /* just in case */
|
cannam@89
|
684 old_flush = s->last_flush;
|
cannam@89
|
685 s->last_flush = flush;
|
cannam@89
|
686
|
cannam@89
|
687 /* Write the header */
|
cannam@89
|
688 if (s->status == INIT_STATE) {
|
cannam@89
|
689 #ifdef GZIP
|
cannam@89
|
690 if (s->wrap == 2) {
|
cannam@89
|
691 strm->adler = crc32(0L, Z_NULL, 0);
|
cannam@89
|
692 put_byte(s, 31);
|
cannam@89
|
693 put_byte(s, 139);
|
cannam@89
|
694 put_byte(s, 8);
|
cannam@89
|
695 if (s->gzhead == Z_NULL) {
|
cannam@89
|
696 put_byte(s, 0);
|
cannam@89
|
697 put_byte(s, 0);
|
cannam@89
|
698 put_byte(s, 0);
|
cannam@89
|
699 put_byte(s, 0);
|
cannam@89
|
700 put_byte(s, 0);
|
cannam@89
|
701 put_byte(s, s->level == 9 ? 2 :
|
cannam@89
|
702 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
|
cannam@89
|
703 4 : 0));
|
cannam@89
|
704 put_byte(s, OS_CODE);
|
cannam@89
|
705 s->status = BUSY_STATE;
|
cannam@89
|
706 }
|
cannam@89
|
707 else {
|
cannam@89
|
708 put_byte(s, (s->gzhead->text ? 1 : 0) +
|
cannam@89
|
709 (s->gzhead->hcrc ? 2 : 0) +
|
cannam@89
|
710 (s->gzhead->extra == Z_NULL ? 0 : 4) +
|
cannam@89
|
711 (s->gzhead->name == Z_NULL ? 0 : 8) +
|
cannam@89
|
712 (s->gzhead->comment == Z_NULL ? 0 : 16)
|
cannam@89
|
713 );
|
cannam@89
|
714 put_byte(s, (Byte)(s->gzhead->time & 0xff));
|
cannam@89
|
715 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
|
cannam@89
|
716 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
|
cannam@89
|
717 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
|
cannam@89
|
718 put_byte(s, s->level == 9 ? 2 :
|
cannam@89
|
719 (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2 ?
|
cannam@89
|
720 4 : 0));
|
cannam@89
|
721 put_byte(s, s->gzhead->os & 0xff);
|
cannam@89
|
722 if (s->gzhead->extra != Z_NULL) {
|
cannam@89
|
723 put_byte(s, s->gzhead->extra_len & 0xff);
|
cannam@89
|
724 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
|
cannam@89
|
725 }
|
cannam@89
|
726 if (s->gzhead->hcrc)
|
cannam@89
|
727 strm->adler = crc32(strm->adler, s->pending_buf,
|
cannam@89
|
728 s->pending);
|
cannam@89
|
729 s->gzindex = 0;
|
cannam@89
|
730 s->status = EXTRA_STATE;
|
cannam@89
|
731 }
|
cannam@89
|
732 }
|
cannam@89
|
733 else
|
cannam@89
|
734 #endif
|
cannam@89
|
735 {
|
cannam@89
|
736 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
|
cannam@89
|
737 uInt level_flags;
|
cannam@89
|
738
|
cannam@89
|
739 if (s->strategy >= Z_HUFFMAN_ONLY || s->level < 2)
|
cannam@89
|
740 level_flags = 0;
|
cannam@89
|
741 else if (s->level < 6)
|
cannam@89
|
742 level_flags = 1;
|
cannam@89
|
743 else if (s->level == 6)
|
cannam@89
|
744 level_flags = 2;
|
cannam@89
|
745 else
|
cannam@89
|
746 level_flags = 3;
|
cannam@89
|
747 header |= (level_flags << 6);
|
cannam@89
|
748 if (s->strstart != 0) header |= PRESET_DICT;
|
cannam@89
|
749 header += 31 - (header % 31);
|
cannam@89
|
750
|
cannam@89
|
751 s->status = BUSY_STATE;
|
cannam@89
|
752 putShortMSB(s, header);
|
cannam@89
|
753
|
cannam@89
|
754 /* Save the adler32 of the preset dictionary: */
|
cannam@89
|
755 if (s->strstart != 0) {
|
cannam@89
|
756 putShortMSB(s, (uInt)(strm->adler >> 16));
|
cannam@89
|
757 putShortMSB(s, (uInt)(strm->adler & 0xffff));
|
cannam@89
|
758 }
|
cannam@89
|
759 strm->adler = adler32(0L, Z_NULL, 0);
|
cannam@89
|
760 }
|
cannam@89
|
761 }
|
cannam@89
|
762 #ifdef GZIP
|
cannam@89
|
763 if (s->status == EXTRA_STATE) {
|
cannam@89
|
764 if (s->gzhead->extra != Z_NULL) {
|
cannam@89
|
765 uInt beg = s->pending; /* start of bytes to update crc */
|
cannam@89
|
766
|
cannam@89
|
767 while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
|
cannam@89
|
768 if (s->pending == s->pending_buf_size) {
|
cannam@89
|
769 if (s->gzhead->hcrc && s->pending > beg)
|
cannam@89
|
770 strm->adler = crc32(strm->adler, s->pending_buf + beg,
|
cannam@89
|
771 s->pending - beg);
|
cannam@89
|
772 flush_pending(strm);
|
cannam@89
|
773 beg = s->pending;
|
cannam@89
|
774 if (s->pending == s->pending_buf_size)
|
cannam@89
|
775 break;
|
cannam@89
|
776 }
|
cannam@89
|
777 put_byte(s, s->gzhead->extra[s->gzindex]);
|
cannam@89
|
778 s->gzindex++;
|
cannam@89
|
779 }
|
cannam@89
|
780 if (s->gzhead->hcrc && s->pending > beg)
|
cannam@89
|
781 strm->adler = crc32(strm->adler, s->pending_buf + beg,
|
cannam@89
|
782 s->pending - beg);
|
cannam@89
|
783 if (s->gzindex == s->gzhead->extra_len) {
|
cannam@89
|
784 s->gzindex = 0;
|
cannam@89
|
785 s->status = NAME_STATE;
|
cannam@89
|
786 }
|
cannam@89
|
787 }
|
cannam@89
|
788 else
|
cannam@89
|
789 s->status = NAME_STATE;
|
cannam@89
|
790 }
|
cannam@89
|
791 if (s->status == NAME_STATE) {
|
cannam@89
|
792 if (s->gzhead->name != Z_NULL) {
|
cannam@89
|
793 uInt beg = s->pending; /* start of bytes to update crc */
|
cannam@89
|
794 int val;
|
cannam@89
|
795
|
cannam@89
|
796 do {
|
cannam@89
|
797 if (s->pending == s->pending_buf_size) {
|
cannam@89
|
798 if (s->gzhead->hcrc && s->pending > beg)
|
cannam@89
|
799 strm->adler = crc32(strm->adler, s->pending_buf + beg,
|
cannam@89
|
800 s->pending - beg);
|
cannam@89
|
801 flush_pending(strm);
|
cannam@89
|
802 beg = s->pending;
|
cannam@89
|
803 if (s->pending == s->pending_buf_size) {
|
cannam@89
|
804 val = 1;
|
cannam@89
|
805 break;
|
cannam@89
|
806 }
|
cannam@89
|
807 }
|
cannam@89
|
808 val = s->gzhead->name[s->gzindex++];
|
cannam@89
|
809 put_byte(s, val);
|
cannam@89
|
810 } while (val != 0);
|
cannam@89
|
811 if (s->gzhead->hcrc && s->pending > beg)
|
cannam@89
|
812 strm->adler = crc32(strm->adler, s->pending_buf + beg,
|
cannam@89
|
813 s->pending - beg);
|
cannam@89
|
814 if (val == 0) {
|
cannam@89
|
815 s->gzindex = 0;
|
cannam@89
|
816 s->status = COMMENT_STATE;
|
cannam@89
|
817 }
|
cannam@89
|
818 }
|
cannam@89
|
819 else
|
cannam@89
|
820 s->status = COMMENT_STATE;
|
cannam@89
|
821 }
|
cannam@89
|
822 if (s->status == COMMENT_STATE) {
|
cannam@89
|
823 if (s->gzhead->comment != Z_NULL) {
|
cannam@89
|
824 uInt beg = s->pending; /* start of bytes to update crc */
|
cannam@89
|
825 int val;
|
cannam@89
|
826
|
cannam@89
|
827 do {
|
cannam@89
|
828 if (s->pending == s->pending_buf_size) {
|
cannam@89
|
829 if (s->gzhead->hcrc && s->pending > beg)
|
cannam@89
|
830 strm->adler = crc32(strm->adler, s->pending_buf + beg,
|
cannam@89
|
831 s->pending - beg);
|
cannam@89
|
832 flush_pending(strm);
|
cannam@89
|
833 beg = s->pending;
|
cannam@89
|
834 if (s->pending == s->pending_buf_size) {
|
cannam@89
|
835 val = 1;
|
cannam@89
|
836 break;
|
cannam@89
|
837 }
|
cannam@89
|
838 }
|
cannam@89
|
839 val = s->gzhead->comment[s->gzindex++];
|
cannam@89
|
840 put_byte(s, val);
|
cannam@89
|
841 } while (val != 0);
|
cannam@89
|
842 if (s->gzhead->hcrc && s->pending > beg)
|
cannam@89
|
843 strm->adler = crc32(strm->adler, s->pending_buf + beg,
|
cannam@89
|
844 s->pending - beg);
|
cannam@89
|
845 if (val == 0)
|
cannam@89
|
846 s->status = HCRC_STATE;
|
cannam@89
|
847 }
|
cannam@89
|
848 else
|
cannam@89
|
849 s->status = HCRC_STATE;
|
cannam@89
|
850 }
|
cannam@89
|
851 if (s->status == HCRC_STATE) {
|
cannam@89
|
852 if (s->gzhead->hcrc) {
|
cannam@89
|
853 if (s->pending + 2 > s->pending_buf_size)
|
cannam@89
|
854 flush_pending(strm);
|
cannam@89
|
855 if (s->pending + 2 <= s->pending_buf_size) {
|
cannam@89
|
856 put_byte(s, (Byte)(strm->adler & 0xff));
|
cannam@89
|
857 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
|
cannam@89
|
858 strm->adler = crc32(0L, Z_NULL, 0);
|
cannam@89
|
859 s->status = BUSY_STATE;
|
cannam@89
|
860 }
|
cannam@89
|
861 }
|
cannam@89
|
862 else
|
cannam@89
|
863 s->status = BUSY_STATE;
|
cannam@89
|
864 }
|
cannam@89
|
865 #endif
|
cannam@89
|
866
|
cannam@89
|
867 /* Flush as much pending output as possible */
|
cannam@89
|
868 if (s->pending != 0) {
|
cannam@89
|
869 flush_pending(strm);
|
cannam@89
|
870 if (strm->avail_out == 0) {
|
cannam@89
|
871 /* Since avail_out is 0, deflate will be called again with
|
cannam@89
|
872 * more output space, but possibly with both pending and
|
cannam@89
|
873 * avail_in equal to zero. There won't be anything to do,
|
cannam@89
|
874 * but this is not an error situation so make sure we
|
cannam@89
|
875 * return OK instead of BUF_ERROR at next call of deflate:
|
cannam@89
|
876 */
|
cannam@89
|
877 s->last_flush = -1;
|
cannam@89
|
878 return Z_OK;
|
cannam@89
|
879 }
|
cannam@89
|
880
|
cannam@89
|
881 /* Make sure there is something to do and avoid duplicate consecutive
|
cannam@89
|
882 * flushes. For repeated and useless calls with Z_FINISH, we keep
|
cannam@89
|
883 * returning Z_STREAM_END instead of Z_BUF_ERROR.
|
cannam@89
|
884 */
|
cannam@89
|
885 } else if (strm->avail_in == 0 && RANK(flush) <= RANK(old_flush) &&
|
cannam@89
|
886 flush != Z_FINISH) {
|
cannam@89
|
887 ERR_RETURN(strm, Z_BUF_ERROR);
|
cannam@89
|
888 }
|
cannam@89
|
889
|
cannam@89
|
890 /* User must not provide more input after the first FINISH: */
|
cannam@89
|
891 if (s->status == FINISH_STATE && strm->avail_in != 0) {
|
cannam@89
|
892 ERR_RETURN(strm, Z_BUF_ERROR);
|
cannam@89
|
893 }
|
cannam@89
|
894
|
cannam@89
|
895 /* Start a new block or continue the current one.
|
cannam@89
|
896 */
|
cannam@89
|
897 if (strm->avail_in != 0 || s->lookahead != 0 ||
|
cannam@89
|
898 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
|
cannam@89
|
899 block_state bstate;
|
cannam@89
|
900
|
cannam@89
|
901 bstate = s->strategy == Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :
|
cannam@89
|
902 (s->strategy == Z_RLE ? deflate_rle(s, flush) :
|
cannam@89
|
903 (*(configuration_table[s->level].func))(s, flush));
|
cannam@89
|
904
|
cannam@89
|
905 if (bstate == finish_started || bstate == finish_done) {
|
cannam@89
|
906 s->status = FINISH_STATE;
|
cannam@89
|
907 }
|
cannam@89
|
908 if (bstate == need_more || bstate == finish_started) {
|
cannam@89
|
909 if (strm->avail_out == 0) {
|
cannam@89
|
910 s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
|
cannam@89
|
911 }
|
cannam@89
|
912 return Z_OK;
|
cannam@89
|
913 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
|
cannam@89
|
914 * of deflate should use the same flush parameter to make sure
|
cannam@89
|
915 * that the flush is complete. So we don't have to output an
|
cannam@89
|
916 * empty block here, this will be done at next call. This also
|
cannam@89
|
917 * ensures that for a very small output buffer, we emit at most
|
cannam@89
|
918 * one empty block.
|
cannam@89
|
919 */
|
cannam@89
|
920 }
|
cannam@89
|
921 if (bstate == block_done) {
|
cannam@89
|
922 if (flush == Z_PARTIAL_FLUSH) {
|
cannam@89
|
923 _tr_align(s);
|
cannam@89
|
924 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
cannam@89
|
925 _tr_stored_block(s, (char*)0, 0L, 0);
|
cannam@89
|
926 /* For a full flush, this empty block will be recognized
|
cannam@89
|
927 * as a special marker by inflate_sync().
|
cannam@89
|
928 */
|
cannam@89
|
929 if (flush == Z_FULL_FLUSH) {
|
cannam@89
|
930 CLEAR_HASH(s); /* forget history */
|
cannam@89
|
931 if (s->lookahead == 0) {
|
cannam@89
|
932 s->strstart = 0;
|
cannam@89
|
933 s->block_start = 0L;
|
cannam@89
|
934 s->insert = 0;
|
cannam@89
|
935 }
|
cannam@89
|
936 }
|
cannam@89
|
937 }
|
cannam@89
|
938 flush_pending(strm);
|
cannam@89
|
939 if (strm->avail_out == 0) {
|
cannam@89
|
940 s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
|
cannam@89
|
941 return Z_OK;
|
cannam@89
|
942 }
|
cannam@89
|
943 }
|
cannam@89
|
944 }
|
cannam@89
|
945 Assert(strm->avail_out > 0, "bug2");
|
cannam@89
|
946
|
cannam@89
|
947 if (flush != Z_FINISH) return Z_OK;
|
cannam@89
|
948 if (s->wrap <= 0) return Z_STREAM_END;
|
cannam@89
|
949
|
cannam@89
|
950 /* Write the trailer */
|
cannam@89
|
951 #ifdef GZIP
|
cannam@89
|
952 if (s->wrap == 2) {
|
cannam@89
|
953 put_byte(s, (Byte)(strm->adler & 0xff));
|
cannam@89
|
954 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
|
cannam@89
|
955 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
|
cannam@89
|
956 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
|
cannam@89
|
957 put_byte(s, (Byte)(strm->total_in & 0xff));
|
cannam@89
|
958 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
|
cannam@89
|
959 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
|
cannam@89
|
960 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
|
cannam@89
|
961 }
|
cannam@89
|
962 else
|
cannam@89
|
963 #endif
|
cannam@89
|
964 {
|
cannam@89
|
965 putShortMSB(s, (uInt)(strm->adler >> 16));
|
cannam@89
|
966 putShortMSB(s, (uInt)(strm->adler & 0xffff));
|
cannam@89
|
967 }
|
cannam@89
|
968 flush_pending(strm);
|
cannam@89
|
969 /* If avail_out is zero, the application will call deflate again
|
cannam@89
|
970 * to flush the rest.
|
cannam@89
|
971 */
|
cannam@89
|
972 if (s->wrap > 0) s->wrap = -s->wrap; /* write the trailer only once! */
|
cannam@89
|
973 return s->pending != 0 ? Z_OK : Z_STREAM_END;
|
cannam@89
|
974 }
|
cannam@89
|
975
|
cannam@89
|
976 /* ========================================================================= */
|
cannam@89
|
977 int ZEXPORT deflateEnd (strm)
|
cannam@89
|
978 z_streamp strm;
|
cannam@89
|
979 {
|
cannam@89
|
980 int status;
|
cannam@89
|
981
|
cannam@89
|
982 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
|
cannam@89
|
983
|
cannam@89
|
984 status = strm->state->status;
|
cannam@89
|
985 if (status != INIT_STATE &&
|
cannam@89
|
986 status != EXTRA_STATE &&
|
cannam@89
|
987 status != NAME_STATE &&
|
cannam@89
|
988 status != COMMENT_STATE &&
|
cannam@89
|
989 status != HCRC_STATE &&
|
cannam@89
|
990 status != BUSY_STATE &&
|
cannam@89
|
991 status != FINISH_STATE) {
|
cannam@89
|
992 return Z_STREAM_ERROR;
|
cannam@89
|
993 }
|
cannam@89
|
994
|
cannam@89
|
995 /* Deallocate in reverse order of allocations: */
|
cannam@89
|
996 TRY_FREE(strm, strm->state->pending_buf);
|
cannam@89
|
997 TRY_FREE(strm, strm->state->head);
|
cannam@89
|
998 TRY_FREE(strm, strm->state->prev);
|
cannam@89
|
999 TRY_FREE(strm, strm->state->window);
|
cannam@89
|
1000
|
cannam@89
|
1001 ZFREE(strm, strm->state);
|
cannam@89
|
1002 strm->state = Z_NULL;
|
cannam@89
|
1003
|
cannam@89
|
1004 return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
|
cannam@89
|
1005 }
|
cannam@89
|
1006
|
cannam@89
|
1007 /* =========================================================================
|
cannam@89
|
1008 * Copy the source state to the destination state.
|
cannam@89
|
1009 * To simplify the source, this is not supported for 16-bit MSDOS (which
|
cannam@89
|
1010 * doesn't have enough memory anyway to duplicate compression states).
|
cannam@89
|
1011 */
|
cannam@89
|
1012 int ZEXPORT deflateCopy (dest, source)
|
cannam@89
|
1013 z_streamp dest;
|
cannam@89
|
1014 z_streamp source;
|
cannam@89
|
1015 {
|
cannam@89
|
1016 #ifdef MAXSEG_64K
|
cannam@89
|
1017 return Z_STREAM_ERROR;
|
cannam@89
|
1018 #else
|
cannam@89
|
1019 deflate_state *ds;
|
cannam@89
|
1020 deflate_state *ss;
|
cannam@89
|
1021 ushf *overlay;
|
cannam@89
|
1022
|
cannam@89
|
1023
|
cannam@89
|
1024 if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
|
cannam@89
|
1025 return Z_STREAM_ERROR;
|
cannam@89
|
1026 }
|
cannam@89
|
1027
|
cannam@89
|
1028 ss = source->state;
|
cannam@89
|
1029
|
cannam@89
|
1030 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
|
cannam@89
|
1031
|
cannam@89
|
1032 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
|
cannam@89
|
1033 if (ds == Z_NULL) return Z_MEM_ERROR;
|
cannam@89
|
1034 dest->state = (struct internal_state FAR *) ds;
|
cannam@89
|
1035 zmemcpy((voidpf)ds, (voidpf)ss, sizeof(deflate_state));
|
cannam@89
|
1036 ds->strm = dest;
|
cannam@89
|
1037
|
cannam@89
|
1038 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
|
cannam@89
|
1039 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
|
cannam@89
|
1040 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
|
cannam@89
|
1041 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
|
cannam@89
|
1042 ds->pending_buf = (uchf *) overlay;
|
cannam@89
|
1043
|
cannam@89
|
1044 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
|
cannam@89
|
1045 ds->pending_buf == Z_NULL) {
|
cannam@89
|
1046 deflateEnd (dest);
|
cannam@89
|
1047 return Z_MEM_ERROR;
|
cannam@89
|
1048 }
|
cannam@89
|
1049 /* following zmemcpy do not work for 16-bit MSDOS */
|
cannam@89
|
1050 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
|
cannam@89
|
1051 zmemcpy((voidpf)ds->prev, (voidpf)ss->prev, ds->w_size * sizeof(Pos));
|
cannam@89
|
1052 zmemcpy((voidpf)ds->head, (voidpf)ss->head, ds->hash_size * sizeof(Pos));
|
cannam@89
|
1053 zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
|
cannam@89
|
1054
|
cannam@89
|
1055 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
|
cannam@89
|
1056 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);
|
cannam@89
|
1057 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
|
cannam@89
|
1058
|
cannam@89
|
1059 ds->l_desc.dyn_tree = ds->dyn_ltree;
|
cannam@89
|
1060 ds->d_desc.dyn_tree = ds->dyn_dtree;
|
cannam@89
|
1061 ds->bl_desc.dyn_tree = ds->bl_tree;
|
cannam@89
|
1062
|
cannam@89
|
1063 return Z_OK;
|
cannam@89
|
1064 #endif /* MAXSEG_64K */
|
cannam@89
|
1065 }
|
cannam@89
|
1066
|
cannam@89
|
1067 /* ===========================================================================
|
cannam@89
|
1068 * Read a new buffer from the current input stream, update the adler32
|
cannam@89
|
1069 * and total number of bytes read. All deflate() input goes through
|
cannam@89
|
1070 * this function so some applications may wish to modify it to avoid
|
cannam@89
|
1071 * allocating a large strm->next_in buffer and copying from it.
|
cannam@89
|
1072 * (See also flush_pending()).
|
cannam@89
|
1073 */
|
cannam@89
|
1074 local int read_buf(strm, buf, size)
|
cannam@89
|
1075 z_streamp strm;
|
cannam@89
|
1076 Bytef *buf;
|
cannam@89
|
1077 unsigned size;
|
cannam@89
|
1078 {
|
cannam@89
|
1079 unsigned len = strm->avail_in;
|
cannam@89
|
1080
|
cannam@89
|
1081 if (len > size) len = size;
|
cannam@89
|
1082 if (len == 0) return 0;
|
cannam@89
|
1083
|
cannam@89
|
1084 strm->avail_in -= len;
|
cannam@89
|
1085
|
cannam@89
|
1086 zmemcpy(buf, strm->next_in, len);
|
cannam@89
|
1087 if (strm->state->wrap == 1) {
|
cannam@89
|
1088 strm->adler = adler32(strm->adler, buf, len);
|
cannam@89
|
1089 }
|
cannam@89
|
1090 #ifdef GZIP
|
cannam@89
|
1091 else if (strm->state->wrap == 2) {
|
cannam@89
|
1092 strm->adler = crc32(strm->adler, buf, len);
|
cannam@89
|
1093 }
|
cannam@89
|
1094 #endif
|
cannam@89
|
1095 strm->next_in += len;
|
cannam@89
|
1096 strm->total_in += len;
|
cannam@89
|
1097
|
cannam@89
|
1098 return (int)len;
|
cannam@89
|
1099 }
|
cannam@89
|
1100
|
cannam@89
|
1101 /* ===========================================================================
|
cannam@89
|
1102 * Initialize the "longest match" routines for a new zlib stream
|
cannam@89
|
1103 */
|
cannam@89
|
1104 local void lm_init (s)
|
cannam@89
|
1105 deflate_state *s;
|
cannam@89
|
1106 {
|
cannam@89
|
1107 s->window_size = (ulg)2L*s->w_size;
|
cannam@89
|
1108
|
cannam@89
|
1109 CLEAR_HASH(s);
|
cannam@89
|
1110
|
cannam@89
|
1111 /* Set the default configuration parameters:
|
cannam@89
|
1112 */
|
cannam@89
|
1113 s->max_lazy_match = configuration_table[s->level].max_lazy;
|
cannam@89
|
1114 s->good_match = configuration_table[s->level].good_length;
|
cannam@89
|
1115 s->nice_match = configuration_table[s->level].nice_length;
|
cannam@89
|
1116 s->max_chain_length = configuration_table[s->level].max_chain;
|
cannam@89
|
1117
|
cannam@89
|
1118 s->strstart = 0;
|
cannam@89
|
1119 s->block_start = 0L;
|
cannam@89
|
1120 s->lookahead = 0;
|
cannam@89
|
1121 s->insert = 0;
|
cannam@89
|
1122 s->match_length = s->prev_length = MIN_MATCH-1;
|
cannam@89
|
1123 s->match_available = 0;
|
cannam@89
|
1124 s->ins_h = 0;
|
cannam@89
|
1125 #ifndef FASTEST
|
cannam@89
|
1126 #ifdef ASMV
|
cannam@89
|
1127 match_init(); /* initialize the asm code */
|
cannam@89
|
1128 #endif
|
cannam@89
|
1129 #endif
|
cannam@89
|
1130 }
|
cannam@89
|
1131
|
cannam@89
|
1132 #ifndef FASTEST
|
cannam@89
|
1133 /* ===========================================================================
|
cannam@89
|
1134 * Set match_start to the longest match starting at the given string and
|
cannam@89
|
1135 * return its length. Matches shorter or equal to prev_length are discarded,
|
cannam@89
|
1136 * in which case the result is equal to prev_length and match_start is
|
cannam@89
|
1137 * garbage.
|
cannam@89
|
1138 * IN assertions: cur_match is the head of the hash chain for the current
|
cannam@89
|
1139 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
|
cannam@89
|
1140 * OUT assertion: the match length is not greater than s->lookahead.
|
cannam@89
|
1141 */
|
cannam@89
|
1142 #ifndef ASMV
|
cannam@89
|
1143 /* For 80x86 and 680x0, an optimized version will be provided in match.asm or
|
cannam@89
|
1144 * match.S. The code will be functionally equivalent.
|
cannam@89
|
1145 */
|
cannam@89
|
1146 local uInt longest_match(s, cur_match)
|
cannam@89
|
1147 deflate_state *s;
|
cannam@89
|
1148 IPos cur_match; /* current match */
|
cannam@89
|
1149 {
|
cannam@89
|
1150 unsigned chain_length = s->max_chain_length;/* max hash chain length */
|
cannam@89
|
1151 register Bytef *scan = s->window + s->strstart; /* current string */
|
cannam@89
|
1152 register Bytef *match; /* matched string */
|
cannam@89
|
1153 register int len; /* length of current match */
|
cannam@89
|
1154 int best_len = s->prev_length; /* best match length so far */
|
cannam@89
|
1155 int nice_match = s->nice_match; /* stop if match long enough */
|
cannam@89
|
1156 IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
|
cannam@89
|
1157 s->strstart - (IPos)MAX_DIST(s) : NIL;
|
cannam@89
|
1158 /* Stop when cur_match becomes <= limit. To simplify the code,
|
cannam@89
|
1159 * we prevent matches with the string of window index 0.
|
cannam@89
|
1160 */
|
cannam@89
|
1161 Posf *prev = s->prev;
|
cannam@89
|
1162 uInt wmask = s->w_mask;
|
cannam@89
|
1163
|
cannam@89
|
1164 #ifdef UNALIGNED_OK
|
cannam@89
|
1165 /* Compare two bytes at a time. Note: this is not always beneficial.
|
cannam@89
|
1166 * Try with and without -DUNALIGNED_OK to check.
|
cannam@89
|
1167 */
|
cannam@89
|
1168 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
|
cannam@89
|
1169 register ush scan_start = *(ushf*)scan;
|
cannam@89
|
1170 register ush scan_end = *(ushf*)(scan+best_len-1);
|
cannam@89
|
1171 #else
|
cannam@89
|
1172 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
|
cannam@89
|
1173 register Byte scan_end1 = scan[best_len-1];
|
cannam@89
|
1174 register Byte scan_end = scan[best_len];
|
cannam@89
|
1175 #endif
|
cannam@89
|
1176
|
cannam@89
|
1177 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
|
cannam@89
|
1178 * It is easy to get rid of this optimization if necessary.
|
cannam@89
|
1179 */
|
cannam@89
|
1180 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
|
cannam@89
|
1181
|
cannam@89
|
1182 /* Do not waste too much time if we already have a good match: */
|
cannam@89
|
1183 if (s->prev_length >= s->good_match) {
|
cannam@89
|
1184 chain_length >>= 2;
|
cannam@89
|
1185 }
|
cannam@89
|
1186 /* Do not look for matches beyond the end of the input. This is necessary
|
cannam@89
|
1187 * to make deflate deterministic.
|
cannam@89
|
1188 */
|
cannam@89
|
1189 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
|
cannam@89
|
1190
|
cannam@89
|
1191 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
|
cannam@89
|
1192
|
cannam@89
|
1193 do {
|
cannam@89
|
1194 Assert(cur_match < s->strstart, "no future");
|
cannam@89
|
1195 match = s->window + cur_match;
|
cannam@89
|
1196
|
cannam@89
|
1197 /* Skip to next match if the match length cannot increase
|
cannam@89
|
1198 * or if the match length is less than 2. Note that the checks below
|
cannam@89
|
1199 * for insufficient lookahead only occur occasionally for performance
|
cannam@89
|
1200 * reasons. Therefore uninitialized memory will be accessed, and
|
cannam@89
|
1201 * conditional jumps will be made that depend on those values.
|
cannam@89
|
1202 * However the length of the match is limited to the lookahead, so
|
cannam@89
|
1203 * the output of deflate is not affected by the uninitialized values.
|
cannam@89
|
1204 */
|
cannam@89
|
1205 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
|
cannam@89
|
1206 /* This code assumes sizeof(unsigned short) == 2. Do not use
|
cannam@89
|
1207 * UNALIGNED_OK if your compiler uses a different size.
|
cannam@89
|
1208 */
|
cannam@89
|
1209 if (*(ushf*)(match+best_len-1) != scan_end ||
|
cannam@89
|
1210 *(ushf*)match != scan_start) continue;
|
cannam@89
|
1211
|
cannam@89
|
1212 /* It is not necessary to compare scan[2] and match[2] since they are
|
cannam@89
|
1213 * always equal when the other bytes match, given that the hash keys
|
cannam@89
|
1214 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
|
cannam@89
|
1215 * strstart+3, +5, ... up to strstart+257. We check for insufficient
|
cannam@89
|
1216 * lookahead only every 4th comparison; the 128th check will be made
|
cannam@89
|
1217 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
|
cannam@89
|
1218 * necessary to put more guard bytes at the end of the window, or
|
cannam@89
|
1219 * to check more often for insufficient lookahead.
|
cannam@89
|
1220 */
|
cannam@89
|
1221 Assert(scan[2] == match[2], "scan[2]?");
|
cannam@89
|
1222 scan++, match++;
|
cannam@89
|
1223 do {
|
cannam@89
|
1224 } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
|
cannam@89
|
1225 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
|
cannam@89
|
1226 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
|
cannam@89
|
1227 *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
|
cannam@89
|
1228 scan < strend);
|
cannam@89
|
1229 /* The funny "do {}" generates better code on most compilers */
|
cannam@89
|
1230
|
cannam@89
|
1231 /* Here, scan <= window+strstart+257 */
|
cannam@89
|
1232 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
|
cannam@89
|
1233 if (*scan == *match) scan++;
|
cannam@89
|
1234
|
cannam@89
|
1235 len = (MAX_MATCH - 1) - (int)(strend-scan);
|
cannam@89
|
1236 scan = strend - (MAX_MATCH-1);
|
cannam@89
|
1237
|
cannam@89
|
1238 #else /* UNALIGNED_OK */
|
cannam@89
|
1239
|
cannam@89
|
1240 if (match[best_len] != scan_end ||
|
cannam@89
|
1241 match[best_len-1] != scan_end1 ||
|
cannam@89
|
1242 *match != *scan ||
|
cannam@89
|
1243 *++match != scan[1]) continue;
|
cannam@89
|
1244
|
cannam@89
|
1245 /* The check at best_len-1 can be removed because it will be made
|
cannam@89
|
1246 * again later. (This heuristic is not always a win.)
|
cannam@89
|
1247 * It is not necessary to compare scan[2] and match[2] since they
|
cannam@89
|
1248 * are always equal when the other bytes match, given that
|
cannam@89
|
1249 * the hash keys are equal and that HASH_BITS >= 8.
|
cannam@89
|
1250 */
|
cannam@89
|
1251 scan += 2, match++;
|
cannam@89
|
1252 Assert(*scan == *match, "match[2]?");
|
cannam@89
|
1253
|
cannam@89
|
1254 /* We check for insufficient lookahead only every 8th comparison;
|
cannam@89
|
1255 * the 256th check will be made at strstart+258.
|
cannam@89
|
1256 */
|
cannam@89
|
1257 do {
|
cannam@89
|
1258 } while (*++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1259 *++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1260 *++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1261 *++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1262 scan < strend);
|
cannam@89
|
1263
|
cannam@89
|
1264 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
|
cannam@89
|
1265
|
cannam@89
|
1266 len = MAX_MATCH - (int)(strend - scan);
|
cannam@89
|
1267 scan = strend - MAX_MATCH;
|
cannam@89
|
1268
|
cannam@89
|
1269 #endif /* UNALIGNED_OK */
|
cannam@89
|
1270
|
cannam@89
|
1271 if (len > best_len) {
|
cannam@89
|
1272 s->match_start = cur_match;
|
cannam@89
|
1273 best_len = len;
|
cannam@89
|
1274 if (len >= nice_match) break;
|
cannam@89
|
1275 #ifdef UNALIGNED_OK
|
cannam@89
|
1276 scan_end = *(ushf*)(scan+best_len-1);
|
cannam@89
|
1277 #else
|
cannam@89
|
1278 scan_end1 = scan[best_len-1];
|
cannam@89
|
1279 scan_end = scan[best_len];
|
cannam@89
|
1280 #endif
|
cannam@89
|
1281 }
|
cannam@89
|
1282 } while ((cur_match = prev[cur_match & wmask]) > limit
|
cannam@89
|
1283 && --chain_length != 0);
|
cannam@89
|
1284
|
cannam@89
|
1285 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
|
cannam@89
|
1286 return s->lookahead;
|
cannam@89
|
1287 }
|
cannam@89
|
1288 #endif /* ASMV */
|
cannam@89
|
1289
|
cannam@89
|
1290 #else /* FASTEST */
|
cannam@89
|
1291
|
cannam@89
|
1292 /* ---------------------------------------------------------------------------
|
cannam@89
|
1293 * Optimized version for FASTEST only
|
cannam@89
|
1294 */
|
cannam@89
|
1295 local uInt longest_match(s, cur_match)
|
cannam@89
|
1296 deflate_state *s;
|
cannam@89
|
1297 IPos cur_match; /* current match */
|
cannam@89
|
1298 {
|
cannam@89
|
1299 register Bytef *scan = s->window + s->strstart; /* current string */
|
cannam@89
|
1300 register Bytef *match; /* matched string */
|
cannam@89
|
1301 register int len; /* length of current match */
|
cannam@89
|
1302 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
|
cannam@89
|
1303
|
cannam@89
|
1304 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
|
cannam@89
|
1305 * It is easy to get rid of this optimization if necessary.
|
cannam@89
|
1306 */
|
cannam@89
|
1307 Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
|
cannam@89
|
1308
|
cannam@89
|
1309 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
|
cannam@89
|
1310
|
cannam@89
|
1311 Assert(cur_match < s->strstart, "no future");
|
cannam@89
|
1312
|
cannam@89
|
1313 match = s->window + cur_match;
|
cannam@89
|
1314
|
cannam@89
|
1315 /* Return failure if the match length is less than 2:
|
cannam@89
|
1316 */
|
cannam@89
|
1317 if (match[0] != scan[0] || match[1] != scan[1]) return MIN_MATCH-1;
|
cannam@89
|
1318
|
cannam@89
|
1319 /* The check at best_len-1 can be removed because it will be made
|
cannam@89
|
1320 * again later. (This heuristic is not always a win.)
|
cannam@89
|
1321 * It is not necessary to compare scan[2] and match[2] since they
|
cannam@89
|
1322 * are always equal when the other bytes match, given that
|
cannam@89
|
1323 * the hash keys are equal and that HASH_BITS >= 8.
|
cannam@89
|
1324 */
|
cannam@89
|
1325 scan += 2, match += 2;
|
cannam@89
|
1326 Assert(*scan == *match, "match[2]?");
|
cannam@89
|
1327
|
cannam@89
|
1328 /* We check for insufficient lookahead only every 8th comparison;
|
cannam@89
|
1329 * the 256th check will be made at strstart+258.
|
cannam@89
|
1330 */
|
cannam@89
|
1331 do {
|
cannam@89
|
1332 } while (*++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1333 *++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1334 *++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1335 *++scan == *++match && *++scan == *++match &&
|
cannam@89
|
1336 scan < strend);
|
cannam@89
|
1337
|
cannam@89
|
1338 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
|
cannam@89
|
1339
|
cannam@89
|
1340 len = MAX_MATCH - (int)(strend - scan);
|
cannam@89
|
1341
|
cannam@89
|
1342 if (len < MIN_MATCH) return MIN_MATCH - 1;
|
cannam@89
|
1343
|
cannam@89
|
1344 s->match_start = cur_match;
|
cannam@89
|
1345 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
|
cannam@89
|
1346 }
|
cannam@89
|
1347
|
cannam@89
|
1348 #endif /* FASTEST */
|
cannam@89
|
1349
|
cannam@89
|
1350 #ifdef DEBUG
|
cannam@89
|
1351 /* ===========================================================================
|
cannam@89
|
1352 * Check that the match at match_start is indeed a match.
|
cannam@89
|
1353 */
|
cannam@89
|
1354 local void check_match(s, start, match, length)
|
cannam@89
|
1355 deflate_state *s;
|
cannam@89
|
1356 IPos start, match;
|
cannam@89
|
1357 int length;
|
cannam@89
|
1358 {
|
cannam@89
|
1359 /* check that the match is indeed a match */
|
cannam@89
|
1360 if (zmemcmp(s->window + match,
|
cannam@89
|
1361 s->window + start, length) != EQUAL) {
|
cannam@89
|
1362 fprintf(stderr, " start %u, match %u, length %d\n",
|
cannam@89
|
1363 start, match, length);
|
cannam@89
|
1364 do {
|
cannam@89
|
1365 fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
|
cannam@89
|
1366 } while (--length != 0);
|
cannam@89
|
1367 z_error("invalid match");
|
cannam@89
|
1368 }
|
cannam@89
|
1369 if (z_verbose > 1) {
|
cannam@89
|
1370 fprintf(stderr,"\\[%d,%d]", start-match, length);
|
cannam@89
|
1371 do { putc(s->window[start++], stderr); } while (--length != 0);
|
cannam@89
|
1372 }
|
cannam@89
|
1373 }
|
cannam@89
|
1374 #else
|
cannam@89
|
1375 # define check_match(s, start, match, length)
|
cannam@89
|
1376 #endif /* DEBUG */
|
cannam@89
|
1377
|
cannam@89
|
1378 /* ===========================================================================
|
cannam@89
|
1379 * Fill the window when the lookahead becomes insufficient.
|
cannam@89
|
1380 * Updates strstart and lookahead.
|
cannam@89
|
1381 *
|
cannam@89
|
1382 * IN assertion: lookahead < MIN_LOOKAHEAD
|
cannam@89
|
1383 * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
|
cannam@89
|
1384 * At least one byte has been read, or avail_in == 0; reads are
|
cannam@89
|
1385 * performed for at least two bytes (required for the zip translate_eol
|
cannam@89
|
1386 * option -- not supported here).
|
cannam@89
|
1387 */
|
cannam@89
|
1388 local void fill_window(s)
|
cannam@89
|
1389 deflate_state *s;
|
cannam@89
|
1390 {
|
cannam@89
|
1391 register unsigned n, m;
|
cannam@89
|
1392 register Posf *p;
|
cannam@89
|
1393 unsigned more; /* Amount of free space at the end of the window. */
|
cannam@89
|
1394 uInt wsize = s->w_size;
|
cannam@89
|
1395
|
cannam@89
|
1396 Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
|
cannam@89
|
1397
|
cannam@89
|
1398 do {
|
cannam@89
|
1399 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
|
cannam@89
|
1400
|
cannam@89
|
1401 /* Deal with !@#$% 64K limit: */
|
cannam@89
|
1402 if (sizeof(int) <= 2) {
|
cannam@89
|
1403 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
|
cannam@89
|
1404 more = wsize;
|
cannam@89
|
1405
|
cannam@89
|
1406 } else if (more == (unsigned)(-1)) {
|
cannam@89
|
1407 /* Very unlikely, but possible on 16 bit machine if
|
cannam@89
|
1408 * strstart == 0 && lookahead == 1 (input done a byte at time)
|
cannam@89
|
1409 */
|
cannam@89
|
1410 more--;
|
cannam@89
|
1411 }
|
cannam@89
|
1412 }
|
cannam@89
|
1413
|
cannam@89
|
1414 /* If the window is almost full and there is insufficient lookahead,
|
cannam@89
|
1415 * move the upper half to the lower one to make room in the upper half.
|
cannam@89
|
1416 */
|
cannam@89
|
1417 if (s->strstart >= wsize+MAX_DIST(s)) {
|
cannam@89
|
1418
|
cannam@89
|
1419 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
|
cannam@89
|
1420 s->match_start -= wsize;
|
cannam@89
|
1421 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
|
cannam@89
|
1422 s->block_start -= (long) wsize;
|
cannam@89
|
1423
|
cannam@89
|
1424 /* Slide the hash table (could be avoided with 32 bit values
|
cannam@89
|
1425 at the expense of memory usage). We slide even when level == 0
|
cannam@89
|
1426 to keep the hash table consistent if we switch back to level > 0
|
cannam@89
|
1427 later. (Using level 0 permanently is not an optimal usage of
|
cannam@89
|
1428 zlib, so we don't care about this pathological case.)
|
cannam@89
|
1429 */
|
cannam@89
|
1430 n = s->hash_size;
|
cannam@89
|
1431 p = &s->head[n];
|
cannam@89
|
1432 do {
|
cannam@89
|
1433 m = *--p;
|
cannam@89
|
1434 *p = (Pos)(m >= wsize ? m-wsize : NIL);
|
cannam@89
|
1435 } while (--n);
|
cannam@89
|
1436
|
cannam@89
|
1437 n = wsize;
|
cannam@89
|
1438 #ifndef FASTEST
|
cannam@89
|
1439 p = &s->prev[n];
|
cannam@89
|
1440 do {
|
cannam@89
|
1441 m = *--p;
|
cannam@89
|
1442 *p = (Pos)(m >= wsize ? m-wsize : NIL);
|
cannam@89
|
1443 /* If n is not on any hash chain, prev[n] is garbage but
|
cannam@89
|
1444 * its value will never be used.
|
cannam@89
|
1445 */
|
cannam@89
|
1446 } while (--n);
|
cannam@89
|
1447 #endif
|
cannam@89
|
1448 more += wsize;
|
cannam@89
|
1449 }
|
cannam@89
|
1450 if (s->strm->avail_in == 0) break;
|
cannam@89
|
1451
|
cannam@89
|
1452 /* If there was no sliding:
|
cannam@89
|
1453 * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
|
cannam@89
|
1454 * more == window_size - lookahead - strstart
|
cannam@89
|
1455 * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
|
cannam@89
|
1456 * => more >= window_size - 2*WSIZE + 2
|
cannam@89
|
1457 * In the BIG_MEM or MMAP case (not yet supported),
|
cannam@89
|
1458 * window_size == input_size + MIN_LOOKAHEAD &&
|
cannam@89
|
1459 * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
|
cannam@89
|
1460 * Otherwise, window_size == 2*WSIZE so more >= 2.
|
cannam@89
|
1461 * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
|
cannam@89
|
1462 */
|
cannam@89
|
1463 Assert(more >= 2, "more < 2");
|
cannam@89
|
1464
|
cannam@89
|
1465 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
|
cannam@89
|
1466 s->lookahead += n;
|
cannam@89
|
1467
|
cannam@89
|
1468 /* Initialize the hash value now that we have some input: */
|
cannam@89
|
1469 if (s->lookahead + s->insert >= MIN_MATCH) {
|
cannam@89
|
1470 uInt str = s->strstart - s->insert;
|
cannam@89
|
1471 s->ins_h = s->window[str];
|
cannam@89
|
1472 UPDATE_HASH(s, s->ins_h, s->window[str + 1]);
|
cannam@89
|
1473 #if MIN_MATCH != 3
|
cannam@89
|
1474 Call UPDATE_HASH() MIN_MATCH-3 more times
|
cannam@89
|
1475 #endif
|
cannam@89
|
1476 while (s->insert) {
|
cannam@89
|
1477 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
|
cannam@89
|
1478 #ifndef FASTEST
|
cannam@89
|
1479 s->prev[str & s->w_mask] = s->head[s->ins_h];
|
cannam@89
|
1480 #endif
|
cannam@89
|
1481 s->head[s->ins_h] = (Pos)str;
|
cannam@89
|
1482 str++;
|
cannam@89
|
1483 s->insert--;
|
cannam@89
|
1484 if (s->lookahead + s->insert < MIN_MATCH)
|
cannam@89
|
1485 break;
|
cannam@89
|
1486 }
|
cannam@89
|
1487 }
|
cannam@89
|
1488 /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
|
cannam@89
|
1489 * but this is not important since only literal bytes will be emitted.
|
cannam@89
|
1490 */
|
cannam@89
|
1491
|
cannam@89
|
1492 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
|
cannam@89
|
1493
|
cannam@89
|
1494 /* If the WIN_INIT bytes after the end of the current data have never been
|
cannam@89
|
1495 * written, then zero those bytes in order to avoid memory check reports of
|
cannam@89
|
1496 * the use of uninitialized (or uninitialised as Julian writes) bytes by
|
cannam@89
|
1497 * the longest match routines. Update the high water mark for the next
|
cannam@89
|
1498 * time through here. WIN_INIT is set to MAX_MATCH since the longest match
|
cannam@89
|
1499 * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
|
cannam@89
|
1500 */
|
cannam@89
|
1501 if (s->high_water < s->window_size) {
|
cannam@89
|
1502 ulg curr = s->strstart + (ulg)(s->lookahead);
|
cannam@89
|
1503 ulg init;
|
cannam@89
|
1504
|
cannam@89
|
1505 if (s->high_water < curr) {
|
cannam@89
|
1506 /* Previous high water mark below current data -- zero WIN_INIT
|
cannam@89
|
1507 * bytes or up to end of window, whichever is less.
|
cannam@89
|
1508 */
|
cannam@89
|
1509 init = s->window_size - curr;
|
cannam@89
|
1510 if (init > WIN_INIT)
|
cannam@89
|
1511 init = WIN_INIT;
|
cannam@89
|
1512 zmemzero(s->window + curr, (unsigned)init);
|
cannam@89
|
1513 s->high_water = curr + init;
|
cannam@89
|
1514 }
|
cannam@89
|
1515 else if (s->high_water < (ulg)curr + WIN_INIT) {
|
cannam@89
|
1516 /* High water mark at or above current data, but below current data
|
cannam@89
|
1517 * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
|
cannam@89
|
1518 * to end of window, whichever is less.
|
cannam@89
|
1519 */
|
cannam@89
|
1520 init = (ulg)curr + WIN_INIT - s->high_water;
|
cannam@89
|
1521 if (init > s->window_size - s->high_water)
|
cannam@89
|
1522 init = s->window_size - s->high_water;
|
cannam@89
|
1523 zmemzero(s->window + s->high_water, (unsigned)init);
|
cannam@89
|
1524 s->high_water += init;
|
cannam@89
|
1525 }
|
cannam@89
|
1526 }
|
cannam@89
|
1527
|
cannam@89
|
1528 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
|
cannam@89
|
1529 "not enough room for search");
|
cannam@89
|
1530 }
|
cannam@89
|
1531
|
cannam@89
|
1532 /* ===========================================================================
|
cannam@89
|
1533 * Flush the current block, with given end-of-file flag.
|
cannam@89
|
1534 * IN assertion: strstart is set to the end of the current match.
|
cannam@89
|
1535 */
|
cannam@89
|
1536 #define FLUSH_BLOCK_ONLY(s, last) { \
|
cannam@89
|
1537 _tr_flush_block(s, (s->block_start >= 0L ? \
|
cannam@89
|
1538 (charf *)&s->window[(unsigned)s->block_start] : \
|
cannam@89
|
1539 (charf *)Z_NULL), \
|
cannam@89
|
1540 (ulg)((long)s->strstart - s->block_start), \
|
cannam@89
|
1541 (last)); \
|
cannam@89
|
1542 s->block_start = s->strstart; \
|
cannam@89
|
1543 flush_pending(s->strm); \
|
cannam@89
|
1544 Tracev((stderr,"[FLUSH]")); \
|
cannam@89
|
1545 }
|
cannam@89
|
1546
|
cannam@89
|
1547 /* Same but force premature exit if necessary. */
|
cannam@89
|
1548 #define FLUSH_BLOCK(s, last) { \
|
cannam@89
|
1549 FLUSH_BLOCK_ONLY(s, last); \
|
cannam@89
|
1550 if (s->strm->avail_out == 0) return (last) ? finish_started : need_more; \
|
cannam@89
|
1551 }
|
cannam@89
|
1552
|
cannam@89
|
1553 /* ===========================================================================
|
cannam@89
|
1554 * Copy without compression as much as possible from the input stream, return
|
cannam@89
|
1555 * the current block state.
|
cannam@89
|
1556 * This function does not insert new strings in the dictionary since
|
cannam@89
|
1557 * uncompressible data is probably not useful. This function is used
|
cannam@89
|
1558 * only for the level=0 compression option.
|
cannam@89
|
1559 * NOTE: this function should be optimized to avoid extra copying from
|
cannam@89
|
1560 * window to pending_buf.
|
cannam@89
|
1561 */
|
cannam@89
|
1562 local block_state deflate_stored(s, flush)
|
cannam@89
|
1563 deflate_state *s;
|
cannam@89
|
1564 int flush;
|
cannam@89
|
1565 {
|
cannam@89
|
1566 /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
|
cannam@89
|
1567 * to pending_buf_size, and each stored block has a 5 byte header:
|
cannam@89
|
1568 */
|
cannam@89
|
1569 ulg max_block_size = 0xffff;
|
cannam@89
|
1570 ulg max_start;
|
cannam@89
|
1571
|
cannam@89
|
1572 if (max_block_size > s->pending_buf_size - 5) {
|
cannam@89
|
1573 max_block_size = s->pending_buf_size - 5;
|
cannam@89
|
1574 }
|
cannam@89
|
1575
|
cannam@89
|
1576 /* Copy as much as possible from input to output: */
|
cannam@89
|
1577 for (;;) {
|
cannam@89
|
1578 /* Fill the window as much as possible: */
|
cannam@89
|
1579 if (s->lookahead <= 1) {
|
cannam@89
|
1580
|
cannam@89
|
1581 Assert(s->strstart < s->w_size+MAX_DIST(s) ||
|
cannam@89
|
1582 s->block_start >= (long)s->w_size, "slide too late");
|
cannam@89
|
1583
|
cannam@89
|
1584 fill_window(s);
|
cannam@89
|
1585 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
|
cannam@89
|
1586
|
cannam@89
|
1587 if (s->lookahead == 0) break; /* flush the current block */
|
cannam@89
|
1588 }
|
cannam@89
|
1589 Assert(s->block_start >= 0L, "block gone");
|
cannam@89
|
1590
|
cannam@89
|
1591 s->strstart += s->lookahead;
|
cannam@89
|
1592 s->lookahead = 0;
|
cannam@89
|
1593
|
cannam@89
|
1594 /* Emit a stored block if pending_buf will be full: */
|
cannam@89
|
1595 max_start = s->block_start + max_block_size;
|
cannam@89
|
1596 if (s->strstart == 0 || (ulg)s->strstart >= max_start) {
|
cannam@89
|
1597 /* strstart == 0 is possible when wraparound on 16-bit machine */
|
cannam@89
|
1598 s->lookahead = (uInt)(s->strstart - max_start);
|
cannam@89
|
1599 s->strstart = (uInt)max_start;
|
cannam@89
|
1600 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1601 }
|
cannam@89
|
1602 /* Flush if we may have to slide, otherwise block_start may become
|
cannam@89
|
1603 * negative and the data will be gone:
|
cannam@89
|
1604 */
|
cannam@89
|
1605 if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
|
cannam@89
|
1606 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1607 }
|
cannam@89
|
1608 }
|
cannam@89
|
1609 s->insert = 0;
|
cannam@89
|
1610 if (flush == Z_FINISH) {
|
cannam@89
|
1611 FLUSH_BLOCK(s, 1);
|
cannam@89
|
1612 return finish_done;
|
cannam@89
|
1613 }
|
cannam@89
|
1614 if ((long)s->strstart > s->block_start)
|
cannam@89
|
1615 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1616 return block_done;
|
cannam@89
|
1617 }
|
cannam@89
|
1618
|
cannam@89
|
1619 /* ===========================================================================
|
cannam@89
|
1620 * Compress as much as possible from the input stream, return the current
|
cannam@89
|
1621 * block state.
|
cannam@89
|
1622 * This function does not perform lazy evaluation of matches and inserts
|
cannam@89
|
1623 * new strings in the dictionary only for unmatched strings or for short
|
cannam@89
|
1624 * matches. It is used only for the fast compression options.
|
cannam@89
|
1625 */
|
cannam@89
|
1626 local block_state deflate_fast(s, flush)
|
cannam@89
|
1627 deflate_state *s;
|
cannam@89
|
1628 int flush;
|
cannam@89
|
1629 {
|
cannam@89
|
1630 IPos hash_head; /* head of the hash chain */
|
cannam@89
|
1631 int bflush; /* set if current block must be flushed */
|
cannam@89
|
1632
|
cannam@89
|
1633 for (;;) {
|
cannam@89
|
1634 /* Make sure that we always have enough lookahead, except
|
cannam@89
|
1635 * at the end of the input file. We need MAX_MATCH bytes
|
cannam@89
|
1636 * for the next match, plus MIN_MATCH bytes to insert the
|
cannam@89
|
1637 * string following the next match.
|
cannam@89
|
1638 */
|
cannam@89
|
1639 if (s->lookahead < MIN_LOOKAHEAD) {
|
cannam@89
|
1640 fill_window(s);
|
cannam@89
|
1641 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
|
cannam@89
|
1642 return need_more;
|
cannam@89
|
1643 }
|
cannam@89
|
1644 if (s->lookahead == 0) break; /* flush the current block */
|
cannam@89
|
1645 }
|
cannam@89
|
1646
|
cannam@89
|
1647 /* Insert the string window[strstart .. strstart+2] in the
|
cannam@89
|
1648 * dictionary, and set hash_head to the head of the hash chain:
|
cannam@89
|
1649 */
|
cannam@89
|
1650 hash_head = NIL;
|
cannam@89
|
1651 if (s->lookahead >= MIN_MATCH) {
|
cannam@89
|
1652 INSERT_STRING(s, s->strstart, hash_head);
|
cannam@89
|
1653 }
|
cannam@89
|
1654
|
cannam@89
|
1655 /* Find the longest match, discarding those <= prev_length.
|
cannam@89
|
1656 * At this point we have always match_length < MIN_MATCH
|
cannam@89
|
1657 */
|
cannam@89
|
1658 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
|
cannam@89
|
1659 /* To simplify the code, we prevent matches with the string
|
cannam@89
|
1660 * of window index 0 (in particular we have to avoid a match
|
cannam@89
|
1661 * of the string with itself at the start of the input file).
|
cannam@89
|
1662 */
|
cannam@89
|
1663 s->match_length = longest_match (s, hash_head);
|
cannam@89
|
1664 /* longest_match() sets match_start */
|
cannam@89
|
1665 }
|
cannam@89
|
1666 if (s->match_length >= MIN_MATCH) {
|
cannam@89
|
1667 check_match(s, s->strstart, s->match_start, s->match_length);
|
cannam@89
|
1668
|
cannam@89
|
1669 _tr_tally_dist(s, s->strstart - s->match_start,
|
cannam@89
|
1670 s->match_length - MIN_MATCH, bflush);
|
cannam@89
|
1671
|
cannam@89
|
1672 s->lookahead -= s->match_length;
|
cannam@89
|
1673
|
cannam@89
|
1674 /* Insert new strings in the hash table only if the match length
|
cannam@89
|
1675 * is not too large. This saves time but degrades compression.
|
cannam@89
|
1676 */
|
cannam@89
|
1677 #ifndef FASTEST
|
cannam@89
|
1678 if (s->match_length <= s->max_insert_length &&
|
cannam@89
|
1679 s->lookahead >= MIN_MATCH) {
|
cannam@89
|
1680 s->match_length--; /* string at strstart already in table */
|
cannam@89
|
1681 do {
|
cannam@89
|
1682 s->strstart++;
|
cannam@89
|
1683 INSERT_STRING(s, s->strstart, hash_head);
|
cannam@89
|
1684 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
|
cannam@89
|
1685 * always MIN_MATCH bytes ahead.
|
cannam@89
|
1686 */
|
cannam@89
|
1687 } while (--s->match_length != 0);
|
cannam@89
|
1688 s->strstart++;
|
cannam@89
|
1689 } else
|
cannam@89
|
1690 #endif
|
cannam@89
|
1691 {
|
cannam@89
|
1692 s->strstart += s->match_length;
|
cannam@89
|
1693 s->match_length = 0;
|
cannam@89
|
1694 s->ins_h = s->window[s->strstart];
|
cannam@89
|
1695 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
|
cannam@89
|
1696 #if MIN_MATCH != 3
|
cannam@89
|
1697 Call UPDATE_HASH() MIN_MATCH-3 more times
|
cannam@89
|
1698 #endif
|
cannam@89
|
1699 /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
|
cannam@89
|
1700 * matter since it will be recomputed at next deflate call.
|
cannam@89
|
1701 */
|
cannam@89
|
1702 }
|
cannam@89
|
1703 } else {
|
cannam@89
|
1704 /* No match, output a literal byte */
|
cannam@89
|
1705 Tracevv((stderr,"%c", s->window[s->strstart]));
|
cannam@89
|
1706 _tr_tally_lit (s, s->window[s->strstart], bflush);
|
cannam@89
|
1707 s->lookahead--;
|
cannam@89
|
1708 s->strstart++;
|
cannam@89
|
1709 }
|
cannam@89
|
1710 if (bflush) FLUSH_BLOCK(s, 0);
|
cannam@89
|
1711 }
|
cannam@89
|
1712 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
|
cannam@89
|
1713 if (flush == Z_FINISH) {
|
cannam@89
|
1714 FLUSH_BLOCK(s, 1);
|
cannam@89
|
1715 return finish_done;
|
cannam@89
|
1716 }
|
cannam@89
|
1717 if (s->last_lit)
|
cannam@89
|
1718 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1719 return block_done;
|
cannam@89
|
1720 }
|
cannam@89
|
1721
|
cannam@89
|
1722 #ifndef FASTEST
|
cannam@89
|
1723 /* ===========================================================================
|
cannam@89
|
1724 * Same as above, but achieves better compression. We use a lazy
|
cannam@89
|
1725 * evaluation for matches: a match is finally adopted only if there is
|
cannam@89
|
1726 * no better match at the next window position.
|
cannam@89
|
1727 */
|
cannam@89
|
1728 local block_state deflate_slow(s, flush)
|
cannam@89
|
1729 deflate_state *s;
|
cannam@89
|
1730 int flush;
|
cannam@89
|
1731 {
|
cannam@89
|
1732 IPos hash_head; /* head of hash chain */
|
cannam@89
|
1733 int bflush; /* set if current block must be flushed */
|
cannam@89
|
1734
|
cannam@89
|
1735 /* Process the input block. */
|
cannam@89
|
1736 for (;;) {
|
cannam@89
|
1737 /* Make sure that we always have enough lookahead, except
|
cannam@89
|
1738 * at the end of the input file. We need MAX_MATCH bytes
|
cannam@89
|
1739 * for the next match, plus MIN_MATCH bytes to insert the
|
cannam@89
|
1740 * string following the next match.
|
cannam@89
|
1741 */
|
cannam@89
|
1742 if (s->lookahead < MIN_LOOKAHEAD) {
|
cannam@89
|
1743 fill_window(s);
|
cannam@89
|
1744 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
|
cannam@89
|
1745 return need_more;
|
cannam@89
|
1746 }
|
cannam@89
|
1747 if (s->lookahead == 0) break; /* flush the current block */
|
cannam@89
|
1748 }
|
cannam@89
|
1749
|
cannam@89
|
1750 /* Insert the string window[strstart .. strstart+2] in the
|
cannam@89
|
1751 * dictionary, and set hash_head to the head of the hash chain:
|
cannam@89
|
1752 */
|
cannam@89
|
1753 hash_head = NIL;
|
cannam@89
|
1754 if (s->lookahead >= MIN_MATCH) {
|
cannam@89
|
1755 INSERT_STRING(s, s->strstart, hash_head);
|
cannam@89
|
1756 }
|
cannam@89
|
1757
|
cannam@89
|
1758 /* Find the longest match, discarding those <= prev_length.
|
cannam@89
|
1759 */
|
cannam@89
|
1760 s->prev_length = s->match_length, s->prev_match = s->match_start;
|
cannam@89
|
1761 s->match_length = MIN_MATCH-1;
|
cannam@89
|
1762
|
cannam@89
|
1763 if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
|
cannam@89
|
1764 s->strstart - hash_head <= MAX_DIST(s)) {
|
cannam@89
|
1765 /* To simplify the code, we prevent matches with the string
|
cannam@89
|
1766 * of window index 0 (in particular we have to avoid a match
|
cannam@89
|
1767 * of the string with itself at the start of the input file).
|
cannam@89
|
1768 */
|
cannam@89
|
1769 s->match_length = longest_match (s, hash_head);
|
cannam@89
|
1770 /* longest_match() sets match_start */
|
cannam@89
|
1771
|
cannam@89
|
1772 if (s->match_length <= 5 && (s->strategy == Z_FILTERED
|
cannam@89
|
1773 #if TOO_FAR <= 32767
|
cannam@89
|
1774 || (s->match_length == MIN_MATCH &&
|
cannam@89
|
1775 s->strstart - s->match_start > TOO_FAR)
|
cannam@89
|
1776 #endif
|
cannam@89
|
1777 )) {
|
cannam@89
|
1778
|
cannam@89
|
1779 /* If prev_match is also MIN_MATCH, match_start is garbage
|
cannam@89
|
1780 * but we will ignore the current match anyway.
|
cannam@89
|
1781 */
|
cannam@89
|
1782 s->match_length = MIN_MATCH-1;
|
cannam@89
|
1783 }
|
cannam@89
|
1784 }
|
cannam@89
|
1785 /* If there was a match at the previous step and the current
|
cannam@89
|
1786 * match is not better, output the previous match:
|
cannam@89
|
1787 */
|
cannam@89
|
1788 if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
|
cannam@89
|
1789 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
|
cannam@89
|
1790 /* Do not insert strings in hash table beyond this. */
|
cannam@89
|
1791
|
cannam@89
|
1792 check_match(s, s->strstart-1, s->prev_match, s->prev_length);
|
cannam@89
|
1793
|
cannam@89
|
1794 _tr_tally_dist(s, s->strstart -1 - s->prev_match,
|
cannam@89
|
1795 s->prev_length - MIN_MATCH, bflush);
|
cannam@89
|
1796
|
cannam@89
|
1797 /* Insert in hash table all strings up to the end of the match.
|
cannam@89
|
1798 * strstart-1 and strstart are already inserted. If there is not
|
cannam@89
|
1799 * enough lookahead, the last two strings are not inserted in
|
cannam@89
|
1800 * the hash table.
|
cannam@89
|
1801 */
|
cannam@89
|
1802 s->lookahead -= s->prev_length-1;
|
cannam@89
|
1803 s->prev_length -= 2;
|
cannam@89
|
1804 do {
|
cannam@89
|
1805 if (++s->strstart <= max_insert) {
|
cannam@89
|
1806 INSERT_STRING(s, s->strstart, hash_head);
|
cannam@89
|
1807 }
|
cannam@89
|
1808 } while (--s->prev_length != 0);
|
cannam@89
|
1809 s->match_available = 0;
|
cannam@89
|
1810 s->match_length = MIN_MATCH-1;
|
cannam@89
|
1811 s->strstart++;
|
cannam@89
|
1812
|
cannam@89
|
1813 if (bflush) FLUSH_BLOCK(s, 0);
|
cannam@89
|
1814
|
cannam@89
|
1815 } else if (s->match_available) {
|
cannam@89
|
1816 /* If there was no match at the previous position, output a
|
cannam@89
|
1817 * single literal. If there was a match but the current match
|
cannam@89
|
1818 * is longer, truncate the previous match to a single literal.
|
cannam@89
|
1819 */
|
cannam@89
|
1820 Tracevv((stderr,"%c", s->window[s->strstart-1]));
|
cannam@89
|
1821 _tr_tally_lit(s, s->window[s->strstart-1], bflush);
|
cannam@89
|
1822 if (bflush) {
|
cannam@89
|
1823 FLUSH_BLOCK_ONLY(s, 0);
|
cannam@89
|
1824 }
|
cannam@89
|
1825 s->strstart++;
|
cannam@89
|
1826 s->lookahead--;
|
cannam@89
|
1827 if (s->strm->avail_out == 0) return need_more;
|
cannam@89
|
1828 } else {
|
cannam@89
|
1829 /* There is no previous match to compare with, wait for
|
cannam@89
|
1830 * the next step to decide.
|
cannam@89
|
1831 */
|
cannam@89
|
1832 s->match_available = 1;
|
cannam@89
|
1833 s->strstart++;
|
cannam@89
|
1834 s->lookahead--;
|
cannam@89
|
1835 }
|
cannam@89
|
1836 }
|
cannam@89
|
1837 Assert (flush != Z_NO_FLUSH, "no flush?");
|
cannam@89
|
1838 if (s->match_available) {
|
cannam@89
|
1839 Tracevv((stderr,"%c", s->window[s->strstart-1]));
|
cannam@89
|
1840 _tr_tally_lit(s, s->window[s->strstart-1], bflush);
|
cannam@89
|
1841 s->match_available = 0;
|
cannam@89
|
1842 }
|
cannam@89
|
1843 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
|
cannam@89
|
1844 if (flush == Z_FINISH) {
|
cannam@89
|
1845 FLUSH_BLOCK(s, 1);
|
cannam@89
|
1846 return finish_done;
|
cannam@89
|
1847 }
|
cannam@89
|
1848 if (s->last_lit)
|
cannam@89
|
1849 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1850 return block_done;
|
cannam@89
|
1851 }
|
cannam@89
|
1852 #endif /* FASTEST */
|
cannam@89
|
1853
|
cannam@89
|
1854 /* ===========================================================================
|
cannam@89
|
1855 * For Z_RLE, simply look for runs of bytes, generate matches only of distance
|
cannam@89
|
1856 * one. Do not maintain a hash table. (It will be regenerated if this run of
|
cannam@89
|
1857 * deflate switches away from Z_RLE.)
|
cannam@89
|
1858 */
|
cannam@89
|
1859 local block_state deflate_rle(s, flush)
|
cannam@89
|
1860 deflate_state *s;
|
cannam@89
|
1861 int flush;
|
cannam@89
|
1862 {
|
cannam@89
|
1863 int bflush; /* set if current block must be flushed */
|
cannam@89
|
1864 uInt prev; /* byte at distance one to match */
|
cannam@89
|
1865 Bytef *scan, *strend; /* scan goes up to strend for length of run */
|
cannam@89
|
1866
|
cannam@89
|
1867 for (;;) {
|
cannam@89
|
1868 /* Make sure that we always have enough lookahead, except
|
cannam@89
|
1869 * at the end of the input file. We need MAX_MATCH bytes
|
cannam@89
|
1870 * for the longest run, plus one for the unrolled loop.
|
cannam@89
|
1871 */
|
cannam@89
|
1872 if (s->lookahead <= MAX_MATCH) {
|
cannam@89
|
1873 fill_window(s);
|
cannam@89
|
1874 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) {
|
cannam@89
|
1875 return need_more;
|
cannam@89
|
1876 }
|
cannam@89
|
1877 if (s->lookahead == 0) break; /* flush the current block */
|
cannam@89
|
1878 }
|
cannam@89
|
1879
|
cannam@89
|
1880 /* See how many times the previous byte repeats */
|
cannam@89
|
1881 s->match_length = 0;
|
cannam@89
|
1882 if (s->lookahead >= MIN_MATCH && s->strstart > 0) {
|
cannam@89
|
1883 scan = s->window + s->strstart - 1;
|
cannam@89
|
1884 prev = *scan;
|
cannam@89
|
1885 if (prev == *++scan && prev == *++scan && prev == *++scan) {
|
cannam@89
|
1886 strend = s->window + s->strstart + MAX_MATCH;
|
cannam@89
|
1887 do {
|
cannam@89
|
1888 } while (prev == *++scan && prev == *++scan &&
|
cannam@89
|
1889 prev == *++scan && prev == *++scan &&
|
cannam@89
|
1890 prev == *++scan && prev == *++scan &&
|
cannam@89
|
1891 prev == *++scan && prev == *++scan &&
|
cannam@89
|
1892 scan < strend);
|
cannam@89
|
1893 s->match_length = MAX_MATCH - (int)(strend - scan);
|
cannam@89
|
1894 if (s->match_length > s->lookahead)
|
cannam@89
|
1895 s->match_length = s->lookahead;
|
cannam@89
|
1896 }
|
cannam@89
|
1897 Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
|
cannam@89
|
1898 }
|
cannam@89
|
1899
|
cannam@89
|
1900 /* Emit match if have run of MIN_MATCH or longer, else emit literal */
|
cannam@89
|
1901 if (s->match_length >= MIN_MATCH) {
|
cannam@89
|
1902 check_match(s, s->strstart, s->strstart - 1, s->match_length);
|
cannam@89
|
1903
|
cannam@89
|
1904 _tr_tally_dist(s, 1, s->match_length - MIN_MATCH, bflush);
|
cannam@89
|
1905
|
cannam@89
|
1906 s->lookahead -= s->match_length;
|
cannam@89
|
1907 s->strstart += s->match_length;
|
cannam@89
|
1908 s->match_length = 0;
|
cannam@89
|
1909 } else {
|
cannam@89
|
1910 /* No match, output a literal byte */
|
cannam@89
|
1911 Tracevv((stderr,"%c", s->window[s->strstart]));
|
cannam@89
|
1912 _tr_tally_lit (s, s->window[s->strstart], bflush);
|
cannam@89
|
1913 s->lookahead--;
|
cannam@89
|
1914 s->strstart++;
|
cannam@89
|
1915 }
|
cannam@89
|
1916 if (bflush) FLUSH_BLOCK(s, 0);
|
cannam@89
|
1917 }
|
cannam@89
|
1918 s->insert = 0;
|
cannam@89
|
1919 if (flush == Z_FINISH) {
|
cannam@89
|
1920 FLUSH_BLOCK(s, 1);
|
cannam@89
|
1921 return finish_done;
|
cannam@89
|
1922 }
|
cannam@89
|
1923 if (s->last_lit)
|
cannam@89
|
1924 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1925 return block_done;
|
cannam@89
|
1926 }
|
cannam@89
|
1927
|
cannam@89
|
1928 /* ===========================================================================
|
cannam@89
|
1929 * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.
|
cannam@89
|
1930 * (It will be regenerated if this run of deflate switches away from Huffman.)
|
cannam@89
|
1931 */
|
cannam@89
|
1932 local block_state deflate_huff(s, flush)
|
cannam@89
|
1933 deflate_state *s;
|
cannam@89
|
1934 int flush;
|
cannam@89
|
1935 {
|
cannam@89
|
1936 int bflush; /* set if current block must be flushed */
|
cannam@89
|
1937
|
cannam@89
|
1938 for (;;) {
|
cannam@89
|
1939 /* Make sure that we have a literal to write. */
|
cannam@89
|
1940 if (s->lookahead == 0) {
|
cannam@89
|
1941 fill_window(s);
|
cannam@89
|
1942 if (s->lookahead == 0) {
|
cannam@89
|
1943 if (flush == Z_NO_FLUSH)
|
cannam@89
|
1944 return need_more;
|
cannam@89
|
1945 break; /* flush the current block */
|
cannam@89
|
1946 }
|
cannam@89
|
1947 }
|
cannam@89
|
1948
|
cannam@89
|
1949 /* Output a literal byte */
|
cannam@89
|
1950 s->match_length = 0;
|
cannam@89
|
1951 Tracevv((stderr,"%c", s->window[s->strstart]));
|
cannam@89
|
1952 _tr_tally_lit (s, s->window[s->strstart], bflush);
|
cannam@89
|
1953 s->lookahead--;
|
cannam@89
|
1954 s->strstart++;
|
cannam@89
|
1955 if (bflush) FLUSH_BLOCK(s, 0);
|
cannam@89
|
1956 }
|
cannam@89
|
1957 s->insert = 0;
|
cannam@89
|
1958 if (flush == Z_FINISH) {
|
cannam@89
|
1959 FLUSH_BLOCK(s, 1);
|
cannam@89
|
1960 return finish_done;
|
cannam@89
|
1961 }
|
cannam@89
|
1962 if (s->last_lit)
|
cannam@89
|
1963 FLUSH_BLOCK(s, 0);
|
cannam@89
|
1964 return block_done;
|
cannam@89
|
1965 }
|