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