Update contrib.
1 /* infcodes.c -- process literals and length/distance pairs
2 * Copyright (C) 1995-1998 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 /* simplify the use of the inflate_huft type with some defines */
14 #define exop word.what.Exop
15 #define bits word.what.Bits
17 typedef enum { /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
18 START, /* x: set up for LEN */
19 LEN, /* i: get length/literal/eob next */
20 LENEXT, /* i: getting length extra (have base) */
21 DIST, /* i: get distance next */
22 DISTEXT, /* i: getting distance extra */
23 COPY, /* o: copying bytes in window, waiting for space */
24 LIT, /* o: got literal, waiting for output space */
25 WASH, /* o: got eob, possibly still output waiting */
26 END, /* x: got eob and all data flushed */
27 BADCODE} /* x: got error */
30 /* inflate codes private state */
31 struct inflate_codes_state {
34 inflate_codes_mode mode; /* current inflate_codes mode */
36 /* mode dependent information */
40 inflate_huft *tree; /* pointer into tree */
41 uInt need; /* bits needed */
42 } code; /* if LEN or DIST, where in tree */
43 uInt lit; /* if LIT, literal */
45 uInt get; /* bits to get for extra */
46 uInt dist; /* distance back to copy from */
47 } copy; /* if EXT or COPY, where and how much */
50 /* mode independent information */
51 Byte lbits; /* ltree bits decoded per branch */
52 Byte dbits; /* dtree bits decoder per branch */
53 inflate_huft *ltree; /* literal/length/eob tree */
54 inflate_huft *dtree; /* distance tree */
59 inflate_codes_statef *inflate_codes_new(uInt bl, uInt bd, inflate_huft *tl, inflate_huft *td, z_streamp z)
60 /* inflate_huft *td need separate declaration for Borland C++ */
62 inflate_codes_statef *c;
64 if ((c = (inflate_codes_statef *)
65 ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL)
72 Tracev((stderr, "inflate: codes new\n"));
78 int inflate_codes(inflate_blocks_statef *s,z_streamp z, int r)
80 uInt j; /* temporary storage */
81 inflate_huft *t; /* temporary pointer */
82 uInt e; /* extra bits or operation */
83 uLong b; /* bit buffer */
84 uInt k; /* bits in bit buffer */
85 Bytef *p; /* input data pointer */
86 uInt n; /* bytes available there */
87 Bytef *q; /* output window write pointer */
88 uInt m; /* bytes to end of window or read pointer */
89 Bytef *f; /* pointer to copy strings from */
90 inflate_codes_statef *c = s->sub.decode.codes; /* codes state */
92 /* copy input/output information to locals (UPDATE macro restores) */
95 /* process input and output based on current state */
96 while (1) switch (c->mode)
97 { /* waiting for "i:"=input, "o:"=output, "x:"=nothing */
98 case START: /* x: set up for LEN */
100 if (m >= 258 && n >= 10)
103 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
107 c->mode = r == Z_STREAM_END ? WASH : BADCODE;
112 c->sub.code.need = c->lbits;
113 c->sub.code.tree = c->ltree;
115 case LEN: /* i: get length/literal/eob next */
116 j = c->sub.code.need;
118 t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
121 if (e == 0) /* literal */
123 c->sub.lit = t->base;
124 Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
125 "inflate: literal '%c'\n" :
126 "inflate: literal 0x%02x\n", t->base));
130 if (e & 16) /* length */
132 c->sub.copy.get = e & 15;
137 if ((e & 64) == 0) /* next table */
139 c->sub.code.need = e;
140 c->sub.code.tree = t + t->base;
143 if (e & 32) /* end of block */
145 Tracevv((stderr, "inflate: end of block\n"));
149 c->mode = BADCODE; /* invalid code */
150 z->msg = (char*)"invalid literal/length code";
153 case LENEXT: /* i: getting length extra (have base) */
156 c->len += (uInt)b & inflate_mask[j];
158 c->sub.code.need = c->dbits;
159 c->sub.code.tree = c->dtree;
160 Tracevv((stderr, "inflate: length %u\n", c->len));
162 case DIST: /* i: get distance next */
163 j = c->sub.code.need;
165 t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
168 if (e & 16) /* distance */
170 c->sub.copy.get = e & 15;
171 c->sub.copy.dist = t->base;
175 if ((e & 64) == 0) /* next table */
177 c->sub.code.need = e;
178 c->sub.code.tree = t + t->base;
181 c->mode = BADCODE; /* invalid code */
182 z->msg = (char*)"invalid distance code";
185 case DISTEXT: /* i: getting distance extra */
188 c->sub.copy.dist += (uInt)b & inflate_mask[j];
190 Tracevv((stderr, "inflate: distance %u\n", c->sub.copy.dist));
192 case COPY: /* o: copying bytes in window, waiting for space */
193 #ifndef __TURBOC__ /* Turbo C bug for following expression */
194 f = (uInt)(q - s->window) < c->sub.copy.dist ?
195 s->end - (c->sub.copy.dist - (q - s->window)) :
196 q - c->sub.copy.dist;
198 f = q - c->sub.copy.dist;
199 if ((uInt)(q - s->window) < c->sub.copy.dist)
200 f = s->end - (c->sub.copy.dist - (uInt)(q - s->window));
212 case LIT: /* o: got literal, waiting for output space */
217 case WASH: /* o: got eob, possibly more output */
218 if (k > 7) /* return unused byte, if any */
220 Assert(k < 16, "inflate_codes grabbed too many bytes")
223 p--; /* can always return one */
226 if (s->read != s->write)
232 case BADCODE: /* x: got error */
239 #ifdef NEED_DUMMY_RETURN
240 return Z_STREAM_ERROR; /* Some dumb compilers complain without this */
245 void inflate_codes_free(inflate_codes_statef *c, z_streamp z)
248 Tracev((stderr, "inflate: codes free\n"));