deflate.c
上传用户:jnfxsk
上传日期:2022-06-16
资源大小:3675k
文件大小:55k
源码类别:

游戏引擎

开发平台:

Visual C++

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