home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip21.zip / trees.c < prev    next >
C/C++ Source or Header  |  1996-04-01  |  42KB  |  1,108 lines

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