home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / ZIP19P1.ZIP / deflate.c < prev    next >
C/C++ Source or Header  |  1993-01-23  |  26KB  |  689 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly,
  4.  Kai Uwe Rommel and Igor Mandrichenko.
  5.  Permission is granted to any individual or institution to use, copy, or
  6.  redistribute this software so long as all of the original files are included
  7.  unmodified, that it is not sold for profit, and that this copyright notice
  8.  is retained.
  9.  
  10. */
  11.  
  12. /*
  13.  *  deflate.c by Jean-loup Gailly.
  14.  *
  15.  *  PURPOSE
  16.  *
  17.  *      Identify new text as repetitions of old text within a fixed-
  18.  *      length sliding window trailing behind the new text.
  19.  *
  20.  *  DISCUSSION
  21.  *
  22.  *      The "deflation" process depends on being able to identify portions
  23.  *      of the input text which are identical to earlier input (within a
  24.  *      sliding window trailing behind the input currently being processed).
  25.  *
  26.  *      The most straightforward technique turns out to be the fastest for
  27.  *      most input files: try all possible matches and select the longest.
  28.  *      The key feature is of this algorithm is that insertion and deletions
  29.  *      from the string dictionary are very simple and thus fast. Insertions
  30.  *      and deletions are performed at each input character, whereas string
  31.  *      matches are performed only when the previous match ends. So it is
  32.  *      preferable to spend more time in matches to allow very fast string
  33.  *      insertions and deletions. The matching algorithm for small strings
  34.  *      is inspired from that of Rabin & Karp. A brute force approach is
  35.  *      used to find longer strings when a small match has been found.
  36.  *      A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
  37.  *      (by Leonid Broukhis).
  38.  *         A previous version of this file used a more sophisticated algorithm
  39.  *      (by Fiala and Greene) which is guaranteed to run in linear amortized
  40.  *      time, but has a larger average cost and uses more memory. However
  41.  *      the F&G algorithm may be faster for some highly redundant files if
  42.  *      the parameter max_chain_length (described below) is too large.
  43.  *
  44.  *  ACKNOWLEDGEMENTS
  45.  *
  46.  *      The idea of lazy evaluation of matches is due to Jan-Mark Wams, and
  47.  *      I found it in 'freeze' written by Leonid Broukhis.
  48.  *      Thanks to many info-zippers for bug reports and testing.
  49.  *
  50.  *  REFERENCES
  51.  *
  52.  *      APPNOTE.TXT documentation file in PKZIP 2.0 distribution.
  53.  *
  54.  *      A description of the Rabin and Karp algorithm is given in the book
  55.  *         "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
  56.  *
  57.  *      Fiala,E.R., and Greene,D.H.
  58.  *         Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595
  59.  *
  60.  *  INTERFACE
  61.  *
  62.  *      void lm_init (int pack_level, ush *flags)
  63.  *          Initialize the "longest match" routines for a new file
  64.  *
  65.  *      ulg deflate (void)
  66.  *          Processes a new input file and return its compressed length. Sets
  67.  *          the compressed length, crc, deflate flags and internal file
  68.  *          attributes.
  69.  */
  70.  
  71. #include "zip.h"
  72.  
  73. /* ===========================================================================
  74.  * Configuration parameters
  75.  */
  76.  
  77. /* Compile with MEDIUM_MEM to reduce the memory requirements or
  78.  * with SMALL_MEM to use as little memory as possible.
  79.  * Warning: defining these symbols affects MATCH_BUFSIZE and HASH_BITS
  80.  * (see below) and thus affects the compression ratio. The compressed output
  81.  * is still correct, and might even be smaller in some cases.
  82.  */
  83.  
  84. #ifdef SMALL_MEM
  85. #   define HASH_BITS  13  /* Number of bits used to hash strings */
  86. #else
  87. #ifdef MEDIUM_MEM
  88. #   define HASH_BITS  14
  89. #else
  90. #   define HASH_BITS  15
  91.    /* For portability to 16 bit machines, do not use values above 15. */
  92. #endif
  93. #endif
  94.  
  95. #define HASH_SIZE (unsigned)(1<<HASH_BITS)
  96. #define HASH_MASK (HASH_SIZE-1)
  97. #define WMASK     (WSIZE-1)
  98. /* HASH_SIZE and WSIZE must be powers of two */
  99.  
  100. #define NIL 0
  101. /* Tail of hash chains */
  102.  
  103. #define FAST 4
  104. #define SLOW 2
  105. /* speed options for the general purpose bit flag */
  106.  
  107. #ifndef TOO_FAR
  108. #  define TOO_FAR 4096
  109. #endif
  110. /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
  111.  
  112. /* ===========================================================================
  113.  * Local data used by the "longest match" routines.
  114.  */
  115.  
  116. typedef ush Pos;
  117. typedef unsigned IPos;
  118. /* A Pos is an index in the character window. We use short instead of int to
  119.  * save space in the various tables. IPos is used only for parameter passing.
  120.  */
  121.  
  122. #ifndef DYN_ALLOC
  123.   uch    far window[2L*WSIZE];
  124.   /* Sliding window. Input bytes are read into the second half of the window,
  125.    * and move to the first half later to keep a dictionary of at least WSIZE
  126.    * bytes. With this organization, matches are limited to a distance of
  127.    * WSIZE-MAX_MATCH bytes, but this ensures that IO is always
  128.    * performed with a length multiple of the block size. Also, it limits
  129.    * the window size to 64K, which is quite useful on MSDOS.
  130.    * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would
  131.    * be less efficient since the data would have to be copied WSIZE/BSZ times)
  132.    */
  133.   Pos    far prev[WSIZE];
  134.   /* Link to older string with same hash index. To limit the size of this
  135.    * array to 64K, this link is maintained only for the last 32K strings.
  136.    * An index in this array is thus a window index modulo 32K.
  137.    */
  138.   Pos    far head[HASH_SIZE];
  139.   /* Heads of the hash chains or NIL */
  140. #else
  141.   uch    far * near window = NULL;
  142.   Pos    far * near prev   = NULL;
  143.   Pos    far * near head;
  144. #endif
  145.  
  146. long block_start;
  147. /* window position at the beginning of the current output block. Gets
  148.  * negative when the window is moved backwards.
  149.  */
  150.  
  151. local unsigned near ins_h;  /* hash index of string to be inserted */
  152.  
  153. #define H_SHIFT  ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
  154. /* Number of bits by which ins_h and del_h must be shifted at each
  155.  * input step. It must be such that after MIN_MATCH steps, the oldest
  156.  * byte no longer takes part in the hash key, that is:
  157.  *   H_SHIFT * MIN_MATCH >= HASH_BITS
  158.  */
  159.  
  160. unsigned int near prev_length;
  161. /* Length of the best match at previous step. Matches not greater than this
  162.  * are discarded. This is used in the lazy match evaluation.
  163.  */
  164.  
  165.       unsigned near strstart;      /* start of string to insert */
  166.       unsigned near match_start;   /* start of matching string */
  167. local int      near eofile;        /* flag set at end of input file */
  168. local unsigned near lookahead;     /* number of valid bytes ahead in window */
  169.  
  170. unsigned near max_chain_length;
  171. /* To speed up deflation, hash chains are never searched beyond this length.
  172.  * A higher limit improves compression ratio but degrades the speed.
  173.  */
  174.  
  175. local unsigned int max_lazy_match;
  176. /* Attempt to find a better match only when the current match is strictly
  177.  * smaller than this value.
  178.  */
  179.  
  180. int near good_match;
  181. /* Use a faster search when the previous match is longer than this */
  182.  
  183.  
  184. /* Values for max_lazy_match, good_match and max_chain_length, depending on
  185.  * the desired pack level (0..9). The values given below have been tuned to
  186.  * exclude worst case performance for pathological files. Better values may be
  187.  * found for specific files.
  188.  */
  189. typedef struct config {
  190.    int good_length;
  191.    int max_lazy;
  192.    unsigned max_chain;
  193.    uch flag;
  194. } config;
  195.  
  196. local config configuration_table[10] = {
  197. /*      good lazy chain flag */
  198. /* 0 */ {0,    0,    0,  0},     /* store only */
  199. /* 1 */ {4,    4,   16,  FAST},  /* maximum speed  */
  200. /* 2 */ {6,    8,   16,  0},
  201. /* 3 */ {8,   16,   32,  0},
  202. /* 4 */ {8,   32,   64,  0},
  203. /* 5 */ {8,   64,  128,  0},
  204. /* 6 */ {8,  128,  256,  0},
  205. /* 7 */ {8,  128,  512,  0},
  206. /* 8 */ {32, 258, 1024,  0},
  207. /* 9 */ {32, 258, 4096,  SLOW}}; /* maximum compression */
  208.  
  209. /* Note: the current code requires max_lazy >= MIN_MATCH and max_chain >= 4
  210.  * but these restrictions can easily be removed at a small cost.
  211.  */
  212.  
  213. #define EQUAL 0
  214. /* result of memcmp for equal strings */
  215.  
  216. /* ===========================================================================
  217.  *  Prototypes for local functions. Use asm version by default for
  218.  *  MSDOS but not Unix. However the asm version version is recommended
  219.  *  for 386 Unix.
  220.  */
  221. #ifdef ATARI_ST
  222. #  undef MSDOS /* avoid the processor specific parts */
  223. #endif
  224. #if defined(MSDOS) && !defined(NO_ASM) && !defined(ASM)
  225. #  define ASM
  226. #endif
  227.  
  228. local void fill_window   OF((void));
  229.       int  longest_match OF((IPos cur_match));
  230. #ifdef ASM
  231.       void match_init OF((void)); /* asm code initialization */
  232. #endif
  233.  
  234. #ifdef DEBUG
  235. local  void check_match OF((IPos start, IPos match, int length));
  236. #endif
  237.  
  238. #define MIN(a,b) ((a) <= (b) ? (a) : (b))
  239. /* The arguments must not have side effects. */
  240.  
  241. /* ===========================================================================
  242.  * Update a hash value with the given input byte
  243.  * IN  assertion: all calls to to UPDATE_HASH are made with consecutive
  244.  *    input characters, so that a running hash key can be computed from the
  245.  *    previous key instead of complete recalculation each time.
  246.  */
  247. #define UPDATE_HASH(h,c) (h = (((h)<<H_SHIFT) ^ (c)) & HASH_MASK)
  248.  
  249. /* ===========================================================================
  250.  * Insert string s in the dictionary and set match_head to the previous head
  251.  * of the hash chain (the most recent string with same hash key). Return
  252.  * the previous length of the hash chain.
  253.  * IN  assertion: all calls to to INSERT_STRING are made with consecutive
  254.  *    input characters and the first MIN_MATCH bytes of s are valid
  255.  *    (except for the last MIN_MATCH-1 bytes of the input file).
  256.  */
  257. #define INSERT_STRING(s, match_head) \
  258.    (UPDATE_HASH(ins_h, window[(s) + MIN_MATCH-1]), \
  259.     prev[(s) & WMASK] = match_head = head[ins_h], \
  260.     head[ins_h] = (s))
  261.  
  262. /* ===========================================================================
  263.  * Initialize the "longest match" routines for a new file
  264.  */
  265. void lm_init (pack_level, flags)
  266.     int pack_level; /* 0: store, 1: best speed, 9: best compression */
  267.     ush *flags;     /* general purpose bit flag */
  268. {
  269.     register unsigned j;
  270.  
  271.     if (pack_level < 1 || pack_level > 9) error("bad pack level");
  272.  
  273.     /* Use dynamic allocation if compiler does not like big static arrays: */
  274. #ifdef DYN_ALLOC
  275.     if (window == NULL) {
  276.         window = (uch far*) fcalloc(WSIZE,   2*sizeof(uch));
  277.         prev   = (Pos far*) fcalloc(WSIZE,     sizeof(Pos));
  278.         head   = (Pos far*) fcalloc(HASH_SIZE, sizeof(Pos));
  279.  
  280.         if (window == NULL || prev == NULL || head == NULL) {
  281.             err(ZE_MEM, "window allocation");
  282.         }
  283.     }
  284. #endif /* DYN_ALLOC */
  285. #ifdef ASM
  286.     match_init(); /* initialize the asm code */
  287. #endif
  288.     /* Initialize the hash table. */
  289.     for (j = 0;  j < HASH_SIZE; j++) head[j] = NIL;
  290.     /* prev will be initialized on the fly */
  291.  
  292.     /* Set the default configuration parameters:
  293.      */
  294.     max_lazy_match   = configuration_table[pack_level].max_lazy;
  295.     good_match       = configuration_table[pack_level].good_length;
  296.     max_chain_length = configuration_table[pack_level].max_chain;
  297.     *flags          |= configuration_table[pack_level].flag;
  298.     /* ??? reduce max_chain_length for binary files */
  299.  
  300.     strstart = 0;
  301.     block_start = 0L;
  302.  
  303. #if defined(MSDOS) && !defined(__32BIT__)
  304.     /* Can't read a 64K block under MSDOS */
  305.     lookahead = read_buf((char*)window, (unsigned)WSIZE);
  306. #else
  307.     lookahead = read_buf((char*)window, 2*WSIZE);
  308. #endif
  309.     if (lookahead == 0 || lookahead == (unsigned)EOF) {
  310.        eofile = 1, lookahead = 0;
  311.        return;
  312.     }
  313.     eofile = 0;
  314.     /* Make sure that we always have enough lookahead. This is important
  315.      * if input comes from a device such as a tty.
  316.      */
  317.     while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
  318.  
  319.     ins_h = 0;
  320.     for (j=0; j<MIN_MATCH-1; j++) UPDATE_HASH(ins_h, window[j]);
  321.     /* If lookahead < MIN_MATCH, ins_h is garbage, but this is
  322.      * not important since only literal bytes will be emitted.
  323.      */
  324. }
  325.  
  326. /* ===========================================================================
  327.  * Set match_start to the longest match starting at the given string and
  328.  * return its length. Matches shorter or equal to prev_length are discarded,
  329.  * in which case the result is equal to prev_length and match_start is
  330.  * garbage.
  331.  * IN assertions: cur_match is the head of the hash chain for the current
  332.  *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
  333.  */
  334. #ifndef ASM
  335. /* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm. The code
  336.  * is functionally equivalent, so you can use the C version if desired.
  337.  */
  338. int longest_match(cur_match)
  339.     IPos cur_match;                             /* current match */
  340. {
  341.     unsigned chain_length = max_chain_length;   /* max hash chain length */
  342.     register uch far *scan = window + strstart; /* current string */
  343.     register uch far *match = scan;             /* matched string */
  344.     register int len;                           /* length of current match */
  345.     int best_len = prev_length;                 /* best match length so far */
  346.     IPos limit = strstart > (IPos)MAX_DIST ? strstart - (IPos)MAX_DIST : NIL;
  347.     /* Stop when cur_match becomes <= limit. To simplify the code,
  348.      * we prevent matches with the string of window index 0.
  349.      */
  350. #ifdef UNALIGNED_OK
  351.     register ush scan_start = *(ush*)scan;
  352.     register ush scan_end   = *(ush*)(scan+best_len-1);
  353. #else
  354.     register uch scan_start = *scan;
  355.     register uch scan_end1  = scan[best_len-1];
  356.     register uch scan_end   = scan[best_len];
  357. #endif
  358.  
  359.     /* Do not waste too much time if we already have a good match: */
  360.     if (prev_length >= good_match) {
  361.         chain_length >>= 2;
  362.     }
  363.  
  364.     do {
  365.         Assert(cur_match < strstart, "no future");
  366.         match = window + cur_match;
  367.  
  368.         /* Skip to next match if the match length cannot increase
  369.          * or if the match length is less than 2:
  370.          */
  371. #if (defined(UNALIGNED_OK) && HASH_BITS >= 8)
  372.         /* This code assumes sizeof(unsigned short) == 2 and
  373.          * sizeof(unsigned long) == 4. Do not use UNALIGNED_OK if your
  374.          * compiler uses different sizes.
  375.          */
  376.         if (*(ush*)(match+best_len-1) != scan_end ||
  377.             *(ush*)match != scan_start) continue;
  378.  
  379.         len = MIN_MATCH - 4;
  380.         /* It is not necessary to compare scan[2] and match[2] since they are
  381.          * always equal when the other bytes match, given that the hash keys
  382.          * are equal and that HASH_BITS >= 8.
  383.          */
  384.         do {} while ((len+=4) < MAX_MATCH-3 &&
  385.                      *(ulg*)(scan+len) == *(ulg*)(match+len));
  386.         /* The funny do {} generates better code for most compilers */
  387.  
  388.         if (*(ush*)(scan+len) == *(ush*)(match+len)) len += 2;
  389.         if (scan[len] == match[len]) len++;
  390.  
  391. #else /* UNALIGNED_OK */
  392.         if (match[best_len] != scan_end ||
  393.             match[best_len-1] != scan_end1 || *match != scan_start)
  394.            continue;
  395.         /* It is not necessary to compare scan[1] and match[1] since they
  396.          * are always equal when the other bytes match, given that
  397.          * the hash keys are equal and that h_shift+8 <= HASH_BITS,
  398.          * that is, when the last byte is entirely included in the hash key.
  399.          * The condition is equivalent to
  400.          *       (HASH_BITS+2)/3 + 8 <= HASH_BITS
  401.          * or: HASH_BITS >= 13
  402.          * Also, we check for a match at best_len-1 to get rid quickly of
  403.          * the match with the suffix of the match made at the previous step,
  404.          * which is known to fail.
  405.          */
  406. #if HASH_BITS >= 13
  407.         len = 1;
  408. #else
  409.         len = 0;
  410. #endif
  411.         do {} while (++len < MAX_MATCH && scan[len] == match[len]);
  412.  
  413. #endif /* UNALIGNED_OK */
  414.  
  415.         if (len > best_len) {
  416.             match_start = cur_match;
  417.             best_len = len;
  418.             if (len == MAX_MATCH) break;
  419. #ifdef UNALIGNED_OK
  420.             scan_end = *(ush*)(scan+best_len-1);
  421. #else
  422.             scan_end1  = scan[best_len-1];
  423.             scan_end   = scan[best_len];
  424. #endif
  425.         }
  426.     } while (--chain_length != 0 &&
  427.              (cur_match = prev[cur_match & WMASK]) > limit);
  428.  
  429.     return best_len;
  430. }
  431. #endif /* NO_ASM */
  432.  
  433. #ifdef DEBUG
  434. /* ===========================================================================
  435.  * Check that the match at match_start is indeed a match.
  436.  */
  437. local void check_match(start, match, length)
  438.     IPos start, match;
  439.     int length;
  440. {
  441.     /* check that the match is indeed a match */
  442.     if (memcmp((char*)window + match,
  443.                 (char*)window + start, length) != EQUAL) {
  444.         fprintf(stderr,
  445.             " start %d, match %d, length %d\n",
  446.             start, match, length);
  447.         error("invalid match");
  448.     }
  449.     if (verbose > 1) {
  450.         fprintf(stderr,"\\[%d,%d]", start-match, length);
  451.         do { putc(window[start++], stderr); } while (--length != 0);
  452.     }
  453. }
  454. #else
  455. #  define check_match(start, match, length)
  456. #endif
  457.  
  458. /* ===========================================================================
  459.  * Fill the window when the lookahead becomes insufficient.
  460.  * Updates strstart and lookahead, and sets eofile if end of input file.
  461.  * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
  462.  * OUT assertion: at least one byte has been read, or eofile is set.
  463.  */
  464. local void fill_window()
  465. {
  466.     register unsigned n, m;
  467.     unsigned more = (unsigned)((ulg)2*WSIZE - (ulg)lookahead - (ulg)strstart);
  468.     /* Amount of free space at the end of the window. */
  469.  
  470.     /* If the window is full, move the upper half to the lower one to make
  471.      * room in the upper half.
  472.      */
  473.     if (more == 0) {
  474.         /* By the IN assertion, the window is not empty so we can't confuse
  475.          * more == 0 with more == 64K on a 16 bit machine.
  476.          */
  477.         memcpy((char*)window, (char*)window+WSIZE, (unsigned)WSIZE);
  478.         match_start -= WSIZE;
  479.         strstart    -= WSIZE;
  480.         /* strstart - WSIZE = WSIZE - lookahead > WSIZE - MIN_LOOKAHEAD
  481.          * so we now have strstart > MAX_DIST:
  482.          */
  483.         Assert (strstart > MAX_DIST, "window slide too early");
  484.         block_start -= (long) WSIZE;
  485.  
  486.         for (n = 0; n < HASH_SIZE; n++) {
  487.             m = head[n];
  488.             head[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);
  489.         }
  490.         for (n = 0; n < WSIZE; n++) {
  491.             m = prev[n];
  492.             prev[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);
  493.             /* If n is not on any hash chain, prev[n] is garbage but
  494.              * its value will never be used.
  495.              */
  496.         }
  497.         more = WSIZE;
  498.         if (verbose) putc('.', stderr);
  499.  
  500.     } else if (more == (unsigned)EOF) {
  501.         /* Very unlikely, but possible on 16 bit machine if strstart == 0
  502.          * and lookahead == 1 (input done one byte at time)
  503.          */
  504.         more--;
  505.     }
  506.     n = read_buf((char*)window+strstart+lookahead, more);
  507.     if (n == 0 || n == (unsigned)EOF) {
  508.         eofile = 1;
  509.     } else {
  510.         lookahead += n;
  511.     }
  512. }
  513.  
  514. /* ===========================================================================
  515.  * Flush the current block, with given end-of-file flag.
  516.  * IN assertion: strstart is set to the end of the current match.
  517.  */
  518. #define FLUSH_BLOCK(eof) \
  519.    flush_block(block_start >= 0L ? (char*)&window[block_start] : (char*)NULL,\
  520.                (long)strstart - block_start, (eof))
  521.  
  522. /* ===========================================================================
  523.  * Processes a new input file and return its compressed length.
  524.  */
  525. #ifdef NO_LAZY
  526. ulg deflate()
  527. {
  528.     IPos hash_head; /* head of the hash chain */
  529.     int flush;      /* set if current block must be flushed */
  530.     unsigned match_length = 0;  /* length of best match */
  531.  
  532.     prev_length = MIN_MATCH-1;
  533.     while (lookahead != 0) {
  534.         /* Insert the string window[strstart .. strstart+2] in the
  535.          * dictionary, and set hash_head to the head of the hash chain:
  536.          */
  537.         INSERT_STRING(strstart, hash_head);
  538.  
  539.         /* Find the longest match, discarding those <= prev_length.
  540.          * At this point we have always match_length < MIN_MATCH
  541.          */
  542.         if (hash_head != NIL && strstart - hash_head <= MAX_DIST) {
  543.             /* To simplify the code, we prevent matches with the string
  544.              * of window index 0 (in particular we have to avoid a match
  545.              * of the string with itself at the start of the input file).
  546.              */
  547.             match_length = longest_match (hash_head);
  548.             /* longest_match() sets match_start */
  549.             if (match_length > lookahead) match_length = lookahead;
  550.         }
  551.         if (match_length >= MIN_MATCH) {
  552.             check_match(strstart, match_start, match_length);
  553.  
  554.             flush = ct_tally(strstart-match_start, match_length - MIN_MATCH);
  555.  
  556.             lookahead -= match_length;
  557.             match_length--; /* string at strstart already in hash table */
  558.             do {
  559.                 strstart++;
  560.                 INSERT_STRING(strstart, hash_head);
  561.                 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
  562.                  * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
  563.                  * these bytes are garbage, but it does not matter since the
  564.                  * next lookahead bytes will always be emitted as literals.
  565.                  */
  566.             } while (--match_length != 0);
  567.         } else {
  568.             /* No match, output a literal byte */
  569.             flush = ct_tally (0, window[strstart]);
  570.             lookahead--;
  571.         }
  572.         strstart++; 
  573.         if (flush) FLUSH_BLOCK(0), block_start = strstart;
  574.  
  575.         /* Make sure that we always have enough lookahead, except
  576.          * at the end of the input file. We need MAX_MATCH bytes
  577.          * for the next match, plus MIN_MATCH bytes to insert the
  578.          * string following the next match.
  579.          */
  580.         while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
  581.  
  582.     }
  583.     return FLUSH_BLOCK(1); /* eof */
  584. }
  585. #else /* LAZY */
  586. /* ===========================================================================
  587.  * Same as above, but achieves better compression. We use a lazy
  588.  * evaluation for matches: a match is finally adopted only if there is
  589.  * no better match at the next window position.
  590.  */
  591. ulg deflate()
  592. {
  593.     IPos hash_head;          /* head of hash chain */
  594.     IPos prev_match;         /* previous match */
  595.     int flush;               /* set if current block must be flushed */
  596.     int match_available = 0; /* set if previous match exists */
  597.     register unsigned match_length = MIN_MATCH-1; /* length of best match */
  598. #ifdef DEBUG
  599.     extern ulg isize;        /* byte length of input file, for debug only */
  600. #endif
  601.  
  602.     /* Process the input block. */
  603.     while (lookahead != 0) {
  604.         /* Insert the string window[strstart .. strstart+2] in the
  605.          * dictionary, and set hash_head to the head of the hash chain:
  606.          */
  607.         INSERT_STRING(strstart, hash_head);
  608.  
  609.         /* Find the longest match, discarding those <= prev_length.
  610.          */
  611.         prev_length = match_length, prev_match = match_start;
  612.         match_length = MIN_MATCH-1;
  613.  
  614.         if (hash_head != NIL && prev_length < max_lazy_match &&
  615.             strstart - hash_head <= MAX_DIST) {
  616.             /* To simplify the code, we prevent matches with the string
  617.              * of window index 0 (in particular we have to avoid a match
  618.              * of the string with itself at the start of the input file).
  619.              */
  620.             match_length = longest_match (hash_head);
  621.             /* longest_match() sets match_start */
  622.             if (match_length > lookahead) match_length = lookahead;
  623.             /* Ignore a length 3 match if it is too distant: */
  624.             if (match_length == MIN_MATCH && strstart-match_start > TOO_FAR){
  625.                 /* If prev_match is also MIN_MATCH, match_start is garbage
  626.                  * but we will ignore the current match anyway.
  627.                  */
  628.                 match_length--;
  629.             }
  630.         }
  631.         /* If there was a match at the previous step and the current
  632.          * match is not better, output the previous match:
  633.          */
  634.         if (prev_length >= MIN_MATCH && match_length <= prev_length) {
  635.  
  636.             check_match(strstart-1, prev_match, prev_length);
  637.  
  638.             flush = ct_tally(strstart-1-prev_match, prev_length - MIN_MATCH);
  639.  
  640.             /* Insert in hash table all strings up to the end of the match.
  641.              * strstart-1 and strstart are already inserted.
  642.              */
  643.             lookahead -= prev_length-1;
  644.             prev_length -= 2;
  645.             do {
  646.                 strstart++;
  647.                 INSERT_STRING(strstart, hash_head);
  648.                 /* strstart never exceeds WSIZE-MAX_MATCH, so there are
  649.                  * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH
  650.                  * these bytes are garbage, but it does not matter since the
  651.                  * next lookahead bytes will always be emitted as literals.
  652.                  */
  653.             } while (--prev_length != 0);
  654.             match_available = 0;
  655.             match_length = MIN_MATCH-1;
  656.  
  657.         } else if (match_available) {
  658.             /* If there was no match at the previous position, output a
  659.              * single literal. If there was a match but the current match
  660.              * is longer, truncate the previous match to a single literal.
  661.              */
  662.             flush = ct_tally (0, window[strstart-1]);
  663.             Tracevv((stderr,"%c",window[strstart-1]));
  664.             lookahead--;
  665.         } else {
  666.             /* There is no previous match to compare with, wait for
  667.              * the next step to decide.
  668.              */
  669.             match_available = 1;
  670.             flush = 0;
  671.             lookahead--;
  672.         }
  673.         if (flush) FLUSH_BLOCK(0), block_start = strstart;
  674.         strstart++;
  675.         Assert (strstart <= isize && lookahead <= isize, "a bit too far");
  676.  
  677.         /* Make sure that we always have enough lookahead, except
  678.          * at the end of the input file. We need MAX_MATCH bytes
  679.          * for the next match, plus MIN_MATCH bytes to insert the
  680.          * string following the next match.
  681.          */
  682.         while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();
  683.     }
  684.     if (match_available) ct_tally (0, window[strstart-1]);
  685.  
  686.     return FLUSH_BLOCK(1); /* eof */
  687. }
  688. #endif /* LAZY */
  689.