defutil.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #define Assert(err, str) 
  2. #define Trace(dummy) 
  3. #define Tracev(dummy) 
  4. #define Tracecv(err, dummy) 
  5. #define Tracevv(dummy) 
  6. #define LENGTH_CODES 29
  7. /* number of length codes, not counting the special END_BLOCK code */
  8. #define LITERALS  256
  9. /* number of literal bytes 0..255 */
  10. #define L_CODES (LITERALS+1+LENGTH_CODES)
  11. /* number of Literal or Length codes, including the END_BLOCK code */
  12. #define D_CODES   30
  13. /* number of distance codes */
  14. #define BL_CODES  19
  15. /* number of codes used to transfer the bit lengths */
  16. #define HEAP_SIZE (2*L_CODES+1)
  17. /* maximum heap size */
  18. #define MAX_BITS 15
  19. /* All codes must not exceed MAX_BITS bits */
  20. #define INIT_STATE    42
  21. #define BUSY_STATE   113
  22. #define FINISH_STATE 666
  23. /* Stream status */
  24. /* Data structure describing a single value and its code string. */
  25. typedef struct ct_data_s {
  26.     union {
  27.         ush  freq;       /* frequency count */
  28.         ush  code;       /* bit string */
  29.     } fc;
  30.     union {
  31.         ush  dad;        /* father node in Huffman tree */
  32.         ush  len;        /* length of bit string */
  33.     } dl;
  34. } FAR ct_data;
  35. #define Freq fc.freq
  36. #define Code fc.code
  37. #define Dad  dl.dad
  38. #define Len  dl.len
  39. typedef struct static_tree_desc_s  static_tree_desc;
  40. typedef struct tree_desc_s {
  41.     ct_data *dyn_tree;           /* the dynamic tree */
  42.     int     max_code;            /* largest code with non zero frequency */
  43.     static_tree_desc *stat_desc; /* the corresponding static tree */
  44. } FAR tree_desc;
  45. typedef ush Pos;
  46. typedef Pos FAR Posf;
  47. typedef unsigned IPos;
  48. /* A Pos is an index in the character window. We use short instead of int to
  49.  * save space in the various tables. IPos is used only for parameter passing.
  50.  */
  51. typedef struct deflate_state {
  52.     z_streamp strm;      /* pointer back to this zlib stream */
  53.     int   status;        /* as the name implies */
  54.     Bytef *pending_buf;  /* output still pending */
  55.     ulg   pending_buf_size; /* size of pending_buf */
  56.     Bytef *pending_out;  /* next pending byte to output to the stream */
  57.     int   pending;       /* nb of bytes in the pending buffer */
  58.     int   noheader;      /* suppress zlib header and adler32 */
  59.     Byte  data_type;     /* UNKNOWN, BINARY or ASCII */
  60.     Byte  method;        /* STORED (for zip only) or DEFLATED */
  61.     int   last_flush;    /* value of flush param for previous deflate call */
  62.                 /* used by deflate.c: */
  63.     uInt  w_size;        /* LZ77 window size (32K by default) */
  64.     uInt  w_bits;        /* log2(w_size)  (8..16) */
  65.     uInt  w_mask;        /* w_size - 1 */
  66.     Bytef *window;
  67.     /* Sliding window. Input bytes are read into the second half of the window,
  68.      * and move to the first half later to keep a dictionary of at least wSize
  69.      * bytes. With this organization, matches are limited to a distance of
  70.      * wSize-MAX_MATCH bytes, but this ensures that IO is always
  71.      * performed with a length multiple of the block size. Also, it limits
  72.      * the window size to 64K, which is quite useful on MSDOS.
  73.      * To do: use the user input buffer as sliding window.
  74.      */
  75.     ulg window_size;
  76.     /* Actual size of window: 2*wSize, except when the user input buffer
  77.      * is directly used as sliding window.
  78.      */
  79.     Posf *prev;
  80.     /* Link to older string with same hash index. To limit the size of this
  81.      * array to 64K, this link is maintained only for the last 32K strings.
  82.      * An index in this array is thus a window index modulo 32K.
  83.      */
  84.     Posf *head; /* Heads of the hash chains or NIL. */
  85.     uInt  ins_h;          /* hash index of string to be inserted */
  86.     uInt  hash_size;      /* number of elements in hash table */
  87.     uInt  hash_bits;      /* log2(hash_size) */
  88.     uInt  hash_mask;      /* hash_size-1 */
  89.     uInt  hash_shift;
  90.     /* Number of bits by which ins_h must be shifted at each input
  91.      * step. It must be such that after MIN_MATCH steps, the oldest
  92.      * byte no longer takes part in the hash key, that is:
  93.      *   hash_shift * MIN_MATCH >= hash_bits
  94.      */
  95.     long block_start;
  96.     /* Window position at the beginning of the current output block. Gets
  97.      * negative when the window is moved backwards.
  98.      */
  99.     uInt match_length;           /* length of best match */
  100.     IPos prev_match;             /* previous match */
  101.     int match_available;         /* set if previous match exists */
  102.     uInt strstart;               /* start of string to insert */
  103.     uInt match_start;            /* start of matching string */
  104.     uInt lookahead;              /* number of valid bytes ahead in window */
  105.     uInt prev_length;
  106.     /* Length of the best match at previous step. Matches not greater than this
  107.      * are discarded. This is used in the lazy match evaluation.
  108.      */
  109.     uInt max_chain_length;
  110.     /* To speed up deflation, hash chains are never searched beyond this
  111.      * length.  A higher limit improves compression ratio but degrades the
  112.      * speed.
  113.      */
  114.     uInt max_lazy_match;
  115.     /* Attempt to find a better match only when the current match is strictly
  116.      * smaller than this value. This mechanism is used only for compression
  117.      * levels >= 4.
  118.      */
  119. #   define max_insert_length  max_lazy_match
  120.     /* Insert new strings in the hash table only if the match length is not
  121.      * greater than this length. This saves time but degrades compression.
  122.      * max_insert_length is used only for compression levels <= 3.
  123.      */
  124.     int level;    /* compression level (1..9) */
  125.     int strategy; /* favor or force Huffman coding*/
  126.     uInt good_match;
  127.     /* Use a faster search when the previous match is longer than this */
  128.     int nice_match; /* Stop searching when current match exceeds this */
  129.                 /* used by trees.c: */
  130.     /* Didn't use ct_data typedef below to supress compiler warning */
  131.     struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
  132.     struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
  133.     struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */
  134.     struct tree_desc_s l_desc;               /* desc. for literal tree */
  135.     struct tree_desc_s d_desc;               /* desc. for distance tree */
  136.     struct tree_desc_s bl_desc;              /* desc. for bit length tree */
  137.     ush bl_count[MAX_BITS+1];
  138.     /* number of codes at each bit length for an optimal tree */
  139.     int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
  140.     int heap_len;               /* number of elements in the heap */
  141.     int heap_max;               /* element of largest frequency */
  142.     /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
  143.      * The same heap array is used to build all trees.
  144.      */
  145.     uch depth[2*L_CODES+1];
  146.     /* Depth of each subtree used as tie breaker for trees of equal frequency
  147.      */
  148.     uchf *l_buf;          /* buffer for literals or lengths */
  149.     uInt  lit_bufsize;
  150.     /* Size of match buffer for literals/lengths.  There are 4 reasons for
  151.      * limiting lit_bufsize to 64K:
  152.      *   - frequencies can be kept in 16 bit counters
  153.      *   - if compression is not successful for the first block, all input
  154.      *     data is still in the window so we can still emit a stored block even
  155.      *     when input comes from standard input.  (This can also be done for
  156.      *     all blocks if lit_bufsize is not greater than 32K.)
  157.      *   - if compression is not successful for a file smaller than 64K, we can
  158.      *     even emit a stored file instead of a stored block (saving 5 bytes).
  159.      *     This is applicable only for zip (not gzip or zlib).
  160.      *   - creating new Huffman trees less frequently may not provide fast
  161.      *     adaptation to changes in the input data statistics. (Take for
  162.      *     example a binary file with poorly compressible code followed by
  163.      *     a highly compressible string table.) Smaller buffer sizes give
  164.      *     fast adaptation but have of course the overhead of transmitting
  165.      *     trees more frequently.
  166.      *   - I can't count above 4
  167.      */
  168.     uInt last_lit;      /* running index in l_buf */
  169.     ushf *d_buf;
  170.     /* Buffer for distances. To simplify the code, d_buf and l_buf have
  171.      * the same number of elements. To use different lengths, an extra flag
  172.      * array would be necessary.
  173.      */
  174.     ulg opt_len;        /* bit length of current block with optimal trees */
  175.     ulg static_len;     /* bit length of current block with static trees */
  176.     ulg compressed_len; /* total bit length of compressed file */
  177.     uInt matches;       /* number of string matches in current block */
  178.     int last_eob_len;   /* bit length of EOB code for last block */
  179. #ifdef DEBUG_ZLIB
  180.     ulg bits_sent;      /* bit length of the compressed data */
  181. #endif
  182.     ush bi_buf;
  183.     /* Output buffer. bits are inserted starting at the bottom (least
  184.      * significant bits).
  185.      */
  186.     int bi_valid;
  187.     /* Number of valid bits in bi_buf.  All bits above the last valid bit
  188.      * are always zero.
  189.      */
  190. } FAR deflate_state;
  191. typedef struct deflate_workspace {
  192.     /* State memory for the deflator */
  193.     deflate_state deflate_memory;
  194.     Byte window_memory[2 * (1 << MAX_WBITS)];
  195.     Pos prev_memory[1 << MAX_WBITS];
  196.     Pos head_memory[1 << (MAX_MEM_LEVEL + 7)];
  197.     char overlay_memory[(1 << (MAX_MEM_LEVEL + 6)) * (sizeof(ush)+2)];
  198. } deflate_workspace;
  199. /* Output a byte on the stream.
  200.  * IN assertion: there is enough room in pending_buf.
  201.  */
  202. #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
  203. #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
  204. /* Minimum amount of lookahead, except at the end of the input file.
  205.  * See deflate.c for comments about the MIN_MATCH+1.
  206.  */
  207. #define MAX_DIST(s)  ((s)->w_size-MIN_LOOKAHEAD)
  208. /* In order to simplify the code, particularly on 16 bit machines, match
  209.  * distances are limited to MAX_DIST instead of WSIZE.
  210.  */
  211.         /* in trees.c */
  212. void zlib_tr_init         OF((deflate_state *s));
  213. int  zlib_tr_tally        OF((deflate_state *s, unsigned dist, unsigned lc));
  214. ulg  zlib_tr_flush_block  OF((deflate_state *s, charf *buf, ulg stored_len,
  215.       int eof));
  216. void zlib_tr_align        OF((deflate_state *s));
  217. void zlib_tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
  218.       int eof));
  219. void zlib_tr_stored_type_only OF((deflate_state *));
  220. /* ===========================================================================
  221.  * Output a short LSB first on the stream.
  222.  * IN assertion: there is enough room in pendingBuf.
  223.  */
  224. #define put_short(s, w) { 
  225.     put_byte(s, (uch)((w) & 0xff)); 
  226.     put_byte(s, (uch)((ush)(w) >> 8)); 
  227. }
  228. /* ===========================================================================
  229.  * Reverse the first len bits of a code, using straightforward code (a faster
  230.  * method would use a table)
  231.  * IN assertion: 1 <= len <= 15
  232.  */
  233. static inline unsigned bi_reverse(unsigned code, /* the value to invert */
  234.   int len)       /* its bit length */
  235. {
  236.     register unsigned res = 0;
  237.     do {
  238.         res |= code & 1;
  239.         code >>= 1, res <<= 1;
  240.     } while (--len > 0);
  241.     return res >> 1;
  242. }
  243. /* ===========================================================================
  244.  * Flush the bit buffer, keeping at most 7 bits in it.
  245.  */
  246. static inline void bi_flush(deflate_state *s)
  247. {
  248.     if (s->bi_valid == 16) {
  249.         put_short(s, s->bi_buf);
  250.         s->bi_buf = 0;
  251.         s->bi_valid = 0;
  252.     } else if (s->bi_valid >= 8) {
  253.         put_byte(s, (Byte)s->bi_buf);
  254.         s->bi_buf >>= 8;
  255.         s->bi_valid -= 8;
  256.     }
  257. }
  258. /* ===========================================================================
  259.  * Flush the bit buffer and align the output on a byte boundary
  260.  */
  261. static inline void bi_windup(deflate_state *s)
  262. {
  263.     if (s->bi_valid > 8) {
  264.         put_short(s, s->bi_buf);
  265.     } else if (s->bi_valid > 0) {
  266.         put_byte(s, (Byte)s->bi_buf);
  267.     }
  268.     s->bi_buf = 0;
  269.     s->bi_valid = 0;
  270. #ifdef DEBUG_ZLIB
  271.     s->bits_sent = (s->bits_sent+7) & ~7;
  272. #endif
  273. }