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

图片显示

开发平台:

Visual C++

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