/* deflate.h -- internal compression state1* Copyright (C) 1995-2024 Jean-loup Gailly2* For conditions of distribution and use, see copyright notice in zlib.h3*/45/* WARNING: this file should *not* be used by applications. It is6part of the implementation of the compression library and is7subject to change. Applications should only use zlib.h.8*/910/* @(#) $Id$ */1112#ifndef DEFLATE_H13#define DEFLATE_H1415#include "zutil.h"1617/* define NO_GZIP when compiling if you want to disable gzip header and18trailer creation by deflate(). NO_GZIP would be used to avoid linking in19the crc code when it is not needed. For shared libraries, gzip encoding20should be left enabled. */21#ifndef NO_GZIP22# define GZIP23#endif2425/* define LIT_MEM to slightly increase the speed of deflate (order 1% to 2%) at26the cost of a larger memory footprint */27/* #define LIT_MEM */2829/* ===========================================================================30* Internal compression state.31*/3233#define LENGTH_CODES 2934/* number of length codes, not counting the special END_BLOCK code */3536#define LITERALS 25637/* number of literal bytes 0..255 */3839#define L_CODES (LITERALS+1+LENGTH_CODES)40/* number of Literal or Length codes, including the END_BLOCK code */4142#define D_CODES 3043/* number of distance codes */4445#define BL_CODES 1946/* number of codes used to transfer the bit lengths */4748#define HEAP_SIZE (2*L_CODES+1)49/* maximum heap size */5051#define MAX_BITS 1552/* All codes must not exceed MAX_BITS bits */5354#define Buf_size 1655/* size of bit buffer in bi_buf */5657#define INIT_STATE 42 /* zlib header -> BUSY_STATE */58#ifdef GZIP59# define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */60#endif61#define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */62#define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */63#define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */64#define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */65#define BUSY_STATE 113 /* deflate -> FINISH_STATE */66#define FINISH_STATE 666 /* stream complete */67/* Stream status */686970/* Data structure describing a single value and its code string. */71typedef struct ct_data_s {72union {73ush freq; /* frequency count */74ush code; /* bit string */75} fc;76union {77ush dad; /* father node in Huffman tree */78ush len; /* length of bit string */79} dl;80} FAR ct_data;8182#define Freq fc.freq83#define Code fc.code84#define Dad dl.dad85#define Len dl.len8687typedef struct static_tree_desc_s static_tree_desc;8889typedef struct tree_desc_s {90ct_data *dyn_tree; /* the dynamic tree */91int max_code; /* largest code with non zero frequency */92const static_tree_desc *stat_desc; /* the corresponding static tree */93} FAR tree_desc;9495typedef ush Pos;96typedef Pos FAR Posf;97typedef unsigned IPos;9899/* A Pos is an index in the character window. We use short instead of int to100* save space in the various tables. IPos is used only for parameter passing.101*/102103typedef struct internal_state {104z_streamp strm; /* pointer back to this zlib stream */105int status; /* as the name implies */106Bytef *pending_buf; /* output still pending */107ulg pending_buf_size; /* size of pending_buf */108Bytef *pending_out; /* next pending byte to output to the stream */109ulg pending; /* nb of bytes in the pending buffer */110int wrap; /* bit 0 true for zlib, bit 1 true for gzip */111gz_headerp gzhead; /* gzip header information to write */112ulg gzindex; /* where in extra, name, or comment */113Byte method; /* can only be DEFLATED */114int last_flush; /* value of flush param for previous deflate call */115116/* used by deflate.c: */117118uInt w_size; /* LZ77 window size (32K by default) */119uInt w_bits; /* log2(w_size) (8..16) */120uInt w_mask; /* w_size - 1 */121122Bytef *window;123/* Sliding window. Input bytes are read into the second half of the window,124* and move to the first half later to keep a dictionary of at least wSize125* bytes. With this organization, matches are limited to a distance of126* wSize-MAX_MATCH bytes, but this ensures that IO is always127* performed with a length multiple of the block size. Also, it limits128* the window size to 64K, which is quite useful on MSDOS.129* To do: use the user input buffer as sliding window.130*/131132ulg window_size;133/* Actual size of window: 2*wSize, except when the user input buffer134* is directly used as sliding window.135*/136137Posf *prev;138/* Link to older string with same hash index. To limit the size of this139* array to 64K, this link is maintained only for the last 32K strings.140* An index in this array is thus a window index modulo 32K.141*/142143Posf *head; /* Heads of the hash chains or NIL. */144145uInt ins_h; /* hash index of string to be inserted */146uInt hash_size; /* number of elements in hash table */147uInt hash_bits; /* log2(hash_size) */148uInt hash_mask; /* hash_size-1 */149150uInt hash_shift;151/* Number of bits by which ins_h must be shifted at each input152* step. It must be such that after MIN_MATCH steps, the oldest153* byte no longer takes part in the hash key, that is:154* hash_shift * MIN_MATCH >= hash_bits155*/156157long block_start;158/* Window position at the beginning of the current output block. Gets159* negative when the window is moved backwards.160*/161162uInt match_length; /* length of best match */163IPos prev_match; /* previous match */164int match_available; /* set if previous match exists */165uInt strstart; /* start of string to insert */166uInt match_start; /* start of matching string */167uInt lookahead; /* number of valid bytes ahead in window */168169uInt prev_length;170/* Length of the best match at previous step. Matches not greater than this171* are discarded. This is used in the lazy match evaluation.172*/173174uInt max_chain_length;175/* To speed up deflation, hash chains are never searched beyond this176* length. A higher limit improves compression ratio but degrades the177* speed.178*/179180uInt max_lazy_match;181/* Attempt to find a better match only when the current match is strictly182* smaller than this value. This mechanism is used only for compression183* levels >= 4.184*/185# define max_insert_length max_lazy_match186/* Insert new strings in the hash table only if the match length is not187* greater than this length. This saves time but degrades compression.188* max_insert_length is used only for compression levels <= 3.189*/190191int level; /* compression level (1..9) */192int strategy; /* favor or force Huffman coding*/193194uInt good_match;195/* Use a faster search when the previous match is longer than this */196197int nice_match; /* Stop searching when current match exceeds this */198199/* used by trees.c: */200/* Didn't use ct_data typedef below to suppress compiler warning */201struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */202struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */203struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */204205struct tree_desc_s l_desc; /* desc. for literal tree */206struct tree_desc_s d_desc; /* desc. for distance tree */207struct tree_desc_s bl_desc; /* desc. for bit length tree */208209ush bl_count[MAX_BITS+1];210/* number of codes at each bit length for an optimal tree */211212int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */213int heap_len; /* number of elements in the heap */214int heap_max; /* element of largest frequency */215/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.216* The same heap array is used to build all trees.217*/218219uch depth[2*L_CODES+1];220/* Depth of each subtree used as tie breaker for trees of equal frequency221*/222223#ifdef LIT_MEM224# define LIT_BUFS 5225ushf *d_buf; /* buffer for distances */226uchf *l_buf; /* buffer for literals/lengths */227#else228# define LIT_BUFS 4229uchf *sym_buf; /* buffer for distances and literals/lengths */230#endif231232uInt lit_bufsize;233/* Size of match buffer for literals/lengths. There are 4 reasons for234* limiting lit_bufsize to 64K:235* - frequencies can be kept in 16 bit counters236* - if compression is not successful for the first block, all input237* data is still in the window so we can still emit a stored block even238* when input comes from standard input. (This can also be done for239* all blocks if lit_bufsize is not greater than 32K.)240* - if compression is not successful for a file smaller than 64K, we can241* even emit a stored file instead of a stored block (saving 5 bytes).242* This is applicable only for zip (not gzip or zlib).243* - creating new Huffman trees less frequently may not provide fast244* adaptation to changes in the input data statistics. (Take for245* example a binary file with poorly compressible code followed by246* a highly compressible string table.) Smaller buffer sizes give247* fast adaptation but have of course the overhead of transmitting248* trees more frequently.249* - I can't count above 4250*/251252uInt sym_next; /* running index in symbol buffer */253uInt sym_end; /* symbol table full when sym_next reaches this */254255ulg opt_len; /* bit length of current block with optimal trees */256ulg static_len; /* bit length of current block with static trees */257uInt matches; /* number of string matches in current block */258uInt insert; /* bytes at end of window left to insert */259260#ifdef ZLIB_DEBUG261ulg compressed_len; /* total bit length of compressed file mod 2^32 */262ulg bits_sent; /* bit length of compressed data sent mod 2^32 */263#endif264265ush bi_buf;266/* Output buffer. bits are inserted starting at the bottom (least267* significant bits).268*/269int bi_valid;270/* Number of valid bits in bi_buf. All bits above the last valid bit271* are always zero.272*/273274ulg high_water;275/* High water mark offset in window for initialized bytes -- bytes above276* this are set to zero in order to avoid memory check warnings when277* longest match routines access bytes past the input. This is then278* updated to the new high water mark.279*/280281} FAR deflate_state;282283/* Output a byte on the stream.284* IN assertion: there is enough room in pending_buf.285*/286#define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}287288289#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)290/* Minimum amount of lookahead, except at the end of the input file.291* See deflate.c for comments about the MIN_MATCH+1.292*/293294#define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)295/* In order to simplify the code, particularly on 16 bit machines, match296* distances are limited to MAX_DIST instead of WSIZE.297*/298299#define WIN_INIT MAX_MATCH300/* Number of bytes after end of data in window to initialize in order to avoid301memory checker errors from longest match routines */302303/* in trees.c */304void ZLIB_INTERNAL _tr_init(deflate_state *s);305int ZLIB_INTERNAL _tr_tally(deflate_state *s, unsigned dist, unsigned lc);306void ZLIB_INTERNAL _tr_flush_block(deflate_state *s, charf *buf,307ulg stored_len, int last);308void ZLIB_INTERNAL _tr_flush_bits(deflate_state *s);309void ZLIB_INTERNAL _tr_align(deflate_state *s);310void ZLIB_INTERNAL _tr_stored_block(deflate_state *s, charf *buf,311ulg stored_len, int last);312313#define d_code(dist) \314((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])315/* Mapping from a distance to a distance code. dist is the distance - 1 and316* must not have side effects. _dist_code[256] and _dist_code[257] are never317* used.318*/319320#ifndef ZLIB_DEBUG321/* Inline versions of _tr_tally for speed: */322323#if defined(GEN_TREES_H) || !defined(STDC)324extern uch ZLIB_INTERNAL _length_code[];325extern uch ZLIB_INTERNAL _dist_code[];326#else327extern const uch ZLIB_INTERNAL _length_code[];328extern const uch ZLIB_INTERNAL _dist_code[];329#endif330331#ifdef LIT_MEM332# define _tr_tally_lit(s, c, flush) \333{ uch cc = (c); \334s->d_buf[s->sym_next] = 0; \335s->l_buf[s->sym_next++] = cc; \336s->dyn_ltree[cc].Freq++; \337flush = (s->sym_next == s->sym_end); \338}339# define _tr_tally_dist(s, distance, length, flush) \340{ uch len = (uch)(length); \341ush dist = (ush)(distance); \342s->d_buf[s->sym_next] = dist; \343s->l_buf[s->sym_next++] = len; \344dist--; \345s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \346s->dyn_dtree[d_code(dist)].Freq++; \347flush = (s->sym_next == s->sym_end); \348}349#else350# define _tr_tally_lit(s, c, flush) \351{ uch cc = (c); \352s->sym_buf[s->sym_next++] = 0; \353s->sym_buf[s->sym_next++] = 0; \354s->sym_buf[s->sym_next++] = cc; \355s->dyn_ltree[cc].Freq++; \356flush = (s->sym_next == s->sym_end); \357}358# define _tr_tally_dist(s, distance, length, flush) \359{ uch len = (uch)(length); \360ush dist = (ush)(distance); \361s->sym_buf[s->sym_next++] = (uch)dist; \362s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \363s->sym_buf[s->sym_next++] = len; \364dist--; \365s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \366s->dyn_dtree[d_code(dist)].Freq++; \367flush = (s->sym_next == s->sym_end); \368}369#endif370#else371# define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c)372# define _tr_tally_dist(s, distance, length, flush) \373flush = _tr_tally(s, distance, length)374#endif375376#endif /* DEFLATE_H */377378379