deflate.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:49k
源码类别:

Symbian

开发平台:

C/C++

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