trees.c
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:44k
源码类别:

Symbian

开发平台:

Visual C++

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