DEFLATE.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:44k
源码类别:

图片显示

开发平台:

Visual C++

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