annotate src/zlib-1.2.8/inflate.h @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1 /* inflate.h -- internal inflate state definition
cannam@128 2 * Copyright (C) 1995-2009 Mark Adler
cannam@128 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@128 4 */
cannam@128 5
cannam@128 6 /* WARNING: this file should *not* be used by applications. It is
cannam@128 7 part of the implementation of the compression library and is
cannam@128 8 subject to change. Applications should only use zlib.h.
cannam@128 9 */
cannam@128 10
cannam@128 11 /* define NO_GZIP when compiling if you want to disable gzip header and
cannam@128 12 trailer decoding by inflate(). NO_GZIP would be used to avoid linking in
cannam@128 13 the crc code when it is not needed. For shared libraries, gzip decoding
cannam@128 14 should be left enabled. */
cannam@128 15 #ifndef NO_GZIP
cannam@128 16 # define GUNZIP
cannam@128 17 #endif
cannam@128 18
cannam@128 19 /* Possible inflate modes between inflate() calls */
cannam@128 20 typedef enum {
cannam@128 21 HEAD, /* i: waiting for magic header */
cannam@128 22 FLAGS, /* i: waiting for method and flags (gzip) */
cannam@128 23 TIME, /* i: waiting for modification time (gzip) */
cannam@128 24 OS, /* i: waiting for extra flags and operating system (gzip) */
cannam@128 25 EXLEN, /* i: waiting for extra length (gzip) */
cannam@128 26 EXTRA, /* i: waiting for extra bytes (gzip) */
cannam@128 27 NAME, /* i: waiting for end of file name (gzip) */
cannam@128 28 COMMENT, /* i: waiting for end of comment (gzip) */
cannam@128 29 HCRC, /* i: waiting for header crc (gzip) */
cannam@128 30 DICTID, /* i: waiting for dictionary check value */
cannam@128 31 DICT, /* waiting for inflateSetDictionary() call */
cannam@128 32 TYPE, /* i: waiting for type bits, including last-flag bit */
cannam@128 33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
cannam@128 34 STORED, /* i: waiting for stored size (length and complement) */
cannam@128 35 COPY_, /* i/o: same as COPY below, but only first time in */
cannam@128 36 COPY, /* i/o: waiting for input or output to copy stored block */
cannam@128 37 TABLE, /* i: waiting for dynamic block table lengths */
cannam@128 38 LENLENS, /* i: waiting for code length code lengths */
cannam@128 39 CODELENS, /* i: waiting for length/lit and distance code lengths */
cannam@128 40 LEN_, /* i: same as LEN below, but only first time in */
cannam@128 41 LEN, /* i: waiting for length/lit/eob code */
cannam@128 42 LENEXT, /* i: waiting for length extra bits */
cannam@128 43 DIST, /* i: waiting for distance code */
cannam@128 44 DISTEXT, /* i: waiting for distance extra bits */
cannam@128 45 MATCH, /* o: waiting for output space to copy string */
cannam@128 46 LIT, /* o: waiting for output space to write literal */
cannam@128 47 CHECK, /* i: waiting for 32-bit check value */
cannam@128 48 LENGTH, /* i: waiting for 32-bit length (gzip) */
cannam@128 49 DONE, /* finished check, done -- remain here until reset */
cannam@128 50 BAD, /* got a data error -- remain here until reset */
cannam@128 51 MEM, /* got an inflate() memory error -- remain here until reset */
cannam@128 52 SYNC /* looking for synchronization bytes to restart inflate() */
cannam@128 53 } inflate_mode;
cannam@128 54
cannam@128 55 /*
cannam@128 56 State transitions between above modes -
cannam@128 57
cannam@128 58 (most modes can go to BAD or MEM on error -- not shown for clarity)
cannam@128 59
cannam@128 60 Process header:
cannam@128 61 HEAD -> (gzip) or (zlib) or (raw)
cannam@128 62 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME -> COMMENT ->
cannam@128 63 HCRC -> TYPE
cannam@128 64 (zlib) -> DICTID or TYPE
cannam@128 65 DICTID -> DICT -> TYPE
cannam@128 66 (raw) -> TYPEDO
cannam@128 67 Read deflate blocks:
cannam@128 68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
cannam@128 69 STORED -> COPY_ -> COPY -> TYPE
cannam@128 70 TABLE -> LENLENS -> CODELENS -> LEN_
cannam@128 71 LEN_ -> LEN
cannam@128 72 Read deflate codes in fixed or dynamic block:
cannam@128 73 LEN -> LENEXT or LIT or TYPE
cannam@128 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
cannam@128 75 LIT -> LEN
cannam@128 76 Process trailer:
cannam@128 77 CHECK -> LENGTH -> DONE
cannam@128 78 */
cannam@128 79
cannam@128 80 /* state maintained between inflate() calls. Approximately 10K bytes. */
cannam@128 81 struct inflate_state {
cannam@128 82 inflate_mode mode; /* current inflate mode */
cannam@128 83 int last; /* true if processing last block */
cannam@128 84 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
cannam@128 85 int havedict; /* true if dictionary provided */
cannam@128 86 int flags; /* gzip header method and flags (0 if zlib) */
cannam@128 87 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */
cannam@128 88 unsigned long check; /* protected copy of check value */
cannam@128 89 unsigned long total; /* protected copy of output count */
cannam@128 90 gz_headerp head; /* where to save gzip header information */
cannam@128 91 /* sliding window */
cannam@128 92 unsigned wbits; /* log base 2 of requested window size */
cannam@128 93 unsigned wsize; /* window size or zero if not using window */
cannam@128 94 unsigned whave; /* valid bytes in the window */
cannam@128 95 unsigned wnext; /* window write index */
cannam@128 96 unsigned char FAR *window; /* allocated sliding window, if needed */
cannam@128 97 /* bit accumulator */
cannam@128 98 unsigned long hold; /* input bit accumulator */
cannam@128 99 unsigned bits; /* number of bits in "in" */
cannam@128 100 /* for string and stored block copying */
cannam@128 101 unsigned length; /* literal or length of data to copy */
cannam@128 102 unsigned offset; /* distance back to copy string from */
cannam@128 103 /* for table and code decoding */
cannam@128 104 unsigned extra; /* extra bits needed */
cannam@128 105 /* fixed and dynamic code tables */
cannam@128 106 code const FAR *lencode; /* starting table for length/literal codes */
cannam@128 107 code const FAR *distcode; /* starting table for distance codes */
cannam@128 108 unsigned lenbits; /* index bits for lencode */
cannam@128 109 unsigned distbits; /* index bits for distcode */
cannam@128 110 /* dynamic table building */
cannam@128 111 unsigned ncode; /* number of code length code lengths */
cannam@128 112 unsigned nlen; /* number of length code lengths */
cannam@128 113 unsigned ndist; /* number of distance code lengths */
cannam@128 114 unsigned have; /* number of code lengths in lens[] */
cannam@128 115 code FAR *next; /* next available space in codes[] */
cannam@128 116 unsigned short lens[320]; /* temporary storage for code lengths */
cannam@128 117 unsigned short work[288]; /* work area for code table building */
cannam@128 118 code codes[ENOUGH]; /* space for code tables */
cannam@128 119 int sane; /* if false, allow invalid distance too far */
cannam@128 120 int back; /* bits back of last unprocessed length/lit */
cannam@128 121 unsigned was; /* initial length of match */
cannam@128 122 };