pvpgn_deflate.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:46k
源码类别:

MySQL数据库

开发平台:

Visual C++

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