⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deftree.c

📁 文件类型 的管理 与 应用/
💻 C
📖 第 1 页 / 共 3 页
字号:
/* +++ trees.c *//* trees.c -- output deflated data using Huffman coding * Copyright (C) 1995-1996 Jean-loup Gailly * For conditions of distribution and use, see copyright notice in zlib.h  *//* *  ALGORITHM * *      The "deflation" process uses several Huffman trees. The more *      common source values are represented by shorter bit sequences. * *      Each code tree is stored in a compressed form which is itself * a Huffman encoding of the lengths of all the code strings (in * ascending order by source values).  The actual code strings are * reconstructed from the lengths in the inflate process, as described * in the deflate specification. * *  REFERENCES * *      Deutsch, L.P.,"'Deflate' Compressed Data Format Specification". *      Available in ftp.uu.net:/pub/archiving/zip/doc/deflate-1.1.doc * *      Storer, James A. *          Data Compression:  Methods and Theory, pp. 49-50. *          Computer Science Press, 1988.  ISBN 0-7167-8156-5. * *      Sedgewick, R. *          Algorithms, p290. *          Addison-Wesley, 1983. ISBN 0-201-06672-6. *//* From: trees.c,v 1.11 1996/07/24 13:41:06 me Exp $ *//* #include "deflate.h" */#include <linux/zutil.h>#include "defutil.h"#ifdef DEBUG_ZLIB#  include <ctype.h>#endif/* =========================================================================== * Constants */#define MAX_BL_BITS 7/* Bit length codes must not exceed MAX_BL_BITS bits */#define END_BLOCK 256/* end of block literal code */#define REP_3_6      16/* repeat previous bit length 3-6 times (2 bits of repeat count) */#define REPZ_3_10    17/* repeat a zero length 3-10 times  (3 bits of repeat count) */#define REPZ_11_138  18/* repeat a zero length 11-138 times  (7 bits of repeat count) */local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */   = {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};local const int extra_dbits[D_CODES] /* extra bits for each distance code */   = {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};local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */   = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7};local const uch bl_order[BL_CODES]   = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15};/* The lengths of the bit length codes are sent in order of decreasing * probability, to avoid transmitting the lengths for unused bit length codes. */#define Buf_size (8 * 2*sizeof(char))/* Number of bits used within bi_buf. (bi_buf might be implemented on * more than 16 bits on some systems.) *//* =========================================================================== * Local data. These are initialized only once. */local ct_data static_ltree[L_CODES+2];/* The static literal tree. Since the bit lengths are imposed, there is no * need for the L_CODES extra codes used during heap construction. However * The codes 286 and 287 are needed to build a canonical tree (see zlib_tr_init * below). */local ct_data static_dtree[D_CODES];/* The static distance tree. (Actually a trivial tree since all codes use * 5 bits.) */local uch dist_code[512];/* distance codes. The first 256 values correspond to the distances * 3 .. 258, the last 256 values correspond to the top 8 bits of * the 15 bit distances. */local uch length_code[MAX_MATCH-MIN_MATCH+1];/* length code for each normalized match length (0 == MIN_MATCH) */local int base_length[LENGTH_CODES];/* First normalized length for each code (0 = MIN_MATCH) */local int base_dist[D_CODES];/* First normalized distance for each code (0 = distance of 1) */struct static_tree_desc_s {    const ct_data *static_tree;  /* static tree or NULL */    const intf *extra_bits;      /* extra bits for each code or NULL */    int     extra_base;          /* base index for extra_bits */    int     elems;               /* max number of elements in the tree */    int     max_length;          /* max bit length for the codes */};local static_tree_desc  static_l_desc ={static_ltree, extra_lbits, LITERALS+1, L_CODES, MAX_BITS};local static_tree_desc  static_d_desc ={static_dtree, extra_dbits, 0,          D_CODES, MAX_BITS};local static_tree_desc  static_bl_desc ={(const ct_data *)0, extra_blbits, 0,   BL_CODES, MAX_BL_BITS};/* =========================================================================== * Local (static) routines in this file. */local void tr_static_init OF((void));local void init_block     OF((deflate_state *s));local void pqdownheap     OF((deflate_state *s, ct_data *tree, int k));local void gen_bitlen     OF((deflate_state *s, tree_desc *desc));local void gen_codes      OF((ct_data *tree, int max_code, ushf *bl_count));local void build_tree     OF((deflate_state *s, tree_desc *desc));local void scan_tree      OF((deflate_state *s, ct_data *tree, int max_code));local void send_tree      OF((deflate_state *s, ct_data *tree, int max_code));local int  build_bl_tree  OF((deflate_state *s));local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,                              int blcodes));local void compress_block OF((deflate_state *s, ct_data *ltree,                              ct_data *dtree));local void set_data_type  OF((deflate_state *s));local unsigned bi_reverse OF((unsigned value, int length));local void bi_windup      OF((deflate_state *s));local void bi_flush       OF((deflate_state *s));local void copy_block     OF((deflate_state *s, charf *buf, unsigned len,                              int header));#ifndef DEBUG_ZLIB#  define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len)   /* Send a code of the given tree. c and tree must not have side effects */#else /* DEBUG_ZLIB */#  define send_code(s, c, tree) \     { if (z_verbose>2) fprintf(stderr,"\ncd %3d ",(c)); \       send_bits(s, tree[c].Code, tree[c].Len); }#endif#define d_code(dist) \   ((dist) < 256 ? dist_code[dist] : dist_code[256+((dist)>>7)])/* Mapping from a distance to a distance code. dist is the distance - 1 and * must not have side effects. dist_code[256] and dist_code[257] are never * used. *//* =========================================================================== * Send a value on a given number of bits. * IN assertion: length <= 16 and value fits in length bits. */#ifdef DEBUG_ZLIBlocal void send_bits      OF((deflate_state *s, int value, int length));local void send_bits(s, value, length)    deflate_state *s;    int value;  /* value to send */    int length; /* number of bits */{    Tracevv((stderr," l %2d v %4x ", length, value));    Assert(length > 0 && length <= 15, "invalid length");    s->bits_sent += (ulg)length;    /* If not enough room in bi_buf, use (valid) bits from bi_buf and     * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))     * unused bits in value.     */    if (s->bi_valid > (int)Buf_size - length) {        s->bi_buf |= (value << s->bi_valid);        put_short(s, s->bi_buf);        s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);        s->bi_valid += length - Buf_size;    } else {        s->bi_buf |= value << s->bi_valid;        s->bi_valid += length;    }}#else /* !DEBUG_ZLIB */#define send_bits(s, value, length) \{ int len = length;\  if (s->bi_valid > (int)Buf_size - len) {\    int val = value;\    s->bi_buf |= (val << s->bi_valid);\    put_short(s, s->bi_buf);\    s->bi_buf = (ush)val >> (Buf_size - s->bi_valid);\    s->bi_valid += len - Buf_size;\  } else {\    s->bi_buf |= (value) << s->bi_valid;\    s->bi_valid += len;\  }\}#endif /* DEBUG_ZLIB */#define MAX(a,b) (a >= b ? a : b)/* the arguments must not have side effects *//* =========================================================================== * Initialize the various 'constant' tables. In a multi-threaded environment, * this function may be called by two threads concurrently, but this is * harmless since both invocations do exactly the same thing. */local void tr_static_init(){    static int static_init_done = 0;    int n;        /* iterates over tree elements */    int bits;     /* bit counter */    int length;   /* length value */    int code;     /* code value */    int dist;     /* distance index */    ush bl_count[MAX_BITS+1];    /* number of codes at each bit length for an optimal tree */    if (static_init_done) return;    /* Initialize the mapping length (0..255) -> length code (0..28) */    length = 0;    for (code = 0; code < LENGTH_CODES-1; code++) {        base_length[code] = length;        for (n = 0; n < (1<<extra_lbits[code]); n++) {            length_code[length++] = (uch)code;        }    }    Assert (length == 256, "tr_static_init: length != 256");    /* Note that the length 255 (match length 258) can be represented     * in two different ways: code 284 + 5 bits or code 285, so we     * overwrite length_code[255] to use the best encoding:     */    length_code[length-1] = (uch)code;    /* Initialize the mapping dist (0..32K) -> dist code (0..29) */    dist = 0;    for (code = 0 ; code < 16; code++) {        base_dist[code] = dist;        for (n = 0; n < (1<<extra_dbits[code]); n++) {            dist_code[dist++] = (uch)code;        }    }    Assert (dist == 256, "tr_static_init: dist != 256");    dist >>= 7; /* from now on, all distances are divided by 128 */    for ( ; code < D_CODES; code++) {        base_dist[code] = dist << 7;        for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {            dist_code[256 + dist++] = (uch)code;        }    }    Assert (dist == 256, "tr_static_init: 256+dist != 512");    /* Construct the codes of the static literal tree */    for (bits = 0; bits <= MAX_BITS; bits++) bl_count[bits] = 0;    n = 0;    while (n <= 143) static_ltree[n++].Len = 8, bl_count[8]++;    while (n <= 255) static_ltree[n++].Len = 9, bl_count[9]++;    while (n <= 279) static_ltree[n++].Len = 7, bl_count[7]++;    while (n <= 287) static_ltree[n++].Len = 8, bl_count[8]++;    /* Codes 286 and 287 do not exist, but we must include them in the     * tree construction to get a canonical Huffman tree (longest code     * all ones)     */    gen_codes((ct_data *)static_ltree, L_CODES+1, bl_count);    /* The static distance tree is trivial: */    for (n = 0; n < D_CODES; n++) {        static_dtree[n].Len = 5;        static_dtree[n].Code = bi_reverse((unsigned)n, 5);    }    static_init_done = 1;}/* =========================================================================== * Initialize the tree data structures for a new zlib stream. */void zlib_tr_init(s)    deflate_state *s;{    tr_static_init();    s->compressed_len = 0L;    s->l_desc.dyn_tree = s->dyn_ltree;    s->l_desc.stat_desc = &static_l_desc;    s->d_desc.dyn_tree = s->dyn_dtree;    s->d_desc.stat_desc = &static_d_desc;    s->bl_desc.dyn_tree = s->bl_tree;    s->bl_desc.stat_desc = &static_bl_desc;    s->bi_buf = 0;    s->bi_valid = 0;    s->last_eob_len = 8; /* enough lookahead for inflate */#ifdef DEBUG_ZLIB    s->bits_sent = 0L;#endif    /* Initialize the first block of the first file: */    init_block(s);}/* =========================================================================== * Initialize a new block. */local void init_block(s)    deflate_state *s;{    int n; /* iterates over tree elements */    /* Initialize the trees. */    for (n = 0; n < L_CODES;  n++) s->dyn_ltree[n].Freq = 0;    for (n = 0; n < D_CODES;  n++) s->dyn_dtree[n].Freq = 0;    for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0;    s->dyn_ltree[END_BLOCK].Freq = 1;    s->opt_len = s->static_len = 0L;    s->last_lit = s->matches = 0;}#define SMALLEST 1/* Index within the heap array of least frequent node in the Huffman tree *//* =========================================================================== * Remove the smallest element from the heap and recreate the heap with * one less element. Updates heap and heap_len. */#define pqremove(s, tree, top) \{\    top = s->heap[SMALLEST]; \    s->heap[SMALLEST] = s->heap[s->heap_len--]; \    pqdownheap(s, tree, SMALLEST); \}/* =========================================================================== * Compares to subtrees, using the tree depth as tie breaker when * the subtrees have equal frequency. This minimizes the worst case length. */#define smaller(tree, n, m, depth) \   (tree[n].Freq < tree[m].Freq || \   (tree[n].Freq == tree[m].Freq && depth[n] <= depth[m]))/* ===========================================================================

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -