deflate.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:64k
源码类别:

其他游戏

开发平台:

Visual C++

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