trees.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:43k
源码类别:

生物技术

开发平台:

C/C++

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