trees.c
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:44k
源码类别:

对话框与窗口

开发平台:

Visual C++

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