1 /* deflate.c -- compress data using the deflation algorithm
3 Copyright (C) 1999, 2006, 2009-2010 Free Software Foundation, Inc.
4 Copyright (C) 1992-1993 Jean-loup Gailly
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
23 * Identify new text as repetitions of old text within a fixed-
24 * length sliding window trailing behind the new text.
28 * The "deflation" process depends on being able to identify portions
29 * of the input text which are identical to earlier input (within a
30 * sliding window trailing behind the input currently being processed).
32 * The most straightforward technique turns out to be the fastest for
33 * most input files: try all possible matches and select the longest.
34 * The key feature of this algorithm is that insertions into the string
35 * dictionary are very simple and thus fast, and deletions are avoided
36 * completely. Insertions are performed at each input character, whereas
37 * string matches are performed only when the previous match ends. So it
38 * is preferable to spend more time in matches to allow very fast string
39 * insertions and avoid deletions. The matching algorithm for small
40 * strings is inspired from that of Rabin & Karp. A brute force approach
41 * is used to find longer strings when a small match has been found.
42 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
43 * (by Leonid Broukhis).
44 * A previous version of this file used a more sophisticated algorithm
45 * (by Fiala and Greene) which is guaranteed to run in linear amortized
46 * time, but has a larger average cost, uses more memory and is patented.
47 * However the F&G algorithm may be faster for some highly redundant
48 * files if the parameter max_chain_length (described below) is too large.
52 * The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
53 * I found it in 'freeze' written by Leonid Broukhis.
54 * Thanks to many info-zippers for bug reports and testing.
58 * APPNOTE.TXT documentation file in PKZIP 1.93a distribution.
60 * A description of the Rabin and Karp algorithm is given in the book
61 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
63 * Fiala,E.R., and Greene,D.H.
64 * Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
68 * void lm_init (int pack_level, ush *flags)
69 * Initialize the "longest match" routines for a new file
71 * off_t deflate (void)
72 * Processes a new input file and return its compressed length. Sets
73 * the compressed length, crc, deflate flags and internal file
82 #include "lzw.h" /* just for consistency checking */
84 /* ===========================================================================
85 * Configuration parameters
88 /* Compile with MEDIUM_MEM to reduce the memory requirements or
89 * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the
90 * entire input file can be held in memory (not possible on 16 bit systems).
91 * Warning: defining these symbols affects HASH_BITS (see below) and thus
92 * affects the compression ratio. The compressed output
93 * is still correct, and might even be smaller in some cases.
97 # define HASH_BITS 13 /* Number of bits used to hash strings */
100 # define HASH_BITS 14
103 # define HASH_BITS 15
104 /* For portability to 16 bit machines, do not use values above 15. */
107 /* To save space (see unlzw.c), we overlay prev+head with tab_prefix and
108 * window with tab_suffix. Check that we can do this:
110 #if (WSIZE<<1) > (1<<BITS)
111 error
: cannot overlay window with tab_suffix
and prev with tab_prefix0
113 #if HASH_BITS > BITS-1
114 error
: cannot overlay head with tab_prefix1
117 #define HASH_SIZE (unsigned)(1<<HASH_BITS)
118 #define HASH_MASK (HASH_SIZE-1)
119 #define WMASK (WSIZE-1)
120 /* HASH_SIZE and WSIZE must be powers of two */
123 /* Tail of hash chains */
127 /* speed options for the general purpose bit flag */
130 # define TOO_FAR 4096
132 /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
134 /* ===========================================================================
135 * Local data used by the "longest match" routines.
139 typedef unsigned IPos
;
140 /* A Pos is an index in the character window. We use short instead of int to
141 * save space in the various tables. IPos is used only for parameter passing.
144 /* DECLARE(uch, window, 2L*WSIZE); */
145 /* Sliding window. Input bytes are read into the second half of the window,
146 * and move to the first half later to keep a dictionary of at least WSIZE
147 * bytes. With this organization, matches are limited to a distance of
148 * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
149 * performed with a length multiple of the block size. Also, it limits
150 * the window size to 64K, which is quite useful on MSDOS.
151 * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
152 * be less efficient).
155 /* DECLARE(Pos, prev, WSIZE); */
156 /* Link to older string with same hash index. To limit the size of this
157 * array to 64K, this link is maintained only for the last 32K strings.
158 * An index in this array is thus a window index modulo 32K.
161 /* DECLARE(Pos, head, 1<<HASH_BITS); */
162 /* Heads of the hash chains or NIL. */
164 ulg window_size
= (ulg
)2*WSIZE
;
165 /* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the
166 * input file length plus MIN_LOOKAHEAD.
170 /* window position at the beginning of the current output block. Gets
171 * negative when the window is moved backwards.
174 local
unsigned ins_h
; /* hash index of string to be inserted */
176 #define H_SHIFT ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
177 /* Number of bits by which ins_h and del_h must be shifted at each
178 * input step. It must be such that after MIN_MATCH steps, the oldest
179 * byte no longer takes part in the hash key, that is:
180 * H_SHIFT * MIN_MATCH >= HASH_BITS
183 unsigned int near prev_length
;
184 /* Length of the best match at previous step. Matches not greater than this
185 * are discarded. This is used in the lazy match evaluation.
188 unsigned near strstart
; /* start of string to insert */
189 unsigned near match_start
; /* start of matching string */
190 local
int eofile
; /* flag set at end of input file */
191 local
unsigned lookahead
; /* number of valid bytes ahead in window */
193 unsigned near max_chain_length
;
194 /* To speed up deflation, hash chains are never searched beyond this length.
195 * A higher limit improves compression ratio but degrades the speed.
198 local
unsigned int max_lazy_match
;
199 /* Attempt to find a better match only when the current match is strictly
200 * smaller than this value. This mechanism is used only for compression
203 #define max_insert_length max_lazy_match
204 /* Insert new strings in the hash table only if the match length
205 * is not greater than this length. This saves time but degrades compression.
206 * max_insert_length is used only for compression levels <= 3.
209 local
int compr_level
;
210 /* compression level (1..9) */
212 unsigned near good_match
;
213 /* Use a faster search when the previous match is longer than this */
216 /* Values for max_lazy_match, good_match and max_chain_length, depending on
217 * the desired pack level (0..9). The values given below have been tuned to
218 * exclude worst case performance for pathological files. Better values may be
219 * found for specific files.
222 typedef struct config
{
223 ush good_length
; /* reduce lazy search above this match length */
224 ush max_lazy
; /* do not perform lazy search above this match length */
225 ush nice_length
; /* quit search above this match length */
230 # define nice_match MAX_MATCH
232 int near nice_match
; /* Stop searching when current match exceeds this */
235 local config configuration_table
[10] = {
236 /* good lazy nice chain */
237 /* 0 */ {0, 0, 0, 0}, /* store only */
238 /* 1 */ {4, 4, 8, 4}, /* maximum speed, no lazy matches */
239 /* 2 */ {4, 5, 16, 8},
240 /* 3 */ {4, 6, 32, 32},
242 /* 4 */ {4, 4, 16, 16}, /* lazy matches */
243 /* 5 */ {8, 16, 32, 32},
244 /* 6 */ {8, 16, 128, 128},
245 /* 7 */ {8, 32, 128, 256},
246 /* 8 */ {32, 128, 258, 1024},
247 /* 9 */ {32, 258, 258, 4096}}; /* maximum compression */
249 /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
250 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
254 /* ===========================================================================
255 * Prototypes for local functions.
257 local
void fill_window
OF((void));
258 local off_t deflate_fast
OF((void));
260 int longest_match
OF((IPos cur_match
));
262 void match_init
OF((void)); /* asm code initialization */
266 local
void check_match
OF((IPos start
, IPos match
, int length
));
269 /* ===========================================================================
270 * Update a hash value with the given input byte
271 * IN assertion: all calls to to UPDATE_HASH are made with consecutive
272 * input characters, so that a running hash key can be computed from the
273 * previous key instead of complete recalculation each time.
275 #define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
277 /* ===========================================================================
278 * Insert string s in the dictionary and set match_head to the previous head
279 * of the hash chain (the most recent string with same hash key). Return
280 * the previous length of the hash chain.
281 * IN assertion: all calls to to INSERT_STRING are made with consecutive
282 * input characters and the first MIN_MATCH bytes of s are valid
283 * (except for the last MIN_MATCH-1 bytes of the input file).
285 #define INSERT_STRING(s, match_head) \
286 (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
287 prev[(s) & WMASK] = match_head = head[ins_h], \
290 /* ===========================================================================
291 * Initialize the "longest match" routines for a new file
293 void lm_init (pack_level
, flags
)
294 int pack_level
; /* 0: store, 1: best speed, 9: best compression */
295 ush
*flags
; /* general purpose bit flag */
299 if (pack_level
< 1 || pack_level
> 9) gzip_error ("bad pack level");
300 compr_level
= pack_level
;
302 /* Initialize the hash table. */
303 #if defined(MAXSEG_64K) && HASH_BITS == 15
304 for (j
= 0; j
< HASH_SIZE
; j
++) head
[j
] = NIL
;
306 memzero((char*)head
, HASH_SIZE
*sizeof(*head
));
308 /* prev will be initialized on the fly */
310 /* Set the default configuration parameters:
312 max_lazy_match
= configuration_table
[pack_level
].max_lazy
;
313 good_match
= configuration_table
[pack_level
].good_length
;
315 nice_match
= configuration_table
[pack_level
].nice_length
;
317 max_chain_length
= configuration_table
[pack_level
].max_chain
;
318 if (pack_level
== 1) {
320 } else if (pack_level
== 9) {
323 /* ??? reduce max_chain_length for binary files */
328 match_init(); /* initialize the asm code */
331 lookahead
= read_buf((char*)window
,
332 sizeof(int) <= 2 ? (unsigned)WSIZE
: 2*WSIZE
);
334 if (lookahead
== 0 || lookahead
== (unsigned)EOF
) {
335 eofile
= 1, lookahead
= 0;
339 /* Make sure that we always have enough lookahead. This is important
340 * if input comes from a device such as a tty.
342 while (lookahead
< MIN_LOOKAHEAD
&& !eofile
) fill_window();
345 for (j
=0; j
<MIN_MATCH
-1; j
++) UPDATE_HASH(ins_h
, window
[j
]);
346 /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
347 * not important since only literal bytes will be emitted.
351 /* ===========================================================================
352 * Set match_start to the longest match starting at the given string and
353 * return its length. Matches shorter or equal to prev_length are discarded,
354 * in which case the result is equal to prev_length and match_start is
356 * IN assertions: cur_match is the head of the hash chain for the current
357 * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
360 /* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or
361 * match.s. The code is functionally equivalent, so you can use the C version
364 int longest_match(cur_match
)
365 IPos cur_match
; /* current match */
367 unsigned chain_length
= max_chain_length
; /* max hash chain length */
368 register uch
*scan
= window
+ strstart
; /* current string */
369 register uch
*match
; /* matched string */
370 register int len
; /* length of current match */
371 int best_len
= prev_length
; /* best match length so far */
372 IPos limit
= strstart
> (IPos
)MAX_DIST
? strstart
- (IPos
)MAX_DIST
: NIL
;
373 /* Stop when cur_match becomes <= limit. To simplify the code,
374 * we prevent matches with the string of window index 0.
377 /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
378 * It is easy to get rid of this optimization if necessary.
380 #if HASH_BITS < 8 || MAX_MATCH != 258
381 error
: Code too clever
385 /* Compare two bytes at a time. Note: this is not always beneficial.
386 * Try with and without -DUNALIGNED_OK to check.
388 register uch
*strend
= window
+ strstart
+ MAX_MATCH
- 1;
389 register ush scan_start
= *(ush
*)scan
;
390 register ush scan_end
= *(ush
*)(scan
+best_len
-1);
392 register uch
*strend
= window
+ strstart
+ MAX_MATCH
;
393 register uch scan_end1
= scan
[best_len
-1];
394 register uch scan_end
= scan
[best_len
];
397 /* Do not waste too much time if we already have a good match: */
398 if (prev_length
>= good_match
) {
401 Assert(strstart
<= window_size
-MIN_LOOKAHEAD
, "insufficient lookahead");
404 Assert(cur_match
< strstart
, "no future");
405 match
= window
+ cur_match
;
407 /* Skip to next match if the match length cannot increase
408 * or if the match length is less than 2:
410 #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
411 /* This code assumes sizeof(unsigned short) == 2. Do not use
412 * UNALIGNED_OK if your compiler uses a different size.
414 if (*(ush
*)(match
+best_len
-1) != scan_end
||
415 *(ush
*)match
!= scan_start
) continue;
417 /* It is not necessary to compare scan[2] and match[2] since they are
418 * always equal when the other bytes match, given that the hash keys
419 * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
420 * strstart+3, +5, ... up to strstart+257. We check for insufficient
421 * lookahead only every 4th comparison; the 128th check will be made
422 * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
423 * necessary to put more guard bytes at the end of the window, or
424 * to check more often for insufficient lookahead.
428 } while (*(ush
*)(scan
+=2) == *(ush
*)(match
+=2) &&
429 *(ush
*)(scan
+=2) == *(ush
*)(match
+=2) &&
430 *(ush
*)(scan
+=2) == *(ush
*)(match
+=2) &&
431 *(ush
*)(scan
+=2) == *(ush
*)(match
+=2) &&
433 /* The funny "do {}" generates better code on most compilers */
435 /* Here, scan <= window+strstart+257 */
436 Assert(scan
<= window
+(unsigned)(window_size
-1), "wild scan");
437 if (*scan
== *match
) scan
++;
439 len
= (MAX_MATCH
- 1) - (int)(strend
-scan
);
440 scan
= strend
- (MAX_MATCH
-1);
442 #else /* UNALIGNED_OK */
444 if (match
[best_len
] != scan_end
||
445 match
[best_len
-1] != scan_end1
||
447 *++match
!= scan
[1]) continue;
449 /* The check at best_len-1 can be removed because it will be made
450 * again later. (This heuristic is not always a win.)
451 * It is not necessary to compare scan[2] and match[2] since they
452 * are always equal when the other bytes match, given that
453 * the hash keys are equal and that HASH_BITS >= 8.
457 /* We check for insufficient lookahead only every 8th comparison;
458 * the 256th check will be made at strstart+258.
461 } while (*++scan
== *++match
&& *++scan
== *++match
&&
462 *++scan
== *++match
&& *++scan
== *++match
&&
463 *++scan
== *++match
&& *++scan
== *++match
&&
464 *++scan
== *++match
&& *++scan
== *++match
&&
467 len
= MAX_MATCH
- (int)(strend
- scan
);
468 scan
= strend
- MAX_MATCH
;
470 #endif /* UNALIGNED_OK */
472 if (len
> best_len
) {
473 match_start
= cur_match
;
475 if (len
>= nice_match
) break;
477 scan_end
= *(ush
*)(scan
+best_len
-1);
479 scan_end1
= scan
[best_len
-1];
480 scan_end
= scan
[best_len
];
483 } while ((cur_match
= prev
[cur_match
& WMASK
]) > limit
484 && --chain_length
!= 0);
491 /* ===========================================================================
492 * Check that the match at match_start is indeed a match.
494 local
void check_match(start
, match
, length
)
498 /* check that the match is indeed a match */
499 if (memcmp((char*)window
+ match
,
500 (char*)window
+ start
, length
) != 0) {
502 " start %d, match %d, length %d\n",
503 start
, match
, length
);
504 gzip_error ("invalid match");
507 fprintf(stderr
,"\\[%d,%d]", start
-match
, length
);
508 do { putc(window
[start
++], stderr
); } while (--length
!= 0);
512 # define check_match(start, match, length)
515 /* ===========================================================================
516 * Fill the window when the lookahead becomes insufficient.
517 * Updates strstart and lookahead, and sets eofile if end of input file.
518 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
519 * OUT assertions: at least one byte has been read, or eofile is set;
520 * file reads are performed for at least two bytes (required for the
521 * translate_eol option).
523 local
void fill_window()
525 register unsigned n
, m
;
526 unsigned more
= (unsigned)(window_size
- (ulg
)lookahead
- (ulg
)strstart
);
527 /* Amount of free space at the end of the window. */
529 /* If the window is almost full and there is insufficient lookahead,
530 * move the upper half to the lower one to make room in the upper half.
532 if (more
== (unsigned)EOF
) {
533 /* Very unlikely, but possible on 16 bit machine if strstart == 0
534 * and lookahead == 1 (input done one byte at time)
537 } else if (strstart
>= WSIZE
+MAX_DIST
) {
538 /* By the IN assertion, the window is not empty so we can't confuse
539 * more == 0 with more == 64K on a 16 bit machine.
541 Assert(window_size
== (ulg
)2*WSIZE
, "no sliding with BIG_MEM");
543 memcpy((char*)window
, (char*)window
+WSIZE
, (unsigned)WSIZE
);
544 match_start
-= WSIZE
;
545 strstart
-= WSIZE
; /* we now have strstart >= MAX_DIST: */
547 block_start
-= (long) WSIZE
;
549 for (n
= 0; n
< HASH_SIZE
; n
++) {
551 head
[n
] = (Pos
)(m
>= WSIZE
? m
-WSIZE
: NIL
);
553 for (n
= 0; n
< WSIZE
; n
++) {
555 prev
[n
] = (Pos
)(m
>= WSIZE
? m
-WSIZE
: NIL
);
556 /* If n is not on any hash chain, prev[n] is garbage but
557 * its value will never be used.
562 /* At this point, more >= 2 */
564 n
= read_buf((char*)window
+strstart
+lookahead
, more
);
565 if (n
== 0 || n
== (unsigned)EOF
) {
573 /* ===========================================================================
574 * Flush the current block, with given end-of-file flag.
575 * IN assertion: strstart is set to the end of the current match.
577 #define FLUSH_BLOCK(eof) \
578 flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \
579 (char*)NULL, (long)strstart - block_start, (eof))
581 /* ===========================================================================
582 * Processes a new input file and return its compressed length. This
583 * function does not perform lazy evaluationof matches and inserts
584 * new strings in the dictionary only for unmatched strings or for short
585 * matches. It is used only for the fast compression options.
587 local off_t
deflate_fast()
589 IPos hash_head
; /* head of the hash chain */
590 int flush
; /* set if current block must be flushed */
591 unsigned match_length
= 0; /* length of best match */
593 prev_length
= MIN_MATCH
-1;
594 while (lookahead
!= 0) {
595 /* Insert the string window[strstart .. strstart+2] in the
596 * dictionary, and set hash_head to the head of the hash chain:
598 INSERT_STRING(strstart
, hash_head
);
600 /* Find the longest match, discarding those <= prev_length.
601 * At this point we have always match_length < MIN_MATCH
603 if (hash_head
!= NIL
&& strstart
- hash_head
<= MAX_DIST
604 && strstart
<= window_size
- MIN_LOOKAHEAD
) {
605 /* To simplify the code, we prevent matches with the string
606 * of window index 0 (in particular we have to avoid a match
607 * of the string with itself at the start of the input file).
609 match_length
= longest_match (hash_head
);
610 /* longest_match() sets match_start */
611 if (match_length
> lookahead
) match_length
= lookahead
;
613 if (match_length
>= MIN_MATCH
) {
614 check_match(strstart
, match_start
, match_length
);
616 flush
= ct_tally(strstart
-match_start
, match_length
- MIN_MATCH
);
618 lookahead
-= match_length
;
620 /* Insert new strings in the hash table only if the match length
621 * is not too large. This saves time but degrades compression.
623 if (match_length
<= max_insert_length
) {
624 match_length
--; /* string at strstart already in hash table */
627 INSERT_STRING(strstart
, hash_head
);
628 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
629 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
630 * these bytes are garbage, but it does not matter since
631 * the next lookahead bytes will be emitted as literals.
633 } while (--match_length
!= 0);
636 strstart
+= match_length
;
638 ins_h
= window
[strstart
];
639 UPDATE_HASH(ins_h
, window
[strstart
+1]);
641 Call
UPDATE_HASH() MIN_MATCH
-3 more times
645 /* No match, output a literal byte */
646 Tracevv((stderr
,"%c",window
[strstart
]));
647 flush
= ct_tally (0, window
[strstart
]);
651 if (flush
) FLUSH_BLOCK(0), block_start
= strstart
;
653 /* Make sure that we always have enough lookahead, except
654 * at the end of the input file. We need MAX_MATCH bytes
655 * for the next match, plus MIN_MATCH bytes to insert the
656 * string following the next match.
658 while (lookahead
< MIN_LOOKAHEAD
&& !eofile
) fill_window();
661 return FLUSH_BLOCK(1); /* eof */
664 /* ===========================================================================
665 * Same as above, but achieves better compression. We use a lazy
666 * evaluation for matches: a match is finally adopted only if there is
667 * no better match at the next window position.
671 IPos hash_head
; /* head of hash chain */
672 IPos prev_match
; /* previous match */
673 int flush
; /* set if current block must be flushed */
674 int match_available
= 0; /* set if previous match exists */
675 register unsigned match_length
= MIN_MATCH
-1; /* length of best match */
677 if (compr_level
<= 3) return deflate_fast(); /* optimized for speed */
679 /* Process the input block. */
680 while (lookahead
!= 0) {
681 /* Insert the string window[strstart .. strstart+2] in the
682 * dictionary, and set hash_head to the head of the hash chain:
684 INSERT_STRING(strstart
, hash_head
);
686 /* Find the longest match, discarding those <= prev_length.
688 prev_length
= match_length
, prev_match
= match_start
;
689 match_length
= MIN_MATCH
-1;
691 if (hash_head
!= NIL
&& prev_length
< max_lazy_match
&&
692 strstart
- hash_head
<= MAX_DIST
&&
693 strstart
<= window_size
- MIN_LOOKAHEAD
) {
694 /* To simplify the code, we prevent matches with the string
695 * of window index 0 (in particular we have to avoid a match
696 * of the string with itself at the start of the input file).
698 match_length
= longest_match (hash_head
);
699 /* longest_match() sets match_start */
700 if (match_length
> lookahead
) match_length
= lookahead
;
702 /* Ignore a length 3 match if it is too distant: */
703 if (match_length
== MIN_MATCH
&& strstart
-match_start
> TOO_FAR
){
704 /* If prev_match is also MIN_MATCH, match_start is garbage
705 * but we will ignore the current match anyway.
710 /* If there was a match at the previous step and the current
711 * match is not better, output the previous match:
713 if (prev_length
>= MIN_MATCH
&& match_length
<= prev_length
) {
715 check_match(strstart
-1, prev_match
, prev_length
);
717 flush
= ct_tally(strstart
-1-prev_match
, prev_length
- MIN_MATCH
);
719 /* Insert in hash table all strings up to the end of the match.
720 * strstart-1 and strstart are already inserted.
722 lookahead
-= prev_length
-1;
726 INSERT_STRING(strstart
, hash_head
);
727 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
728 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
729 * these bytes are garbage, but it does not matter since the
730 * next lookahead bytes will always be emitted as literals.
732 } while (--prev_length
!= 0);
734 match_length
= MIN_MATCH
-1;
736 if (flush
) FLUSH_BLOCK(0), block_start
= strstart
;
738 } else if (match_available
) {
739 /* If there was no match at the previous position, output a
740 * single literal. If there was a match but the current match
741 * is longer, truncate the previous match to a single literal.
743 Tracevv((stderr
,"%c",window
[strstart
-1]));
744 if (ct_tally (0, window
[strstart
-1])) {
745 FLUSH_BLOCK(0), block_start
= strstart
;
750 /* There is no previous match to compare with, wait for
751 * the next step to decide.
757 Assert (strstart
<= bytes_in
&& lookahead
<= bytes_in
, "a bit too far");
759 /* Make sure that we always have enough lookahead, except
760 * at the end of the input file. We need MAX_MATCH bytes
761 * for the next match, plus MIN_MATCH bytes to insert the
762 * string following the next match.
764 while (lookahead
< MIN_LOOKAHEAD
&& !eofile
) fill_window();
766 if (match_available
) ct_tally (0, window
[strstart
-1]);
768 return FLUSH_BLOCK(1); /* eof */