deflate.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:43k
源码类别:

CA认证

开发平台:

WINDOWS

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