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