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