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