deflate.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:44k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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