home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / modules / zlib / src / trees.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  42.2 KB  |  1,144 lines

  1. /* trees.c -- output deflated data using Huffman coding
  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 uses several Huffman trees. The more
  10.  *      common source values are represented by shorter bit sequences.
  11.  *
  12.  *      Each code tree is stored in a compressed form which is itself
  13.  * a Huffman encoding of the lengths of all the code strings (in
  14.  * ascending order by source values).  The actual code strings are
  15.  * reconstructed from the lengths in the inflate process, as described
  16.  * in the deflate specification.
  17.  *
  18.  *  REFERENCES
  19.  *
  20.  *      Deutsch, L.P.,"'Deflate' Compressed Data Format Specification".
  21.  *      Available in ftp.uu.net:/pub/archiving/zip/doc/deflate-1.1.doc
  22.  *
  23.  *      Storer, James A.
  24.  *          Data Compression:  Methods and Theory, pp. 49-50.
  25.  *          Computer Science Press, 1988.  ISBN 0-7167-8156-5.
  26.  *
  27.  *      Sedgewick, R.
  28.  *          Algorithms, p290.
  29.  *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
  30.  */
  31.  
  32. /* $Id: trees.c,v 3.1 1998/03/28 03:36:16 ltabb Exp $ */
  33.  
  34. #include "deflate.h"
  35.  
  36. #ifdef DEBUG
  37. #  include <ctype.h>
  38. #endif
  39.  
  40. /* ===========================================================================
  41.  * Constants
  42.  */
  43.  
  44. #define MAX_BL_BITS 7
  45. /* Bit length codes must not exceed MAX_BL_BITS bits */
  46.  
  47. #define END_BLOCK 256
  48. /* end of block literal code */
  49.  
  50. #define REP_3_6      16
  51. /* repeat previous bit length 3-6 times (2 bits of repeat count) */
  52.  
  53. #define REPZ_3_10    17
  54. /* repeat a zero length 3-10 times  (3 bits of repeat count) */
  55.  
  56. #define REPZ_11_138  18
  57. /* repeat a zero length 11-138 times  (7 bits of repeat count) */
  58.  
  59. local int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
  60.    = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0};
  61.  
  62. local int extra_dbits[D_CODES] /* extra bits for each distance code */
  63.    = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
  64.  
  65. local int extra_blbits[BL_CODES]/* extra bits for each bit length code */
  66.    = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7};
  67.  
  68. local uch bl_order[BL_CODES]
  69.    = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15};
  70. /* The lengths of the bit length codes are sent in order of decreasing
  71.  * probability, to avoid transmitting the lengths for unused bit length codes.
  72.  */
  73.  
  74. #define Buf_size (8 * 2*sizeof(char))
  75. /* Number of bits used within bi_buf. (bi_buf might be implemented on
  76.  * more than 16 bits on some systems.)
  77.  */
  78.  
  79. /* ===========================================================================
  80.  * Local data. These are initialized only once.
  81.  */
  82.  
  83. local ct_data static_ltree[L_CODES+2];
  84. /* The static literal tree. Since the bit lengths are imposed, there is no
  85.  * need for the L_CODES extra codes used during heap construction. However
  86.  * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
  87.  * below).
  88.  */
  89.  
  90. local ct_data static_dtree[D_CODES];
  91. /* The static distance tree. (Actually a trivial tree since all codes use
  92.  * 5 bits.)
  93.  */
  94.  
  95. local uch dist_code[512];
  96. /* distance codes. The first 256 values correspond to the distances
  97.  * 3 .. 258, the last 256 values correspond to the top 8 bits of
  98.  * the 15 bit distances.
  99.  */
  100.  
  101. local uch length_code[MAX_MATCH-MIN_MATCH+1];
  102. /* length code for each normalized match length (0 == MIN_MATCH) */
  103.  
  104. local int base_length[LENGTH_CODES];
  105. /* First normalized length for each code (0 = MIN_MATCH) */
  106.  
  107. local int base_dist[D_CODES];
  108. /* First normalized distance for each code (0 = distance of 1) */
  109.  
  110. struct static_tree_desc_s {
  111.     ct_data *static_tree;        /* static tree or NULL */
  112.     intf    *extra_bits;         /* extra bits for each code or NULL */
  113.     int     extra_base;          /* base index for extra_bits */
  114.     int     elems;               /* max number of elements in the tree */
  115.     int     max_length;          /* max bit length for the codes */
  116. };
  117.  
  118. local static_tree_desc  static_l_desc =
  119. {static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS};
  120.  
  121. local static_tree_desc  static_d_desc =
  122. {static_dtree, extra_dbits, 0,          D_CODES, MAX_BITS};
  123.  
  124. local static_tree_desc  static_bl_desc =
  125. {(ct_data *)0, extra_blbits, 0,      BL_CODES, MAX_BL_BITS};
  126.  
  127. /* ===========================================================================
  128.  * Local (static) routines in this file.
  129.  */
  130.  
  131. local void tr_static_init OF((void));
  132. local void init_block     OF((deflate_state *s));
  133. local void pqdownheap     OF((deflate_state *s, ct_data *tree, int k));
  134. local void gen_bitlen     OF((deflate_state *s, tree_desc *desc));
  135. local void gen_codes      OF((ct_data *tree, int max_code, ushf *bl_count));
  136. local void build_tree     OF((deflate_state *s, tree_desc *desc));
  137. local void scan_tree      OF((deflate_state *s, ct_data *tree, int max_code));
  138. local void send_tree      OF((deflate_state *s, ct_data *tree, int max_code));
  139. local int  build_bl_tree  OF((deflate_state *s));
  140. local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
  141.                               int blcodes));
  142. local void compress_block OF((deflate_state *s, ct_data *ltree,
  143.                               ct_data *dtree));
  144. local void set_data_type  OF((deflate_state *s));
  145. local unsigned bi_reverse OF((unsigned value, int length));
  146. local void bi_windup      OF((deflate_state *s));
  147. local void bi_flush       OF((deflate_state *s));
  148. local void copy_block     OF((deflate_state *s, charf *buf, unsigned len,
  149.                               int header));
  150.  
  151. #ifndef DEBUG_NEVER
  152. #  define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)
  153.    /* Send a code of the given tree. c and tree must not have side effects */
  154.  
  155. #else /* DEBUG */
  156. #  define send_code(s, c, tree) \
  157.      { if (verbose>2) fprintf(stderr,"\ncd %3d ",(c)); \
  158.        send_bits(s, tree[c].Code, tree[c].Len); }
  159. #endif
  160.  
  161. #define d_code(dist) \
  162.    ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])
  163. /* Mapping from a distance to a distance code. dist is the distance - 1 and
  164.  * must not have side effects. dist_code[256] and dist_code[257] are never
  165.  * used.
  166.  */
  167.  
  168. /* ===========================================================================
  169.  * Output a short LSB first on the stream.
  170.  * IN assertion: there is enough room in pendingBuf.
  171.  */
  172. #define put_short(s, w) { \
  173.     put_byte(s, (uch)((w) & 0xff)); \
  174.     put_byte(s, (uch)((ush)(w) >> 8)); \
  175. }
  176.  
  177. /* ===========================================================================
  178.  * Send a value on a given number of bits.
  179.  * IN assertion: length <= 16 and value fits in length bits.
  180.  */
  181. #ifdef DEBUG
  182. local void send_bits      OF((deflate_state *s, int value, int length));
  183.  
  184. local void send_bits(s, value, length)
  185.     deflate_state *s;
  186.     int value;  /* value to send */
  187.     int length; /* number of bits */
  188. {
  189.     Tracevv((stderr," l %2d v %4x ", length, value));
  190.     Assert(length > 0 && length <= 15, "invalid length");
  191.     s->bits_sent += (ulg)length;
  192.  
  193.     /* If not enough room in bi_buf, use (valid) bits from bi_buf and
  194.      * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
  195.      * unused bits in value.
  196.      */
  197.     if (s->bi_valid > (int)Buf_size - length) {
  198.         s->bi_buf |= (value << s->bi_valid);
  199.         put_short(s, s->bi_buf);
  200.         s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
  201.         s->bi_valid += length - Buf_size;
  202.     } else {
  203.         s->bi_buf |= value << s->bi_valid;
  204.         s->bi_valid += length;
  205.     }
  206. }
  207. #else /* !DEBUG */
  208.  
  209. #define send_bits(s, value, length) \
  210. { int len = length;\
  211.   if (s->bi_valid > (int)Buf_size - len) {\
  212.     int val = value;\
  213.     s->bi_buf |= (val << s->bi_valid);\
  214.     put_short(s, s->bi_buf);\
  215.     s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\
  216.     s->bi_valid += len - Buf_size;\
  217.   } else {\
  218.     s->bi_buf |= (value) << s->bi_valid;\
  219.     s->bi_valid += len;\
  220.   }\
  221. }
  222. #endif /* DEBUG */
  223.  
  224.  
  225. #ifndef MAX
  226. #define MAX(a,b) (a >= b ? a : b)
  227. #endif
  228. /* the arguments must not have side effects */
  229.  
  230. /* ===========================================================================
  231.  * Initialize the various 'constant' tables. In a multi-threaded environment,
  232.  * this function may be called by two threads concurrently, but this is
  233.  * harmless since both invocations do exactly the same thing.
  234.  */
  235. local void tr_static_init()
  236. {
  237.     static int static_init_done = 0;
  238.     int n;        /* iterates over tree elements */
  239.     int bits;     /* bit counter */
  240.     int length;   /* length value */
  241.     int code;     /* code value */
  242.     int dist;     /* distance index */
  243.     ush bl_count[MAX_BITS+1];
  244.     /* number of codes at each bit length for an optimal tree */
  245.  
  246.     if (static_init_done) return;
  247.  
  248.     /* Initialize the mapping length (0..255) -> length code (0..28) */
  249.     length = 0;
  250.     for (code = 0; code < LENGTH_CODES-1; code++) {
  251.         base_length[code] = length;
  252.         for (n = 0; n < (1<<extra_lbits[code]); n++) {
  253.             length_code[length++] = (uch)code;
  254.         }
  255.     }
  256.     Assert (length == 256, "tr_static_init: length != 256");
  257.     /* Note that the length 255 (match length 258) can be represented
  258.      * in two different ways: code 284 + 5 bits or code 285, so we
  259.      * overwrite length_code[255] to use the best encoding:
  260.      */
  261.     length_code[length-1] = (uch)code;
  262.  
  263.     /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
  264.     dist = 0;
  265.     for (code = 0 ; code < 16; code++) {
  266.         base_dist[code] = dist;
  267.         for (n = 0; n < (1<<extra_dbits[code]); n++) {
  268.             dist_code[dist++] = (uch)code;
  269.         }
  270.     }
  271.     Assert (dist == 256, "tr_static_init: dist != 256");
  272.     dist >>= 7; /* from now on, all distances are divided by 128 */
  273.     for ( ; code < D_CODES; code++) {
  274.         base_dist[code] = dist << 7;
  275.         for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {
  276.             dist_code[256 + dist++] = (uch)code;
  277.         }
  278.     }
  279.     Assert (dist == 256, "tr_static_init: 256+dist != 512");
  280.  
  281.     /* Construct the codes of the static literal tree */
  282.     for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;
  283.     n = 0;
  284.     while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;
  285.     while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;
  286.     while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;
  287.     while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;
  288.     /* Codes 286 and 287 do not exist, but we must include them in the
  289.      * tree construction to get a canonical Huffman tree (longest code
  290.      * all ones)
  291.      */
  292.     gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);
  293.  
  294.     /* The static distance tree is trivial: */
  295.     for (n = 0; n < D_CODES; n++) {
  296.         static_dtree[n].Len = 5;
  297.         static_dtree[n].Code = bi_reverse((unsigned)n, 5);
  298.     }
  299.     static_init_done = 1;
  300. }
  301.  
  302. /* ===========================================================================
  303.  * Initialize the tree data structures for a new zlib stream.
  304.  */
  305. void _tr_init(s)
  306.     deflate_state *s;
  307. {
  308.     tr_static_init();
  309.  
  310.     s->compressed_len = 0L;
  311.  
  312.     s->l_desc.dyn_tree = s->dyn_ltree;
  313.     s->l_desc.stat_desc = &static_l_desc;
  314.  
  315.     s->d_desc.dyn_tree = s->dyn_dtree;
  316.     s->d_desc.stat_desc = &static_d_desc;
  317.  
  318.     s->bl_desc.dyn_tree = s->bl_tree;
  319.     s->bl_desc.stat_desc = &static_bl_desc;
  320.  
  321.     s->bi_buf = 0;
  322.     s->bi_valid = 0;
  323.     s->last_eob_len = 8; /* enough lookahead for inflate */
  324. #ifdef DEBUG
  325.     s->bits_sent = 0L;
  326. #endif
  327.  
  328.     /* Initialize the first block of the first file: */
  329.     init_block(s);
  330. }
  331.  
  332. /* ===========================================================================
  333.  * Initialize a new block.
  334.  */
  335. local void init_block(s)
  336.     deflate_state *s;
  337. {
  338.     int n; /* iterates over tree elements */
  339.  
  340.     /* Initialize the trees. */
  341.     for (n = 0; n < L_CODES;  n++) s->dyn_ltree[n].Freq = 0;
  342.     for (n = 0; n < D_CODES;  n++) s->dyn_dtree[n].Freq = 0;
  343.     for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;
  344.  
  345.     s->dyn_ltree[END_BLOCK].Freq = 1;
  346.     s->opt_len = s->static_len = 0L;
  347.     s->last_lit = s->matches = 0;
  348. }
  349.  
  350. #define SMALLEST 1
  351. /* Index within the heap array of least frequent node in the Huffman tree */
  352.  
  353.  
  354. /* ===========================================================================
  355.  * Remove the smallest element from the heap and recreate the heap with
  356.  * one less element. Updates heap and heap_len.
  357.  */
  358. #define pqremove(s, tree, top) \
  359. {\
  360.     top = s->heap[SMALLEST]; \
  361.     s->heap[SMALLEST] = s->heap[s->heap_len--]; \
  362.     pqdownheap(s, tree, SMALLEST); \
  363. }
  364.  
  365. /* ===========================================================================
  366.  * Compares to subtrees, using the tree depth as tie breaker when
  367.  * the subtrees have equal frequency. This minimizes the worst case length.
  368.  */
  369. #define smaller(tree, n, m, depth) \
  370.    (tree[n].Freq < tree[m].Freq || \
  371.    (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))
  372.  
  373. /* ===========================================================================
  374.  * Restore the heap property by moving down the tree starting at node k,
  375.  * exchanging a node with the smallest of its two sons if necessary, stopping
  376.  * when the heap property is re-established (each father smaller than its
  377.  * two sons).
  378.  */
  379. local void pqdownheap(s, tree, k)
  380.     deflate_state *s;
  381.     ct_data *tree;  /* the tree to restore */
  382.     int k;               /* node to move down */
  383. {
  384.     int v = s->heap[k];
  385.     int j = k << 1;  /* left son of k */
  386.     while (j <= s->heap_len) {
  387.         /* Set j to the smallest of the two sons: */
  388.         if (j < s->heap_len &&
  389.             smaller(tree, s->heap[j+1], s->heap[j], s->depth)) {
  390.             j++;
  391.         }
  392.         /* Exit if v is smaller than both sons */
  393.         if (smaller(tree, v, s->heap[j], s->depth)) break;
  394.  
  395.         /* Exchange v with the smallest son */
  396.         s->heap[k] = s->heap[j];  k = j;
  397.  
  398.         /* And continue down the tree, setting j to the left son of k */
  399.         j <<= 1;
  400.     }
  401.     s->heap[k] = v;
  402. }
  403.  
  404. /* ===========================================================================
  405.  * Compute the optimal bit lengths for a tree and update the total bit length
  406.  * for the current block.
  407.  * IN assertion: the fields freq and dad are set, heap[heap_max] and
  408.  *    above are the tree nodes sorted by increasing frequency.
  409.  * OUT assertions: the field len is set to the optimal bit length, the
  410.  *     array bl_count contains the frequencies for each bit length.
  411.  *     The length opt_len is updated; static_len is also updated if stree is
  412.  *     not null.
  413.  */
  414. local void gen_bitlen(s, desc)
  415.     deflate_state *s;
  416.     tree_desc *desc;    /* the tree descriptor */
  417. {
  418.     ct_data *tree  = desc->dyn_tree;
  419.     int max_code   = desc->max_code;
  420.     ct_data *stree = desc->stat_desc->static_tree;
  421.     intf *extra    = desc->stat_desc->extra_bits;
  422.     int base       = desc->stat_desc->extra_base;
  423.     int max_length = desc->stat_desc->max_length;
  424.     int h;              /* heap index */
  425.     int n, m;           /* iterate over the tree elements */
  426.     int bits;           /* bit length */
  427.     int xbits;          /* extra bits */
  428.     ush f;              /* frequency */
  429.     int overflow = 0;   /* number of elements with bit length too large */
  430.  
  431.     for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
  432.  
  433.     /* In a first pass, compute the optimal bit lengths (which may
  434.      * overflow in the case of the bit length tree).
  435.      */
  436.     tree[s->heap[s->heap_max]].Len = 0; /* root of the heap */
  437.  
  438.     for (h = s->heap_max+1; h < HEAP_SIZE; h++) {
  439.         n = s->heap[h];
  440.         bits = tree[tree[n].Dad].Len + 1;
  441.         if (bits > max_length) bits = max_length, overflow++;
  442.         tree[n].Len = (ush)bits;
  443.         /* We overwrite tree[n].Dad which is no longer needed */
  444.  
  445.         if (n > max_code) continue; /* not a leaf node */
  446.  
  447.         s->bl_count[bits]++;
  448.         xbits = 0;
  449.         if (n >= base) xbits = extra[n-base];
  450.         f = tree[n].Freq;
  451.         s->opt_len += (ulg)f * (bits + xbits);
  452.         if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
  453.     }
  454.     if (overflow == 0) return;
  455.  
  456.     Trace((stderr,"\nbit length overflow\n"));
  457.     /* This happens for example on obj2 and pic of the Calgary corpus */
  458.  
  459.     /* Find the first bit length which could increase: */
  460.     do {
  461.         bits = max_length-1;
  462.         while (s->bl_count[bits] == 0) bits--;
  463.         s->bl_count[bits]--;      /* move one leaf down the tree */
  464.         s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
  465.         s->bl_count[max_length]--;
  466.         /* The brother of the overflow item also moves one step up,
  467.          * but this does not affect bl_count[max_length]
  468.          */
  469.         overflow -= 2;
  470.     } while (overflow > 0);
  471.  
  472.     /* Now recompute all bit lengths, scanning in increasing frequency.
  473.      * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
  474.      * lengths instead of fixing only the wrong ones. This idea is taken
  475.      * from 'ar' written by Haruhiko Okumura.)
  476.      */
  477.     for (bits = max_length; bits != 0; bits--) {
  478.         n = s->bl_count[bits];
  479.         while (n != 0) {
  480.             m = s->heap[--h];
  481.             if (m > max_code) continue;
  482.             if (tree[m].Len != (unsigned) bits) {
  483.                 Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
  484.                 s->opt_len += ((long)bits - (long)tree[m].Len)
  485.                               *(long)tree[m].Freq;
  486.                 tree[m].Len = (ush)bits;
  487.             }
  488.             n--;
  489.         }
  490.     }
  491. }
  492.  
  493. /* ===========================================================================
  494.  * Generate the codes for a given tree and bit counts (which need not be
  495.  * optimal).
  496.  * IN assertion: the array bl_count contains the bit length statistics for
  497.  * the given tree and the field len is set for all tree elements.
  498.  * OUT assertion: the field code is set for all tree elements of non
  499.  *     zero code length.
  500.  */
  501. local void gen_codes (tree, max_code, bl_count)
  502.     ct_data *tree;             /* the tree to decorate */
  503.     int max_code;              /* largest code with non zero frequency */
  504.     ushf *bl_count;            /* number of codes at each bit length */
  505. {
  506.     ush next_code[MAX_BITS+1]; /* next code value for each bit length */
  507.     ush code = 0;              /* running code value */
  508.     int bits;                  /* bit index */
  509.     int n;                     /* code index */
  510.  
  511.     /* The distribution counts are first used to generate the code values
  512.      * without bit reversal.
  513.      */
  514.     for (bits = 1; bits <= MAX_BITS; bits++) {
  515.         next_code[bits] = code = (code + bl_count[bits-1]) << 1;
  516.     }
  517.     /* Check that the bit counts in bl_count are consistent. The last code
  518.      * must be all ones.
  519.      */
  520.     Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
  521.             "inconsistent bit counts");
  522.     Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
  523.  
  524.     for (n = 0;  n <= max_code; n++) {
  525.         int len = tree[n].Len;
  526.         if (len == 0) continue;
  527.         /* Now reverse the bits */
  528.         tree[n].Code = bi_reverse(next_code[len]++, len);
  529.  
  530.         Tracecv(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
  531.              n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
  532.     }
  533. }
  534.  
  535. /* ===========================================================================
  536.  * Construct one Huffman tree and assigns the code bit strings and lengths.
  537.  * Update the total bit length for the current block.
  538.  * IN assertion: the field freq is set for all tree elements.
  539.  * OUT assertions: the fields len and code are set to the optimal bit length
  540.  *     and corresponding code. The length opt_len is updated; static_len is
  541.  *     also updated if stree is not null. The field max_code is set.
  542.  */
  543. local void build_tree(s, desc)
  544.     deflate_state *s;
  545.     tree_desc *desc; /* the tree descriptor */
  546. {
  547.     ct_data *tree   = desc->dyn_tree;
  548.     ct_data *stree  = desc->stat_desc->static_tree;
  549.     int elems       = desc->stat_desc->elems;
  550.     int n, m;          /* iterate over heap elements */
  551.     int max_code = -1; /* largest code with non zero frequency */
  552.     int node;          /* new node being created */
  553.  
  554.     /* Construct the initial heap, with least frequent element in
  555.      * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
  556.      * heap[0] is not used.
  557.      */
  558.     s->heap_len = 0, s->heap_max = HEAP_SIZE;
  559.  
  560.     for (n = 0; n < elems; n++) {
  561.         if (tree[n].Freq != 0) {
  562.             s->heap[++(s->heap_len)] = max_code = n;
  563.             s->depth[n] = 0;
  564.         } else {
  565.             tree[n].Len = 0;
  566.         }
  567.     }
  568.  
  569.     /* The pkzip format requires that at least one distance code exists,
  570.      * and that at least one bit should be sent even if there is only one
  571.      * possible code. So to avoid special checks later on we force at least
  572.      * two codes of non zero frequency.
  573.      */
  574.     while (s->heap_len < 2) {
  575.         node = s->heap[++(s->heap_len)] = (max_code < 2 ? ++max_code : 0);
  576.         tree[node].Freq = 1;
  577.         s->depth[node] = 0;
  578.         s->opt_len--; if (stree) s->static_len -= stree[node].Len;
  579.         /* node is 0 or 1 so it does not have extra bits */
  580.     }
  581.     desc->max_code = max_code;
  582.  
  583.     /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
  584.      * establish sub-heaps of increasing lengths:
  585.      */
  586.     for (n = s->heap_len/2; n >= 1; n--) pqdownheap(s, tree, n);
  587.  
  588.     /* Construct the Huffman tree by repeatedly combining the least two
  589.      * frequent nodes.
  590.      */
  591.     node = elems;              /* next internal node of the tree */
  592.     do {
  593.         pqremove(s, tree, n);  /* n = node of least frequency */
  594.         m = s->heap[SMALLEST]; /* m = node of next least frequency */
  595.  
  596.         s->heap[--(s->heap_max)] = n; /* keep the nodes sorted by frequency */
  597.         s->heap[--(s->heap_max)] = m;
  598.  
  599.         /* Create a new node father of n and m */
  600.         tree[node].Freq = tree[n].Freq + tree[m].Freq;
  601.         s->depth[node] = (uch) (MAX(s->depth[n], s->depth[m]) + 1);
  602.         tree[n].Dad = tree[m].Dad = (ush)node;
  603. #ifdef DUMP_BL_TREE
  604.         if (tree == s->bl_tree) {
  605.             fprintf(stderr,"\nnode %d(%d), sons %d(%d) %d(%d)",
  606.                     node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq);
  607.         }
  608. #endif
  609.         /* and insert the new node in the heap */
  610.         s->heap[SMALLEST] = node++;
  611.         pqdownheap(s, tree, SMALLEST);
  612.  
  613.     } while (s->heap_len >= 2);
  614.  
  615.     s->heap[--(s->heap_max)] = s->heap[SMALLEST];
  616.  
  617.     /* At this point, the fields freq and dad are set. We can now
  618.      * generate the bit lengths.
  619.      */
  620.     gen_bitlen(s, (tree_desc *)desc);
  621.  
  622.     /* The field len is now set, we can generate the bit codes */
  623.     gen_codes ((ct_data *)tree, max_code, s->bl_count);
  624. }
  625.  
  626. /* ===========================================================================
  627.  * Scan a literal or distance tree to determine the frequencies of the codes
  628.  * in the bit length tree.
  629.  */
  630. local void scan_tree (s, tree, max_code)
  631.     deflate_state *s;
  632.     ct_data *tree;   /* the tree to be scanned */
  633.     int max_code;    /* and its largest code of non zero frequency */
  634. {
  635.     int n;                     /* iterates over all tree elements */
  636.     int prevlen = -1;          /* last emitted length */
  637.     int curlen;                /* length of current code */
  638.     int nextlen = tree[0].Len; /* length of next code */
  639.     int count = 0;             /* repeat count of the current code */
  640.     int max_count = 7;         /* max repeat count */
  641.     int min_count = 4;         /* min repeat count */
  642.  
  643.     if (nextlen == 0) max_count = 138, min_count = 3;
  644.     tree[max_code+1].Len = (ush)0xffff; /* guard */
  645.  
  646.     for (n = 0; n <= max_code; n++) {
  647.         curlen = nextlen; nextlen = tree[n+1].Len;
  648.         if (++count < max_count && curlen == nextlen) {
  649.             continue;
  650.         } else if (count < min_count) {
  651.             s->bl_tree[curlen].Freq += count;
  652.         } else if (curlen != 0) {
  653.             if (curlen != prevlen) s->bl_tree[curlen].Freq++;
  654.             s->bl_tree[REP_3_6].Freq++;
  655.         } else if (count <= 10) {
  656.             s->bl_tree[REPZ_3_10].Freq++;
  657.         } else {
  658.             s->bl_tree[REPZ_11_138].Freq++;
  659.         }
  660.         count = 0; prevlen = curlen;
  661.         if (nextlen == 0) {
  662.             max_count = 138, min_count = 3;
  663.         } else if (curlen == nextlen) {
  664.             max_count = 6, min_count = 3;
  665.         } else {
  666.             max_count = 7, min_count = 4;
  667.         }
  668.     }
  669. }
  670.  
  671. /* ===========================================================================
  672.  * Send a literal or distance tree in compressed form, using the codes in
  673.  * bl_tree.
  674.  */
  675. local void send_tree (s, tree, max_code)
  676.     deflate_state *s;
  677.     ct_data *tree; /* the tree to be scanned */
  678.     int max_code;       /* and its largest code of non zero frequency */
  679. {
  680.     int n;                     /* iterates over all tree elements */
  681.     int prevlen = -1;          /* last emitted length */
  682.     int curlen;                /* length of current code */
  683.     int nextlen = tree[0].Len; /* length of next code */
  684.     int count = 0;             /* repeat count of the current code */
  685.     int max_count = 7;         /* max repeat count */
  686.     int min_count = 4;         /* min repeat count */
  687.  
  688.     /* tree[max_code+1].Len = -1; */  /* guard already set */
  689.     if (nextlen == 0) max_count = 138, min_count = 3;
  690.  
  691.     for (n = 0; n <= max_code; n++) {
  692.         curlen = nextlen; nextlen = tree[n+1].Len;
  693.         if (++count < max_count && curlen == nextlen) {
  694.             continue;
  695.         } else if (count < min_count) {
  696.             do { send_code(s, curlen, s->bl_tree); } while (--count != 0);
  697.  
  698.         } else if (curlen != 0) {
  699.             if (curlen != prevlen) {
  700.                 send_code(s, curlen, s->bl_tree); count--;
  701.             }
  702.             Assert(count >= 3 && count <= 6, " 3_6?");
  703.             send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2);
  704.  
  705.         } else if (count <= 10) {
  706.             send_code(s, REPZ_3_10, s->bl_tree); send_bits(s, count-3, 3);
  707.  
  708.         } else {
  709.             send_code(s, REPZ_11_138, s->bl_tree); send_bits(s, count-11, 7);
  710.         }
  711.         count = 0; prevlen = curlen;
  712.         if (nextlen == 0) {
  713.             max_count = 138, min_count = 3;
  714.         } else if (curlen == nextlen) {
  715.             max_count = 6, min_count = 3;
  716.         } else {
  717.             max_count = 7, min_count = 4;
  718.         }
  719.     }
  720. }
  721.  
  722. /* ===========================================================================
  723.  * Construct the Huffman tree for the bit lengths and return the index in
  724.  * bl_order of the last bit length code to send.
  725.  */
  726. local int build_bl_tree(s)
  727.     deflate_state *s;
  728. {
  729.     int max_blindex;  /* index of last bit length code of non zero freq */
  730.  
  731.     /* Determine the bit length frequencies for literal and distance trees */
  732.     scan_tree(s, (ct_data *)s->dyn_ltree, s->l_desc.max_code);
  733.     scan_tree(s, (ct_data *)s->dyn_dtree, s->d_desc.max_code);
  734.  
  735.     /* Build the bit length tree: */
  736.     build_tree(s, (tree_desc *)(&(s->bl_desc)));
  737.     /* opt_len now includes the length of the tree representations, except
  738.      * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
  739.      */
  740.  
  741.     /* Determine the number of bit length codes to send. The pkzip format
  742.      * requires that at least 4 bit length codes be sent. (appnote.txt says
  743.      * 3 but the actual value used is 4.)
  744.      */
  745.     for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) {
  746.         if (s->bl_tree[bl_order[max_blindex]].Len != 0) break;
  747.     }
  748.     /* Update opt_len to include the bit length tree and counts */
  749.     s->opt_len += 3*(max_blindex+1) + 5+5+4;
  750.     Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
  751.             s->opt_len, s->static_len));
  752.  
  753.     return max_blindex;
  754. }
  755.  
  756. /* ===========================================================================
  757.  * Send the header for a block using dynamic Huffman trees: the counts, the
  758.  * lengths of the bit length codes, the literal tree and the distance tree.
  759.  * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
  760.  */
  761. local void send_all_trees(s, lcodes, dcodes, blcodes)
  762.     deflate_state *s;
  763.     int lcodes, dcodes, blcodes; /* number of codes for each tree */
  764. {
  765.     int rank;                    /* index in bl_order */
  766.  
  767.     Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
  768.     Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
  769.             "too many codes");
  770.     Tracev((stderr, "\nbl counts: "));
  771.     send_bits(s, lcodes-257, 5); /* not +255 as stated in appnote.txt */
  772.     send_bits(s, dcodes-1,   5);
  773.     send_bits(s, blcodes-4,  4); /* not -3 as stated in appnote.txt */
  774.     for (rank = 0; rank < blcodes; rank++) {
  775.         Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
  776.         send_bits(s, s->bl_tree[bl_order[rank]].Len, 3);
  777.     }
  778.     Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
  779.  
  780.     send_tree(s, (ct_data *)s->dyn_ltree, lcodes-1); /* literal tree */
  781.     Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
  782.  
  783.     send_tree(s, (ct_data *)s->dyn_dtree, dcodes-1); /* distance tree */
  784.     Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
  785. }
  786.  
  787. /* ===========================================================================
  788.  * Send a stored block
  789.  */
  790. void _tr_stored_block(s, buf, stored_len, eof)
  791.     deflate_state *s;
  792.     charf *buf;       /* input block */
  793.     ulg stored_len;   /* length of input block */
  794.     int eof;          /* true if this is the last block for a file */
  795. {
  796.     send_bits(s, (STORED_BLOCK<<1)+eof, 3);  /* send block type */
  797.     s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
  798.     s->compressed_len += (stored_len + 4) << 3;
  799.  
  800.     copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
  801. }
  802.  
  803. /* ===========================================================================
  804.  * Send one empty static block to give enough lookahead for inflate.
  805.  * This takes 10 bits, of which 7 may remain in the bit buffer.
  806.  * The current inflate code requires 9 bits of lookahead. If the
  807.  * last two codes for the previous block (real code plus EOB) were coded
  808.  * on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode
  809.  * the last real code. In this case we send two empty static blocks instead
  810.  * of one. (There are no problems if the previous block is stored or fixed.)
  811.  * To simplify the code, we assume the worst case of last real code encoded
  812.  * on one bit only.
  813.  */
  814. void _tr_align(s)
  815.     deflate_state *s;
  816. {
  817.     send_bits(s, STATIC_TREES<<1, 3);
  818.     send_code(s, END_BLOCK, static_ltree);
  819.     s->compressed_len += 10L; /* 3 for block type, 7 for EOB */
  820.     bi_flush(s);
  821.     /* Of the 10 bits for the empty block, we have already sent
  822.      * (10 - bi_valid) bits. The lookahead for the last real code (before
  823.      * the EOB of the previous block) was thus at least one plus the length
  824.      * of the EOB plus what we have just sent of the empty static block.
  825.      */
  826.     if (1 + s->last_eob_len + 10 - s->bi_valid < 9) {
  827.         send_bits(s, STATIC_TREES<<1, 3);
  828.         send_code(s, END_BLOCK, static_ltree);
  829.         s->compressed_len += 10L;
  830.         bi_flush(s);
  831.     }
  832.     s->last_eob_len = 7;
  833. }
  834.  
  835. /* ===========================================================================
  836.  * Determine the best encoding for the current block: dynamic trees, static
  837.  * trees or store, and output the encoded block to the zip file. This function
  838.  * returns the total compressed length for the file so far.
  839.  */
  840. ulg _tr_flush_block(s, buf, stored_len, eof)
  841.     deflate_state *s;
  842.     charf *buf;       /* input block, or NULL if too old */
  843.     ulg stored_len;   /* length of input block */
  844.     int eof;          /* true if this is the last block for a file */
  845. {
  846.     ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
  847.     int max_blindex = 0;  /* index of last bit length code of non zero freq */
  848.  
  849.     /* Build the Huffman trees unless a stored block is forced */
  850.     if (s->level > 0) {
  851.  
  852.      /* Check if the file is ascii or binary */
  853.     if (s->data_type == Z_UNKNOWN) set_data_type(s);
  854.  
  855.     /* Construct the literal and distance trees */
  856.     build_tree(s, (tree_desc *)(&(s->l_desc)));
  857.     Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
  858.         s->static_len));
  859.  
  860.     build_tree(s, (tree_desc *)(&(s->d_desc)));
  861.     Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
  862.         s->static_len));
  863.     /* At this point, opt_len and static_len are the total bit lengths of
  864.      * the compressed block data, excluding the tree representations.
  865.      */
  866.  
  867.     /* Build the bit length tree for the above two trees, and get the index
  868.      * in bl_order of the last bit length code to send.
  869.      */
  870.     max_blindex = build_bl_tree(s);
  871.  
  872.     /* Determine the best encoding. Compute first the block length in bytes*/
  873.     opt_lenb = (s->opt_len+3+7)>>3;
  874.     static_lenb = (s->static_len+3+7)>>3;
  875.  
  876.     Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
  877.         opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
  878.         s->last_lit));
  879.  
  880.     if (static_lenb <= opt_lenb) opt_lenb = static_lenb;
  881.  
  882.     } else {
  883.         Assert(buf != (char*)0, "lost buf");
  884.     opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
  885.     }
  886.  
  887.     /* If compression failed and this is the first and last block,
  888.      * and if the .zip file can be seeked (to rewrite the local header),
  889.      * the whole file is transformed into a stored file:
  890.      */
  891. #ifdef STORED_FILE_OK
  892. #  ifdef FORCE_STORED_FILE
  893.     if (eof && s->compressed_len == 0L) { /* force stored file */
  894. #  else
  895.     if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
  896. #  endif
  897.         /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
  898.         if (buf == (charf*)0) error ("block vanished");
  899.  
  900.         copy_block(buf, (unsigned)stored_len, 0); /* without header */
  901.         s->compressed_len = stored_len << 3;
  902.         s->method = STORED;
  903.     } else
  904. #endif /* STORED_FILE_OK */
  905.  
  906. #ifdef FORCE_STORED
  907.     if (buf != (char*)0) { /* force stored block */
  908. #else
  909.     if (stored_len+4 <= opt_lenb && buf != (char*)0) {
  910.                        /* 4: two words for the lengths */
  911. #endif
  912.         /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
  913.          * Otherwise we can't have processed more than WSIZE input bytes since
  914.          * the last block flush, because compression would have been
  915.          * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
  916.          * transform a block into a stored block.
  917.          */
  918.         _tr_stored_block(s, buf, stored_len, eof);
  919.  
  920. #ifdef FORCE_STATIC
  921.     } else if (static_lenb >= 0) { /* force static trees */
  922. #else
  923.     } else if (static_lenb == opt_lenb) {
  924. #endif
  925.         send_bits(s, (STATIC_TREES<<1)+eof, 3);
  926.         compress_block(s, (ct_data *)static_ltree, (ct_data *)static_dtree);
  927.         s->compressed_len += 3 + s->static_len;
  928.     } else {
  929.         send_bits(s, (DYN_TREES<<1)+eof, 3);
  930.         send_all_trees(s, s->l_desc.max_code+1, s->d_desc.max_code+1,
  931.                        max_blindex+1);
  932.         compress_block(s, (ct_data *)s->dyn_ltree, (ct_data *)s->dyn_dtree);
  933.         s->compressed_len += 3 + s->opt_len;
  934.     }
  935.     Assert (s->compressed_len == s->bits_sent, "bad compressed size");
  936.     init_block(s);
  937.  
  938.     if (eof) {
  939.         bi_windup(s);
  940.         s->compressed_len += 7;  /* align on byte boundary */
  941.     }
  942.     Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len>>3,
  943.            s->compressed_len-7*eof));
  944.  
  945.     return s->compressed_len >> 3;
  946. }
  947.  
  948. /* ===========================================================================
  949.  * Save the match info and tally the frequency counts. Return true if
  950.  * the current block must be flushed.
  951.  */
  952. int _tr_tally (s, dist, lc)
  953.     deflate_state *s;
  954.     unsigned dist;  /* distance of matched string */
  955.     unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
  956. {
  957.     s->d_buf[s->last_lit] = (ush)dist;
  958.     s->l_buf[s->last_lit++] = (uch)lc;
  959.     if (dist == 0) {
  960.         /* lc is the unmatched char */
  961.         s->dyn_ltree[lc].Freq++;
  962.     } else {
  963.         s->matches++;
  964.         /* Here, lc is the match length - MIN_MATCH */
  965.         dist--;             /* dist = match distance - 1 */
  966.         Assert((ush)dist < (ush)MAX_DIST(s) &&
  967.                (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
  968.                (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
  969.  
  970.         s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
  971.         s->dyn_dtree[d_code(dist)].Freq++;
  972.     }
  973.  
  974.     /* Try to guess if it is profitable to stop the current block here */
  975.     if (s->level > 2 && (s->last_lit & 0xfff) == 0) {
  976.         /* Compute an upper bound for the compressed length */
  977.         ulg out_length = (ulg)s->last_lit*8L;
  978.         ulg in_length = (ulg)((long)s->strstart - s->block_start);
  979.         int dcode;
  980.         for (dcode = 0; dcode < D_CODES; dcode++) {
  981.             out_length += (ulg)s->dyn_dtree[dcode].Freq *
  982.                 (5L+extra_dbits[dcode]);
  983.         }
  984.         out_length >>= 3;
  985.         Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
  986.                s->last_lit, in_length, out_length,
  987.                100L - out_length*100L/in_length));
  988.         if (s->matches < s->last_lit/2 && out_length < in_length/2) return 1;
  989.     }
  990.     return (s->last_lit == s->lit_bufsize-1);
  991.     /* We avoid equality with lit_bufsize because of wraparound at 64K
  992.      * on 16 bit machines and because stored blocks are restricted to
  993.      * 64K-1 bytes.
  994.      */
  995. }
  996.  
  997. /* ===========================================================================
  998.  * Send the block data compressed using the given Huffman trees
  999.  */
  1000. local void compress_block(s, ltree, dtree)
  1001.     deflate_state *s;
  1002.     ct_data *ltree; /* literal tree */
  1003.     ct_data *dtree; /* distance tree */
  1004. {
  1005.     unsigned dist;      /* distance of matched string */
  1006.     int lc;             /* match length or unmatched char (if dist == 0) */
  1007.     unsigned lx = 0;    /* running index in l_buf */
  1008.     unsigned code;      /* the code to send */
  1009.     int extra;          /* number of extra bits to send */
  1010.  
  1011.     if (s->last_lit != 0) do {
  1012.         dist = s->d_buf[lx];
  1013.         lc = s->l_buf[lx++];
  1014.         if (dist == 0) {
  1015.             send_code(s, lc, ltree); /* send a literal byte */
  1016.             Tracecv(isgraph(lc), (stderr," '%c' ", lc));
  1017.         } else {
  1018.             /* Here, lc is the match length - MIN_MATCH */
  1019.             code = length_code[lc];
  1020.             send_code(s, code+LITERALS+1, ltree); /* send the length code */
  1021.             extra = extra_lbits[code];
  1022.             if (extra != 0) {
  1023.                 lc -= base_length[code];
  1024.                 send_bits(s, lc, extra);       /* send the extra length bits */
  1025.             }
  1026.             dist--; /* dist is now the match distance - 1 */
  1027.             code = d_code(dist);
  1028.             Assert (code < D_CODES, "bad d_code");
  1029.  
  1030.             send_code(s, code, dtree);       /* send the distance code */
  1031.             extra = extra_dbits[code];
  1032.             if (extra != 0) {
  1033.                 dist -= base_dist[code];
  1034.                 send_bits(s, dist, extra);   /* send the extra distance bits */
  1035.             }
  1036.         } /* literal or match pair ? */
  1037.  
  1038.         /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
  1039.         Assert((uInt)s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");
  1040.  
  1041.     } while (lx < s->last_lit);
  1042.  
  1043.     send_code(s, END_BLOCK, ltree);
  1044.     s->last_eob_len = ltree[END_BLOCK].Len;
  1045. }
  1046.  
  1047. /* ===========================================================================
  1048.  * Set the data type to ASCII or BINARY, using a crude approximation:
  1049.  * binary if more than 20% of the bytes are <= 6 or >= 128, ascii otherwise.
  1050.  * IN assertion: the fields freq of dyn_ltree are set and the total of all
  1051.  * frequencies does not exceed 64K (to fit in an int on 16 bit machines).
  1052.  */
  1053. local void set_data_type(s)
  1054.     deflate_state *s;
  1055. {
  1056.     int n = 0;
  1057.     unsigned ascii_freq = 0;
  1058.     unsigned bin_freq = 0;
  1059.     while (n < 7)        bin_freq += s->dyn_ltree[n++].Freq;
  1060.     while (n < 128)    ascii_freq += s->dyn_ltree[n++].Freq;
  1061.     while (n < LITERALS) bin_freq += s->dyn_ltree[n++].Freq;
  1062.     s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
  1063. }
  1064.  
  1065. /* ===========================================================================
  1066.  * Reverse the first len bits of a code, using straightforward code (a faster
  1067.  * method would use a table)
  1068.  * IN assertion: 1 <= len <= 15
  1069.  */
  1070. local unsigned bi_reverse(code, len)
  1071.     unsigned code; /* the value to invert */
  1072.     int len;       /* its bit length */
  1073. {
  1074.     register unsigned res = 0;
  1075.     do {
  1076.         res |= code & 1;
  1077.         code >>= 1, res <<= 1;
  1078.     } while (--len > 0);
  1079.     return res >> 1;
  1080. }
  1081.  
  1082. /* ===========================================================================
  1083.  * Flush the bit buffer, keeping at most 7 bits in it.
  1084.  */
  1085. local void bi_flush(s)
  1086.     deflate_state *s;
  1087. {
  1088.     if (s->bi_valid == 16) {
  1089.         put_short(s, s->bi_buf);
  1090.         s->bi_buf = 0;
  1091.         s->bi_valid = 0;
  1092.     } else if (s->bi_valid >= 8) {
  1093.         put_byte(s, (Byte)s->bi_buf);
  1094.         s->bi_buf >>= 8;
  1095.         s->bi_valid -= 8;
  1096.     }
  1097. }
  1098.  
  1099. /* ===========================================================================
  1100.  * Flush the bit buffer and align the output on a byte boundary
  1101.  */
  1102. local void bi_windup(s)
  1103.     deflate_state *s;
  1104. {
  1105.     if (s->bi_valid > 8) {
  1106.         put_short(s, s->bi_buf);
  1107.     } else if (s->bi_valid > 0) {
  1108.         put_byte(s, (Byte)s->bi_buf);
  1109.     }
  1110.     s->bi_buf = 0;
  1111.     s->bi_valid = 0;
  1112. #ifdef DEBUG
  1113.     s->bits_sent = (s->bits_sent+7) & ~7;
  1114. #endif
  1115. }
  1116.  
  1117. /* ===========================================================================
  1118.  * Copy a stored block, storing first the length and its
  1119.  * one's complement if requested.
  1120.  */
  1121. local void copy_block(s, buf, len, header)
  1122.     deflate_state *s;
  1123.     charf    *buf;    /* the input data */
  1124.     unsigned len;     /* its length */
  1125.     int      header;  /* true if block header must be written */
  1126. {
  1127.     bi_windup(s);        /* align on byte boundary */
  1128.     s->last_eob_len = 8; /* enough lookahead for inflate */
  1129.  
  1130.     if (header) {
  1131.         put_short(s, (ush)len);   
  1132.         put_short(s, (ush)~len);
  1133. #ifdef DEBUG
  1134.         s->bits_sent += 2*16;
  1135. #endif
  1136.     }
  1137. #ifdef DEBUG
  1138.     s->bits_sent += (ulg)len<<3;
  1139. #endif
  1140.     while (len--) {
  1141.         put_byte(s, *buf++);
  1142.     }
  1143. }
  1144.