home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Info / Extras / Zlib / Src / DEFLATE.C < prev    next >
C/C++ Source or Header  |  1996-12-09  |  45KB  |  1,210 lines

  1. /* deflate.c -- compress data using the deflation algorithm
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  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 ftp.uu.net:/pub/archiving/zip/doc/deflate-1.1.doc
  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: deflate.c,v 1.15 1996/07/24 13:40:58 me Exp $ */
  51.  
  52. #include "deflate.h"
  53.  
  54. char deflate_copyright[] = " deflate 1.0.4 Copyright 1995-1996 Jean-loup Gailly ";
  55. /*
  56.   If you use the zlib library in a product, an acknowledgment is welcome
  57.   in the documentation of your product. If for some reason you cannot
  58.   include such an acknowledgment, I would appreciate that you keep this
  59.   copyright string in the executable of your product.
  60.  */
  61.  
  62. /* ===========================================================================
  63.  *  Function prototypes.
  64.  */
  65. typedef enum {
  66.     need_more,      /* block not completed, need more input or more output */
  67.     block_done,     /* block flush performed */
  68.     finish_started, /* finish started, need only more output at next deflate */
  69.     finish_done     /* finish done, accept no more input or output */
  70. } block_state;
  71.  
  72. typedef block_state (*compress_func) OF((deflate_state *s, int flush));
  73. /* Compression function. Returns the block state after the call. */
  74.  
  75. local void fill_window    OF((deflate_state *s));
  76. local block_state deflate_stored OF((deflate_state *s, int flush));
  77. local block_state deflate_fast   OF((deflate_state *s, int flush));
  78. local block_state deflate_slow   OF((deflate_state *s, int flush));
  79. local void lm_init        OF((deflate_state *s));
  80. local uInt longest_match  OF((deflate_state *s, IPos cur_match));
  81. local void putShortMSB    OF((deflate_state *s, uInt b));
  82. local void flush_pending  OF((z_streamp strm));
  83. local int read_buf        OF((z_streamp strm, charf *buf, unsigned size));
  84. #ifdef ASMV
  85.       void match_init OF((void)); /* asm code initialization */
  86. #endif
  87.  
  88. #ifdef DEBUG
  89. local  void check_match OF((deflate_state *s, IPos start, IPos match,
  90.                             int length));
  91. #endif
  92.  
  93. /* ===========================================================================
  94.  * Local data
  95.  */
  96.  
  97. #define NIL 0
  98. /* Tail of hash chains */
  99.  
  100. #ifndef TOO_FAR
  101. #  define TOO_FAR 4096
  102. #endif
  103. /* Matches of length 3 are discarded if their distance exceeds TOO_FAR */
  104.  
  105. #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
  106. /* Minimum amount of lookahead, except at the end of the input file.
  107.  * See deflate.c for comments about the MIN_MATCH+1.
  108.  */
  109.  
  110. /* Values for max_lazy_match, good_match and max_chain_length, depending on
  111.  * the desired pack level (0..9). The values given below have been tuned to
  112.  * exclude worst case performance for pathological files. Better values may be
  113.  * found for specific files.
  114.  */
  115. typedef struct config_s {
  116.    ush good_length; /* reduce lazy search above this match length */
  117.    ush max_lazy;    /* do not perform lazy search above this match length */
  118.    ush nice_length; /* quit search above this match length */
  119.    ush max_chain;
  120.    compress_func func;
  121. } config;
  122.  
  123. local config configuration_table[10] = {
  124. /*      good lazy nice chain */
  125. /* 0 */ {0,    0,  0,    0, deflate_stored},  /* store only */
  126. /* 1 */ {4,    4,  8,    4, deflate_fast}, /* maximum speed, no lazy matches */
  127. /* 2 */ {4,    5, 16,    8, deflate_fast},
  128. /* 3 */ {4,    6, 32,   32, deflate_fast},
  129.  
  130. /* 4 */ {4,    4, 16,   16, deflate_slow},  /* lazy matches */
  131. /* 5 */ {8,   16, 32,   32, deflate_slow},
  132. /* 6 */ {8,   16, 128, 128, deflate_slow},
  133. /* 7 */ {8,   32, 128, 256, deflate_slow},
  134. /* 8 */ {32, 128, 258, 1024, deflate_slow},
  135. /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* maximum compression */
  136.  
  137. /* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4
  138.  * For deflate_fast() (levels <= 3) good is ignored and lazy has a different
  139.  * meaning.
  140.  */
  141.  
  142. #define EQUAL 0
  143. /* result of memcmp for equal strings */
  144.  
  145. struct static_tree_desc_s {int dummy;}; /* for buggy compilers */
  146.  
  147. /* ===========================================================================
  148.  * Update a hash value with the given input byte
  149.  * IN  assertion: all calls to to UPDATE_HASH are made with consecutive
  150.  *    input characters, so that a running hash key can be computed from the
  151.  *    previous key instead of complete recalculation each time.
  152.  */
  153. #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask)
  154.  
  155.  
  156. /* ===========================================================================
  157.  * Insert string str in the dictionary and set match_head to the previous head
  158.  * of the hash chain (the most recent string with same hash key). Return
  159.  * the previous length of the hash chain.
  160.  * IN  assertion: all calls to to INSERT_STRING are made with consecutive
  161.  *    input characters and the first MIN_MATCH bytes of str are valid
  162.  *    (except for the last MIN_MATCH-1 bytes of the input file).
  163.  */
  164. #define INSERT_STRING(s, str, match_head) \
  165.    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
  166.     s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
  167.     s->head[s->ins_h] = (Pos)(str))
  168.  
  169. /* ===========================================================================
  170.  * Initialize the hash table (avoiding 64K overflow for 16 bit systems).
  171.  * prev[] will be initialized on the fly.
  172.  */
  173. #define CLEAR_HASH(s) \
  174.     s->head[s->hash_size-1] = NIL; \
  175.     zmemzero((charf *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
  176.  
  177. /* ========================================================================= */
  178. int deflateInit_(strm, level, version, stream_size)
  179.     z_streamp strm;
  180.     int level;
  181.     const char *version;
  182.     int stream_size;
  183. {
  184.     return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
  185.              Z_DEFAULT_STRATEGY, version, stream_size);
  186.     /* To do: ignore strm->next_in if we use it as window */
  187. }
  188.  
  189. /* ========================================================================= */
  190. int deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
  191.           version, stream_size)
  192.     z_streamp strm;
  193.     int  level;
  194.     int  method;
  195.     int  windowBits;
  196.     int  memLevel;
  197.     int  strategy;
  198.     const char *version;
  199.     int stream_size;
  200. {
  201.     deflate_state *s;
  202.     int noheader = 0;
  203.  
  204.     ushf *overlay;
  205.     /* We overlay pending_buf and d_buf+l_buf. This works since the average
  206.      * output size for (length,distance) codes is <= 24 bits.
  207.      */
  208.  
  209.     if (version == Z_NULL || version[0] != ZLIB_VERSION[0] ||
  210.         stream_size != sizeof(z_stream)) {
  211.     return Z_VERSION_ERROR;
  212.     }
  213.     if (strm == Z_NULL) return Z_STREAM_ERROR;
  214.  
  215.     strm->msg = Z_NULL;
  216.     if ((strm->zalloc == Z_NULL) || (strm->zfree == Z_NULL)) return Z_MEM_ERROR;
  217. /*
  218.     if (strm->zalloc == Z_NULL) {
  219.     strm->zalloc = zcalloc;
  220.     strm->opaque = (voidpf)0;
  221.     }
  222.     if (strm->zfree == Z_NULL) strm->zfree = zcfree;
  223. */
  224.     if (level == Z_DEFAULT_COMPRESSION) level = 6;
  225.  
  226.     if (windowBits < 0) { /* undocumented feature: suppress zlib header */
  227.         noheader = 1;
  228.         windowBits = -windowBits;
  229.     }
  230.     if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED ||
  231.         windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
  232.     strategy < 0 || strategy > Z_HUFFMAN_ONLY) {
  233.         return Z_STREAM_ERROR;
  234.     }
  235.     s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
  236.     if (s == Z_NULL) return Z_MEM_ERROR;
  237.     strm->state = (struct internal_state FAR *)s;
  238.     s->strm = strm;
  239.  
  240.     s->noheader = noheader;
  241.     s->w_bits = windowBits;
  242.     s->w_size = 1 << s->w_bits;
  243.     s->w_mask = s->w_size - 1;
  244.  
  245.     s->hash_bits = memLevel + 7;
  246.     s->hash_size = 1 << s->hash_bits;
  247.     s->hash_mask = s->hash_size - 1;
  248.     s->hash_shift =  ((s->hash_bits+MIN_MATCH-1)/MIN_MATCH);
  249.  
  250.     s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
  251.     s->prev   = (Posf *)  ZALLOC(strm, s->w_size, sizeof(Pos));
  252.     s->head   = (Posf *)  ZALLOC(strm, s->hash_size, sizeof(Pos));
  253.  
  254.     s->lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
  255.  
  256.     overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
  257.     s->pending_buf = (uchf *) overlay;
  258.  
  259.     if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
  260.         s->pending_buf == Z_NULL) {
  261.         strm->msg = (char*)ERR_MSG(Z_MEM_ERROR);
  262.         deflateEnd (strm);
  263.         return Z_MEM_ERROR;
  264.     }
  265.     s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
  266.     s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
  267.  
  268.     s->level = level;
  269.     s->strategy = strategy;
  270.     s->method = (Byte)method;
  271.  
  272.     return deflateReset(strm);
  273. }
  274.  
  275. /* ========================================================================= */
  276. int deflateSetDictionary (strm, dictionary, dictLength)
  277.     z_streamp strm;
  278.     const Bytef *dictionary;
  279.     uInt  dictLength;
  280. {
  281.     deflate_state *s;
  282.     uInt length = dictLength;
  283.     uInt n;
  284.     IPos hash_head = 0;
  285.  
  286.     if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
  287.         strm->state->status != INIT_STATE) return Z_STREAM_ERROR;
  288.  
  289.     s = strm->state;
  290.     strm->adler = adler32(strm->adler, dictionary, dictLength);
  291.  
  292.     if (length < MIN_MATCH) return Z_OK;
  293.     if (length > MAX_DIST(s)) {
  294.     length = MAX_DIST(s);
  295.     dictionary += dictLength - length;
  296.     }
  297.     zmemcpy((charf *)s->window, dictionary, length);
  298.     s->strstart = length;
  299.     s->block_start = (long)length;
  300.  
  301.     /* Insert all strings in the hash table (except for the last two bytes).
  302.      * s->lookahead stays null, so s->ins_h will be recomputed at the next
  303.      * call of fill_window.
  304.      */
  305.     s->ins_h = s->window[0];
  306.     UPDATE_HASH(s, s->ins_h, s->window[1]);
  307.     for (n = 0; n <= length - MIN_MATCH; n++) {
  308.     INSERT_STRING(s, n, hash_head);
  309.     }
  310.     if (hash_head) hash_head = 0;  /* to make compiler happy */
  311.     return Z_OK;
  312. }
  313.  
  314. /* ========================================================================= */
  315. int deflateReset (strm)
  316.     z_streamp strm;
  317. {
  318.     deflate_state *s;
  319.     
  320.     if (strm == Z_NULL || strm->state == Z_NULL ||
  321.         strm->zalloc == Z_NULL || strm->zfree == Z_NULL) return Z_STREAM_ERROR;
  322.  
  323.     strm->total_in = strm->total_out = 0;
  324.     strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
  325.     strm->data_type = Z_UNKNOWN;
  326.  
  327.     s = (deflate_state *)strm->state;
  328.     s->pending = 0;
  329.     s->pending_out = s->pending_buf;
  330.  
  331.     if (s->noheader < 0) {
  332.         s->noheader = 0; /* was set to -1 by deflate(..., Z_FINISH); */
  333.     }
  334.     s->status = s->noheader ? BUSY_STATE : INIT_STATE;
  335.     strm->adler = 1;
  336.     s->last_flush = Z_NO_FLUSH;
  337.  
  338.     _tr_init(s);
  339.     lm_init(s);
  340.  
  341.     return Z_OK;
  342. }
  343.  
  344. /* ========================================================================= */
  345. int deflateParams(strm, level, strategy)
  346.     z_streamp strm;
  347.     int level;
  348.     int strategy;
  349. {
  350.     deflate_state *s;
  351.     compress_func func;
  352.     int err = Z_OK;
  353.  
  354.     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
  355.     s = strm->state;
  356.  
  357.     if (level == Z_DEFAULT_COMPRESSION) {
  358.     level = 6;
  359.     }
  360.     if (level < 0 || level > 9 || strategy < 0 || strategy > Z_HUFFMAN_ONLY) {
  361.     return Z_STREAM_ERROR;
  362.     }
  363.     func = configuration_table[s->level].func;
  364.  
  365.     if (func != configuration_table[level].func && strm->total_in != 0) {
  366.     /* Flush the last buffer: */
  367.     err = deflate(strm, Z_PARTIAL_FLUSH);
  368.     }
  369.     if (s->level != level) {
  370.     s->level = level;
  371.     s->max_lazy_match   = configuration_table[level].max_lazy;
  372.     s->good_match       = configuration_table[level].good_length;
  373.     s->nice_match       = configuration_table[level].nice_length;
  374.     s->max_chain_length = configuration_table[level].max_chain;
  375.     }
  376.     s->strategy = strategy;
  377.     return err;
  378. }
  379.  
  380. /* =========================================================================
  381.  * Put a short in the pending buffer. The 16-bit value is put in MSB order.
  382.  * IN assertion: the stream state is correct and there is enough room in
  383.  * pending_buf.
  384.  */
  385. local void putShortMSB (s, b)
  386.     deflate_state *s;
  387.     uInt b;
  388. {
  389.     put_byte(s, (Byte)(b >> 8));
  390.     put_byte(s, (Byte)(b & 0xff));
  391. }   
  392.  
  393. /* =========================================================================
  394.  * Flush as much pending output as possible. All deflate() output goes
  395.  * through this function so some applications may wish to modify it
  396.  * to avoid allocating a large strm->next_out buffer and copying into it.
  397.  * (See also read_buf()).
  398.  */
  399. local void flush_pending(strm)
  400.     z_streamp strm;
  401. {
  402.     unsigned len = strm->state->pending;
  403.  
  404.     if (len > strm->avail_out) len = strm->avail_out;
  405.     if (len == 0) return;
  406.  
  407.     zmemcpy(strm->next_out, strm->state->pending_out, len);
  408.     strm->next_out  += len;
  409.     strm->state->pending_out  += len;
  410.     strm->total_out += len;
  411.     strm->avail_out  -= len;
  412.     strm->state->pending -= len;
  413.     if (strm->state->pending == 0) {
  414.         strm->state->pending_out = strm->state->pending_buf;
  415.     }
  416. }
  417.  
  418. /* ========================================================================= */
  419. int deflate (strm, flush)
  420.     z_streamp strm;
  421.     int flush;
  422. {
  423.     int old_flush; /* value of flush param for previous deflate call */
  424.     deflate_state *s;
  425.  
  426.     if (strm == Z_NULL || strm->state == Z_NULL ||
  427.     flush > Z_FINISH || flush < 0) {
  428.         return Z_STREAM_ERROR;
  429.     }
  430.     s = strm->state;
  431.  
  432.     if (strm->next_out == Z_NULL ||
  433.         (strm->next_in == Z_NULL && strm->avail_in != 0) ||
  434.     (s->status == FINISH_STATE && flush != Z_FINISH)) {
  435.         ERR_RETURN(strm, Z_STREAM_ERROR);
  436.     }
  437.     if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
  438.  
  439.     s->strm = strm; /* just in case */
  440.     old_flush = s->last_flush;
  441.     s->last_flush = flush;
  442.  
  443.     /* Write the zlib header */
  444.     if (s->status == INIT_STATE) {
  445.  
  446.         uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
  447.         uInt level_flags = (s->level-1) >> 1;
  448.  
  449.         if (level_flags > 3) level_flags = 3;
  450.         header |= (level_flags << 6);
  451.     if (s->strstart != 0) header |= PRESET_DICT;
  452.         header += 31 - (header % 31);
  453.  
  454.         s->status = BUSY_STATE;
  455.         putShortMSB(s, header);
  456.  
  457.     /* Save the adler32 of the preset dictionary: */
  458.     if (s->strstart != 0) {
  459.         putShortMSB(s, (uInt)(strm->adler >> 16));
  460.         putShortMSB(s, (uInt)(strm->adler & 0xffff));
  461.     }
  462.     strm->adler = 1L;
  463.     }
  464.  
  465.     /* Flush as much pending output as possible */
  466.     if (s->pending != 0) {
  467.         flush_pending(strm);
  468.         if (strm->avail_out == 0) {
  469.         /* Since avail_out is 0, deflate will be called again with
  470.          * more output space, but possibly with both pending and
  471.          * avail_in equal to zero. There won't be anything to do,
  472.          * but this is not an error situation so make sure we
  473.          * return OK instead of BUF_ERROR at next call of deflate:
  474.              */
  475.         s->last_flush = -1;
  476.         return Z_OK;
  477.     }
  478.  
  479.     /* Make sure there is something to do and avoid duplicate consecutive
  480.      * flushes. For repeated and useless calls with Z_FINISH, we keep
  481.      * returning Z_STREAM_END instead of Z_BUFF_ERROR.
  482.      */
  483.     } else if (strm->avail_in == 0 && flush <= old_flush &&
  484.            flush != Z_FINISH) {
  485.         ERR_RETURN(strm, Z_BUF_ERROR);
  486.     }
  487.  
  488.     /* User must not provide more input after the first FINISH: */
  489.     if (s->status == FINISH_STATE && strm->avail_in != 0) {
  490.         ERR_RETURN(strm, Z_BUF_ERROR);
  491.     }
  492.  
  493.     /* Start a new block or continue the current one.
  494.      */
  495.     if (strm->avail_in != 0 || s->lookahead != 0 ||
  496.         (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) {
  497.         block_state bstate;
  498.  
  499.     bstate = (*(configuration_table[s->level].func))(s, flush);
  500.  
  501.         if (bstate == finish_started || bstate == finish_done) {
  502.             s->status = FINISH_STATE;
  503.         }
  504.         if (bstate == need_more || bstate == finish_started) {
  505.         if (strm->avail_out == 0) {
  506.             s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
  507.         }
  508.         return Z_OK;
  509.         /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
  510.          * of deflate should use the same flush parameter to make sure
  511.          * that the flush is complete. So we don't have to output an
  512.          * empty block here, this will be done at next call. This also
  513.          * ensures that for a very small output buffer, we emit at most
  514.          * one empty block.
  515.          */
  516.     }
  517.         if (bstate == block_done) {
  518.             if (flush == Z_PARTIAL_FLUSH) {
  519.                 _tr_align(s);
  520.             } else { /* FULL_FLUSH or SYNC_FLUSH */
  521.                 _tr_stored_block(s, (char*)0, 0L, 0);
  522.                 /* For a full flush, this empty block will be recognized
  523.                  * as a special marker by inflate_sync().
  524.                  */
  525.                 if (flush == Z_FULL_FLUSH) {
  526.                     CLEAR_HASH(s);             /* forget history */
  527.                 }
  528.             }
  529.             flush_pending(strm);
  530.         if (strm->avail_out == 0) {
  531.           s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
  532.           return Z_OK;
  533.         }
  534.         }
  535.     }
  536.     Assert(strm->avail_out > 0, "bug2");
  537.  
  538.     if (flush != Z_FINISH) return Z_OK;
  539.     if (s->noheader) return Z_STREAM_END;
  540.  
  541.     /* Write the zlib trailer (adler32) */
  542.     putShortMSB(s, (uInt)(strm->adler >> 16));
  543.     putShortMSB(s, (uInt)(strm->adler & 0xffff));
  544.     flush_pending(strm);
  545.     /* If avail_out is zero, the application will call deflate again
  546.      * to flush the rest.
  547.      */
  548.     s->noheader = -1; /* write the trailer only once! */
  549.     return s->pending != 0 ? Z_OK : Z_STREAM_END;
  550. }
  551.  
  552. /* ========================================================================= */
  553. int deflateEnd (strm)
  554.     z_streamp strm;
  555. {
  556.     int status;
  557.  
  558.     if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
  559.  
  560.     /* Deallocate in reverse order of allocations: */
  561.     TRY_FREE(strm, strm->state->pending_buf);
  562.     TRY_FREE(strm, strm->state->head);
  563.     TRY_FREE(strm, strm->state->prev);
  564.     TRY_FREE(strm, strm->state->window);
  565.  
  566.     status = strm->state->status;
  567.     ZFREE(strm, strm->state);
  568.     strm->state = Z_NULL;
  569.  
  570.     return status == BUSY_STATE ? Z_DATA_ERROR : Z_OK;
  571. }
  572.  
  573. /* ========================================================================= */
  574. int deflateCopy (dest, source)
  575.     z_streamp dest;
  576.     z_streamp source;
  577. {
  578.     if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
  579.         return Z_STREAM_ERROR;
  580.     }
  581.     *dest = *source;
  582.     return Z_STREAM_ERROR; /* to be implemented */
  583. #if 0
  584.     dest->state = (struct internal_state FAR *)
  585.         (*dest->zalloc)(1, sizeof(deflate_state));
  586.     if (dest->state == Z_NULL) return Z_MEM_ERROR;
  587.  
  588.     *(dest->state) = *(source->state);
  589.     return Z_OK;
  590. #endif
  591. }
  592.  
  593. /* ===========================================================================
  594.  * Read a new buffer from the current input stream, update the adler32
  595.  * and total number of bytes read.  All deflate() input goes through
  596.  * this function so some applications may wish to modify it to avoid
  597.  * allocating a large strm->next_in buffer and copying from it.
  598.  * (See also flush_pending()).
  599.  */
  600. local int read_buf(strm, buf, size)
  601.     z_streamp strm;
  602.     charf *buf;
  603.     unsigned size;
  604. {
  605.     unsigned len = strm->avail_in;
  606.  
  607.     if (len > size) len = size;
  608.     if (len == 0) return 0;
  609.  
  610.     strm->avail_in  -= len;
  611.  
  612.     if (!strm->state->noheader) {
  613.         strm->adler = adler32(strm->adler, strm->next_in, len);
  614.     }
  615.     zmemcpy(buf, strm->next_in, len);
  616.     strm->next_in  += len;
  617.     strm->total_in += len;
  618.  
  619.     return (int)len;
  620. }
  621.  
  622. /* ===========================================================================
  623.  * Initialize the "longest match" routines for a new zlib stream
  624.  */
  625. local void lm_init (s)
  626.     deflate_state *s;
  627. {
  628.     s->window_size = (ulg)2L*s->w_size;
  629.  
  630.     CLEAR_HASH(s);
  631.  
  632.     /* Set the default configuration parameters:
  633.      */
  634.     s->max_lazy_match   = configuration_table[s->level].max_lazy;
  635.     s->good_match       = configuration_table[s->level].good_length;
  636.     s->nice_match       = configuration_table[s->level].nice_length;
  637.     s->max_chain_length = configuration_table[s->level].max_chain;
  638.  
  639.     s->strstart = 0;
  640.     s->block_start = 0L;
  641.     s->lookahead = 0;
  642.     s->match_length = s->prev_length = MIN_MATCH-1;
  643.     s->match_available = 0;
  644.     s->ins_h = 0;
  645. #ifdef ASMV
  646.     match_init(); /* initialize the asm code */
  647. #endif
  648. }
  649.  
  650. /* ===========================================================================
  651.  * Set match_start to the longest match starting at the given string and
  652.  * return its length. Matches shorter or equal to prev_length are discarded,
  653.  * in which case the result is equal to prev_length and match_start is
  654.  * garbage.
  655.  * IN assertions: cur_match is the head of the hash chain for the current
  656.  *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
  657.  * OUT assertion: the match length is not greater than s->lookahead.
  658.  */
  659. #ifndef ASMV
  660. /* For 80x86 and 680x0, an optimized version will be provided in match.asm or
  661.  * match.S. The code will be functionally equivalent.
  662.  */
  663. local uInt longest_match(s, cur_match)
  664.     deflate_state *s;
  665.     IPos cur_match;                             /* current match */
  666. {
  667.     unsigned chain_length = s->max_chain_length;/* max hash chain length */
  668.     register Bytef *scan = s->window + s->strstart; /* current string */
  669.     register Bytef *match;                       /* matched string */
  670.     register int len;                           /* length of current match */
  671.     int best_len = s->prev_length;              /* best match length so far */
  672.     int nice_match = s->nice_match;             /* stop if match long enough */
  673.     IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
  674.         s->strstart - (IPos)MAX_DIST(s) : NIL;
  675.     /* Stop when cur_match becomes <= limit. To simplify the code,
  676.      * we prevent matches with the string of window index 0.
  677.      */
  678.     Posf *prev = s->prev;
  679.     uInt wmask = s->w_mask;
  680.  
  681. #ifdef UNALIGNED_OK
  682.     /* Compare two bytes at a time. Note: this is not always beneficial.
  683.      * Try with and without -DUNALIGNED_OK to check.
  684.      */
  685.     register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
  686.     register ush scan_start = *(ushf*)scan;
  687.     register ush scan_end   = *(ushf*)(scan+best_len-1);
  688. #else
  689.     register Bytef *strend = s->window + s->strstart + MAX_MATCH;
  690.     register Byte scan_end1  = scan[best_len-1];
  691.     register Byte scan_end   = scan[best_len];
  692. #endif
  693.  
  694.     /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
  695.      * It is easy to get rid of this optimization if necessary.
  696.      */
  697.     Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
  698.  
  699.     /* Do not waste too much time if we already have a good match: */
  700.     if (s->prev_length >= s->good_match) {
  701.         chain_length >>= 2;
  702.     }
  703.     /* Do not look for matches beyond the end of the input. This is necessary
  704.      * to make deflate deterministic.
  705.      */
  706.     if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
  707.  
  708.     Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
  709.  
  710.     do {
  711.         Assert(cur_match < s->strstart, "no future");
  712.         match = s->window + cur_match;
  713.  
  714.         /* Skip to next match if the match length cannot increase
  715.          * or if the match length is less than 2:
  716.          */
  717. #if (defined(UNALIGNED_OK) && MAX_MATCH == 258)
  718.         /* This code assumes sizeof(unsigned short) == 2. Do not use
  719.          * UNALIGNED_OK if your compiler uses a different size.
  720.          */
  721.         if (*(ushf*)(match+best_len-1) != scan_end ||
  722.             *(ushf*)match != scan_start) continue;
  723.  
  724.         /* It is not necessary to compare scan[2] and match[2] since they are
  725.          * always equal when the other bytes match, given that the hash keys
  726.          * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at
  727.          * strstart+3, +5, ... up to strstart+257. We check for insufficient
  728.          * lookahead only every 4th comparison; the 128th check will be made
  729.          * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is
  730.          * necessary to put more guard bytes at the end of the window, or
  731.          * to check more often for insufficient lookahead.
  732.          */
  733.         Assert(scan[2] == match[2], "scan[2]?");
  734.         scan++, match++;
  735.         do {
  736.         } while (*(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
  737.                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
  738.                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
  739.                  *(ushf*)(scan+=2) == *(ushf*)(match+=2) &&
  740.                  scan < strend);
  741.         /* The funny "do {}" generates better code on most compilers */
  742.  
  743.         /* Here, scan <= window+strstart+257 */
  744.         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
  745.         if (*scan == *match) scan++;
  746.  
  747.         len = (MAX_MATCH - 1) - (int)(strend-scan);
  748.         scan = strend - (MAX_MATCH-1);
  749.  
  750. #else /* UNALIGNED_OK */
  751.  
  752.         if (match[best_len]   != scan_end  ||
  753.             match[best_len-1] != scan_end1 ||
  754.             *match            != *scan     ||
  755.             *++match          != scan[1])      continue;
  756.  
  757.         /* The check at best_len-1 can be removed because it will be made
  758.          * again later. (This heuristic is not always a win.)
  759.          * It is not necessary to compare scan[2] and match[2] since they
  760.          * are always equal when the other bytes match, given that
  761.          * the hash keys are equal and that HASH_BITS >= 8.
  762.          */
  763.         scan += 2, match++;
  764.         Assert(*scan == *match, "match[2]?");
  765.  
  766.         /* We check for insufficient lookahead only every 8th comparison;
  767.          * the 256th check will be made at strstart+258.
  768.          */
  769.         do {
  770.         } while (*++scan == *++match && *++scan == *++match &&
  771.                  *++scan == *++match && *++scan == *++match &&
  772.                  *++scan == *++match && *++scan == *++match &&
  773.                  *++scan == *++match && *++scan == *++match &&
  774.                  scan < strend);
  775.  
  776.         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
  777.  
  778.         len = MAX_MATCH - (int)(strend - scan);
  779.         scan = strend - MAX_MATCH;
  780.  
  781. #endif /* UNALIGNED_OK */
  782.  
  783.         if (len > best_len) {
  784.             s->match_start = cur_match;
  785.             best_len = len;
  786.             if (len >= nice_match) break;
  787. #ifdef UNALIGNED_OK
  788.             scan_end = *(ushf*)(scan+best_len-1);
  789. #else
  790.             scan_end1  = scan[best_len-1];
  791.             scan_end   = scan[best_len];
  792. #endif
  793.         }
  794.     } while ((cur_match = prev[cur_match & wmask]) > limit
  795.              && --chain_length != 0);
  796.  
  797.     if ((uInt)best_len <= s->lookahead) return best_len;
  798.     return s->lookahead;
  799. }
  800. #endif /* ASMV */
  801.  
  802. #ifdef DEBUG
  803. /* ===========================================================================
  804.  * Check that the match at match_start is indeed a match.
  805.  */
  806. local void check_match(s, start, match, length)
  807.     deflate_state *s;
  808.     IPos start, match;
  809.     int length;
  810. {
  811.     /* check that the match is indeed a match */
  812.     if (zmemcmp((charf *)s->window + match,
  813.                 (charf *)s->window + start, length) != EQUAL) {
  814.         fprintf(stderr, " start %u, match %u, length %d\n",
  815.         start, match, length);
  816.         do {
  817.         fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
  818.     } while (--length != 0);
  819.         z_error("invalid match");
  820.     }
  821.     if (verbose > 1) {
  822.         fprintf(stderr,"\\[%d,%d]", start-match, length);
  823.         do { putc(s->window[start++], stderr); } while (--length != 0);
  824.     }
  825. }
  826. #else
  827. #  define check_match(s, start, match, length)
  828. #endif
  829.  
  830. /* ===========================================================================
  831.  * Fill the window when the lookahead becomes insufficient.
  832.  * Updates strstart and lookahead.
  833.  *
  834.  * IN assertion: lookahead < MIN_LOOKAHEAD
  835.  * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
  836.  *    At least one byte has been read, or avail_in == 0; reads are
  837.  *    performed for at least two bytes (required for the zip translate_eol
  838.  *    option -- not supported here).
  839.  */
  840. local void fill_window(s)
  841.     deflate_state *s;
  842. {
  843.     register unsigned n, m;
  844.     register Posf *p;
  845.     unsigned more;    /* Amount of free space at the end of the window. */
  846.     uInt wsize = s->w_size;
  847.  
  848.     do {
  849.         more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
  850.  
  851.         /* Deal with !@#$% 64K limit: */
  852.         if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
  853.             more = wsize;
  854.  
  855.         } else if (more == (unsigned)(-1)) {
  856.             /* Very unlikely, but possible on 16 bit machine if strstart == 0
  857.              * and lookahead == 1 (input done one byte at time)
  858.              */
  859.             more--;
  860.  
  861.         /* If the window is almost full and there is insufficient lookahead,
  862.          * move the upper half to the lower one to make room in the upper half.
  863.          */
  864.         } else if (s->strstart >= wsize+MAX_DIST(s)) {
  865.  
  866.             zmemcpy((charf *)s->window, (charf *)s->window+wsize,
  867.                    (unsigned)wsize);
  868.             s->match_start -= wsize;
  869.             s->strstart    -= wsize; /* we now have strstart >= MAX_DIST */
  870.  
  871.             s->block_start -= (long) wsize;
  872.  
  873.             /* Slide the hash table (could be avoided with 32 bit values
  874.                at the expense of memory usage):
  875.              */
  876.             n = s->hash_size;
  877.             p = &s->head[n];
  878.             do {
  879.                 m = *--p;
  880.                 *p = (Pos)(m >= wsize ? m-wsize : NIL);
  881.             } while (--n);
  882.  
  883.             n = wsize;
  884.             p = &s->prev[n];
  885.             do {
  886.                 m = *--p;
  887.                 *p = (Pos)(m >= wsize ? m-wsize : NIL);
  888.                 /* If n is not on any hash chain, prev[n] is garbage but
  889.                  * its value will never be used.
  890.                  */
  891.             } while (--n);
  892.  
  893.             more += wsize;
  894.         }
  895.         if (s->strm->avail_in == 0) return;
  896.  
  897.         /* If there was no sliding:
  898.          *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
  899.          *    more == window_size - lookahead - strstart
  900.          * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
  901.          * => more >= window_size - 2*WSIZE + 2
  902.          * In the BIG_MEM or MMAP case (not yet supported),
  903.          *   window_size == input_size + MIN_LOOKAHEAD  &&
  904.          *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
  905.          * Otherwise, window_size == 2*WSIZE so more >= 2.
  906.          * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
  907.          */
  908.         Assert(more >= 2, "more < 2");
  909.  
  910.         n = read_buf(s->strm, (charf *)s->window + s->strstart + s->lookahead,
  911.                      more);
  912.         s->lookahead += n;
  913.  
  914.         /* Initialize the hash value now that we have some input: */
  915.         if (s->lookahead >= MIN_MATCH) {
  916.             s->ins_h = s->window[s->strstart];
  917.             UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
  918. #if MIN_MATCH != 3
  919.             Call UPDATE_HASH() MIN_MATCH-3 more times
  920. #endif
  921.         }
  922.         /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
  923.          * but this is not important since only literal bytes will be emitted.
  924.          */
  925.  
  926.     } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0);
  927. }
  928.  
  929. /* ===========================================================================
  930.  * Flush the current block, with given end-of-file flag.
  931.  * IN assertion: strstart is set to the end of the current match.
  932.  */
  933. #define FLUSH_BLOCK_ONLY(s, eof) { \
  934.    _tr_flush_block(s, (s->block_start >= 0L ? \
  935.                    (charf *)&s->window[(unsigned)s->block_start] : \
  936.                    (charf *)Z_NULL), \
  937.         (ulg)((long)s->strstart - s->block_start), \
  938.         (eof)); \
  939.    s->block_start = s->strstart; \
  940.    flush_pending(s->strm); \
  941.    Tracev((stderr,"[FLUSH]")); \
  942. }
  943.  
  944. /* Same but force premature exit if necessary. */
  945. #define FLUSH_BLOCK(s, eof) { \
  946.    FLUSH_BLOCK_ONLY(s, eof); \
  947.    if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \
  948. }
  949.  
  950. /* ===========================================================================
  951.  * Copy without compression as much as possible from the input stream, return
  952.  * the current block state.
  953.  * This function does not insert new strings in the dictionary since
  954.  * uncompressible data is probably not useful. This function is used
  955.  * only for the level=0 compression option.
  956.  * NOTE: this function should be optimized to avoid extra copying.
  957.  */
  958. local block_state deflate_stored(s, flush)
  959.     deflate_state *s;
  960.     int flush;
  961. {
  962.     for (;;) {
  963.         /* Fill the window as much as possible: */
  964.         if (s->lookahead <= 1) {
  965.  
  966.             Assert(s->strstart < s->w_size+MAX_DIST(s) ||
  967.            s->block_start >= (long)s->w_size, "slide too late");
  968.  
  969.             fill_window(s);
  970.             if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more;
  971.  
  972.             if (s->lookahead == 0) break; /* flush the current block */
  973.         }
  974.     Assert(s->block_start >= 0L, "block gone");
  975.  
  976.     s->strstart += s->lookahead;
  977.     s->lookahead = 0;
  978.  
  979.         /* Stored blocks are limited to 0xffff bytes: */
  980.         if (s->strstart == 0 || s->strstart > 0xfffe) {
  981.         /* strstart == 0 is possible when wraparound on 16-bit machine */
  982.         s->lookahead = s->strstart - 0xffff;
  983.         s->strstart = 0xffff;
  984.     }
  985.  
  986.     /* Emit a stored block if it is large enough: */
  987.         if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
  988.             FLUSH_BLOCK(s, 0);
  989.     }
  990.     }
  991.     FLUSH_BLOCK(s, flush == Z_FINISH);
  992.     return flush == Z_FINISH ? finish_done : block_done;
  993. }
  994.  
  995. /* ===========================================================================
  996.  * Compress as much as possible from the input stream, return the current
  997.  * block state.
  998.  * This function does not perform lazy evaluation of matches and inserts
  999.  * new strings in the dictionary only for unmatched strings or for short
  1000.  * matches. It is used only for the fast compression options.
  1001.  */
  1002. local block_state deflate_fast(s, flush)
  1003.     deflate_state *s;
  1004.     int flush;
  1005. {
  1006.     IPos hash_head = NIL; /* head of the hash chain */
  1007.     int bflush;           /* set if current block must be flushed */
  1008.  
  1009.     for (;;) {
  1010.         /* Make sure that we always have enough lookahead, except
  1011.          * at the end of the input file. We need MAX_MATCH bytes
  1012.          * for the next match, plus MIN_MATCH bytes to insert the
  1013.          * string following the next match.
  1014.          */
  1015.         if (s->lookahead < MIN_LOOKAHEAD) {
  1016.             fill_window(s);
  1017.             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
  1018.             return need_more;
  1019.         }
  1020.             if (s->lookahead == 0) break; /* flush the current block */
  1021.         }
  1022.  
  1023.         /* Insert the string window[strstart .. strstart+2] in the
  1024.          * dictionary, and set hash_head to the head of the hash chain:
  1025.          */
  1026.         if (s->lookahead >= MIN_MATCH) {
  1027.             INSERT_STRING(s, s->strstart, hash_head);
  1028.         }
  1029.  
  1030.         /* Find the longest match, discarding those <= prev_length.
  1031.          * At this point we have always match_length < MIN_MATCH
  1032.          */
  1033.         if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
  1034.             /* To simplify the code, we prevent matches with the string
  1035.              * of window index 0 (in particular we have to avoid a match
  1036.              * of the string with itself at the start of the input file).
  1037.              */
  1038.             if (s->strategy != Z_HUFFMAN_ONLY) {
  1039.                 s->match_length = longest_match (s, hash_head);
  1040.             }
  1041.             /* longest_match() sets match_start */
  1042.         }
  1043.         if (s->match_length >= MIN_MATCH) {
  1044.             check_match(s, s->strstart, s->match_start, s->match_length);
  1045.  
  1046.             bflush = _tr_tally(s, s->strstart - s->match_start,
  1047.                                s->match_length - MIN_MATCH);
  1048.  
  1049.             s->lookahead -= s->match_length;
  1050.  
  1051.             /* Insert new strings in the hash table only if the match length
  1052.              * is not too large. This saves time but degrades compression.
  1053.              */
  1054.             if (s->match_length <= s->max_insert_length &&
  1055.                 s->lookahead >= MIN_MATCH) {
  1056.                 s->match_length--; /* string at strstart already in hash table */
  1057.                 do {
  1058.                     s->strstart++;
  1059.                     INSERT_STRING(s, s->strstart, hash_head);
  1060.                     /* strstart never exceeds WSIZE-MAX_MATCH, so there are
  1061.                      * always MIN_MATCH bytes ahead.
  1062.                      */
  1063.                 } while (--s->match_length != 0);
  1064.                 s->strstart++; 
  1065.             } else {
  1066.                 s->strstart += s->match_length;
  1067.                 s->match_length = 0;
  1068.                 s->ins_h = s->window[s->strstart];
  1069.                 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
  1070. #if MIN_MATCH != 3
  1071.                 Call UPDATE_HASH() MIN_MATCH-3 more times
  1072. #endif
  1073.                 /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
  1074.                  * matter since it will be recomputed at next deflate call.
  1075.                  */
  1076.             }
  1077.         } else {
  1078.             /* No match, output a literal byte */
  1079.             Tracevv((stderr,"%c", s->window[s->strstart]));
  1080.             bflush = _tr_tally (s, 0, s->window[s->strstart]);
  1081.             s->lookahead--;
  1082.             s->strstart++; 
  1083.         }
  1084.         if (bflush) FLUSH_BLOCK(s, 0);
  1085.     }
  1086.     FLUSH_BLOCK(s, flush == Z_FINISH);
  1087.     return flush == Z_FINISH ? finish_done : block_done;
  1088. }
  1089.  
  1090. /* ===========================================================================
  1091.  * Same as above, but achieves better compression. We use a lazy
  1092.  * evaluation for matches: a match is finally adopted only if there is
  1093.  * no better match at the next window position.
  1094.  */
  1095. local block_state deflate_slow(s, flush)
  1096.     deflate_state *s;
  1097.     int flush;
  1098. {
  1099.     IPos hash_head = NIL;    /* head of hash chain */
  1100.     int bflush;              /* set if current block must be flushed */
  1101.  
  1102.     /* Process the input block. */
  1103.     for (;;) {
  1104.         /* Make sure that we always have enough lookahead, except
  1105.          * at the end of the input file. We need MAX_MATCH bytes
  1106.          * for the next match, plus MIN_MATCH bytes to insert the
  1107.          * string following the next match.
  1108.          */
  1109.         if (s->lookahead < MIN_LOOKAHEAD) {
  1110.             fill_window(s);
  1111.             if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) {
  1112.             return need_more;
  1113.         }
  1114.             if (s->lookahead == 0) break; /* flush the current block */
  1115.         }
  1116.  
  1117.         /* Insert the string window[strstart .. strstart+2] in the
  1118.          * dictionary, and set hash_head to the head of the hash chain:
  1119.          */
  1120.         if (s->lookahead >= MIN_MATCH) {
  1121.             INSERT_STRING(s, s->strstart, hash_head);
  1122.         }
  1123.  
  1124.         /* Find the longest match, discarding those <= prev_length.
  1125.          */
  1126.         s->prev_length = s->match_length, s->prev_match = s->match_start;
  1127.         s->match_length = MIN_MATCH-1;
  1128.  
  1129.         if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
  1130.             s->strstart - hash_head <= MAX_DIST(s)) {
  1131.             /* To simplify the code, we prevent matches with the string
  1132.              * of window index 0 (in particular we have to avoid a match
  1133.              * of the string with itself at the start of the input file).
  1134.              */
  1135.             if (s->strategy != Z_HUFFMAN_ONLY) {
  1136.                 s->match_length = longest_match (s, hash_head);
  1137.             }
  1138.             /* longest_match() sets match_start */
  1139.  
  1140.             if (s->match_length <= 5 && (s->strategy == Z_FILTERED ||
  1141.                  (s->match_length == MIN_MATCH &&
  1142.                   s->strstart - s->match_start > TOO_FAR))) {
  1143.  
  1144.                 /* If prev_match is also MIN_MATCH, match_start is garbage
  1145.                  * but we will ignore the current match anyway.
  1146.                  */
  1147.                 s->match_length = MIN_MATCH-1;
  1148.             }
  1149.         }
  1150.         /* If there was a match at the previous step and the current
  1151.          * match is not better, output the previous match:
  1152.          */
  1153.         if (s->prev_length >= MIN_MATCH && s->match_length <= s->prev_length) {
  1154.             uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
  1155.             /* Do not insert strings in hash table beyond this. */
  1156.  
  1157.             check_match(s, s->strstart-1, s->prev_match, s->prev_length);
  1158.  
  1159.             bflush = _tr_tally(s, s->strstart -1 - s->prev_match,
  1160.                                s->prev_length - MIN_MATCH);
  1161.  
  1162.             /* Insert in hash table all strings up to the end of the match.
  1163.              * strstart-1 and strstart are already inserted. If there is not
  1164.              * enough lookahead, the last two strings are not inserted in
  1165.              * the hash table.
  1166.              */
  1167.             s->lookahead -= s->prev_length-1;
  1168.             s->prev_length -= 2;
  1169.             do {
  1170.                 if (++s->strstart <= max_insert) {
  1171.                     INSERT_STRING(s, s->strstart, hash_head);
  1172.                 }
  1173.             } while (--s->prev_length != 0);
  1174.             s->match_available = 0;
  1175.             s->match_length = MIN_MATCH-1;
  1176.             s->strstart++;
  1177.  
  1178.             if (bflush) FLUSH_BLOCK(s, 0);
  1179.  
  1180.         } else if (s->match_available) {
  1181.             /* If there was no match at the previous position, output a
  1182.              * single literal. If there was a match but the current match
  1183.              * is longer, truncate the previous match to a single literal.
  1184.              */
  1185.             Tracevv((stderr,"%c", s->window[s->strstart-1]));
  1186.             if (_tr_tally (s, 0, s->window[s->strstart-1])) {
  1187.                 FLUSH_BLOCK_ONLY(s, 0);
  1188.             }
  1189.             s->strstart++;
  1190.             s->lookahead--;
  1191.             if (s->strm->avail_out == 0) return need_more;
  1192.         } else {
  1193.             /* There is no previous match to compare with, wait for
  1194.              * the next step to decide.
  1195.              */
  1196.             s->match_available = 1;
  1197.             s->strstart++;
  1198.             s->lookahead--;
  1199.         }
  1200.     }
  1201.     Assert (flush != Z_NO_FLUSH, "no flush?");
  1202.     if (s->match_available) {
  1203.         Tracevv((stderr,"%c", s->window[s->strstart-1]));
  1204.         _tr_tally (s, 0, s->window[s->strstart-1]);
  1205.         s->match_available = 0;
  1206.     }
  1207.     FLUSH_BLOCK(s, flush == Z_FINISH);
  1208.     return flush == Z_FINISH ? finish_done : block_done;
  1209. }
  1210.