sl@0
|
1 |
/* inffast.c -- process literals and length/distance pairs fast
|
sl@0
|
2 |
* Copyright (C) 1995-1998 Mark Adler
|
sl@0
|
3 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
|
sl@0
|
6 |
#include "zutil.h"
|
sl@0
|
7 |
#include "inftrees.h"
|
sl@0
|
8 |
#include "infblock.h"
|
sl@0
|
9 |
#include "infcodes.h"
|
sl@0
|
10 |
#include "infutil.h"
|
sl@0
|
11 |
#include "inffast.h"
|
sl@0
|
12 |
|
sl@0
|
13 |
struct inflate_codes_state {int dummy;}; /* for buggy compilers */
|
sl@0
|
14 |
|
sl@0
|
15 |
/* simplify the use of the inflate_huft type with some defines */
|
sl@0
|
16 |
#define exop word.what.Exop
|
sl@0
|
17 |
#define bits word.what.Bits
|
sl@0
|
18 |
|
sl@0
|
19 |
/* macros for bit input with no checking and for returning unused bytes */
|
sl@0
|
20 |
#define GRABBITS(j) {while(k<(j)){b|=((uLong)NEXTBYTE)<<k;k+=8;}}
|
sl@0
|
21 |
#define UNGRAB {c=z->avail_in-n;c=(k>>3)<c?k>>3:c;n+=c;p-=c;k-=c<<3;}
|
sl@0
|
22 |
|
sl@0
|
23 |
/* Called with number of bytes left to write in window at least 258
|
sl@0
|
24 |
(the maximum string length) and number of input bytes available
|
sl@0
|
25 |
at least ten. The ten bytes are six bytes for the longest length/
|
sl@0
|
26 |
distance pair plus four bytes for overloading the bit buffer. */
|
sl@0
|
27 |
|
sl@0
|
28 |
int inflate_fast(uInt bl, uInt bd, inflate_huft *tl, inflate_huft *td, inflate_blocks_statef *s, z_streamp z)
|
sl@0
|
29 |
/* inflate_huft *td need separate declaration for Borland C++ */
|
sl@0
|
30 |
{
|
sl@0
|
31 |
inflate_huft *t; /* temporary pointer */
|
sl@0
|
32 |
uInt e; /* extra bits or operation */
|
sl@0
|
33 |
uLong b; /* bit buffer */
|
sl@0
|
34 |
uInt k; /* bits in bit buffer */
|
sl@0
|
35 |
Bytef *p; /* input data pointer */
|
sl@0
|
36 |
uInt n; /* bytes available there */
|
sl@0
|
37 |
Bytef *q; /* output window write pointer */
|
sl@0
|
38 |
uInt m; /* bytes to end of window or read pointer */
|
sl@0
|
39 |
uInt ml; /* mask for literal/length tree */
|
sl@0
|
40 |
uInt md; /* mask for distance tree */
|
sl@0
|
41 |
uInt c; /* bytes to copy */
|
sl@0
|
42 |
uInt d; /* distance back to copy from */
|
sl@0
|
43 |
Bytef *r; /* copy source pointer */
|
sl@0
|
44 |
|
sl@0
|
45 |
/* load input, output, bit values */
|
sl@0
|
46 |
LOAD
|
sl@0
|
47 |
|
sl@0
|
48 |
/* initialize masks */
|
sl@0
|
49 |
ml = inflate_mask[bl];
|
sl@0
|
50 |
md = inflate_mask[bd];
|
sl@0
|
51 |
|
sl@0
|
52 |
/* do until not enough input or output space for fast loop */
|
sl@0
|
53 |
do { /* assume called with m >= 258 && n >= 10 */
|
sl@0
|
54 |
/* get literal/length code */
|
sl@0
|
55 |
GRABBITS(20) /* max bits for literal/length code */
|
sl@0
|
56 |
if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
DUMPBITS(t->bits)
|
sl@0
|
59 |
Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
|
sl@0
|
60 |
"inflate: * literal '%c'\n" :
|
sl@0
|
61 |
"inflate: * literal 0x%02x\n", t->base));
|
sl@0
|
62 |
*q++ = (Byte)t->base;
|
sl@0
|
63 |
m--;
|
sl@0
|
64 |
continue;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
do {
|
sl@0
|
67 |
DUMPBITS(t->bits)
|
sl@0
|
68 |
if (e & 16)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
/* get extra bits for length */
|
sl@0
|
71 |
e &= 15;
|
sl@0
|
72 |
c = t->base + ((uInt)b & inflate_mask[e]);
|
sl@0
|
73 |
DUMPBITS(e)
|
sl@0
|
74 |
Tracevv((stderr, "inflate: * length %u\n", c));
|
sl@0
|
75 |
|
sl@0
|
76 |
/* decode distance base of block to copy */
|
sl@0
|
77 |
GRABBITS(15); /* max bits for distance code */
|
sl@0
|
78 |
e = (t = td + ((uInt)b & md))->exop;
|
sl@0
|
79 |
do {
|
sl@0
|
80 |
DUMPBITS(t->bits)
|
sl@0
|
81 |
if (e & 16)
|
sl@0
|
82 |
{
|
sl@0
|
83 |
/* get extra bits to add to distance base */
|
sl@0
|
84 |
e &= 15;
|
sl@0
|
85 |
GRABBITS(e) /* get extra bits (up to 13) */
|
sl@0
|
86 |
d = t->base + ((uInt)b & inflate_mask[e]);
|
sl@0
|
87 |
DUMPBITS(e)
|
sl@0
|
88 |
Tracevv((stderr, "inflate: * distance %u\n", d));
|
sl@0
|
89 |
|
sl@0
|
90 |
/* do the copy */
|
sl@0
|
91 |
m -= c;
|
sl@0
|
92 |
if ((uInt)(q - s->window) >= d) /* offset before dest */
|
sl@0
|
93 |
{ /* just copy */
|
sl@0
|
94 |
r = q - d;
|
sl@0
|
95 |
*q++ = *r++; c--; /* minimum count is three, */
|
sl@0
|
96 |
*q++ = *r++; c--; /* so unroll loop a little */
|
sl@0
|
97 |
}
|
sl@0
|
98 |
else /* else offset after destination */
|
sl@0
|
99 |
{
|
sl@0
|
100 |
e = d - (uInt)(q - s->window); /* bytes from offset to end */
|
sl@0
|
101 |
r = s->end - e; /* pointer to offset */
|
sl@0
|
102 |
if (c > e) /* if source crosses, */
|
sl@0
|
103 |
{
|
sl@0
|
104 |
c -= e; /* copy to end of window */
|
sl@0
|
105 |
do {
|
sl@0
|
106 |
*q++ = *r++;
|
sl@0
|
107 |
} while (--e);
|
sl@0
|
108 |
r = s->window; /* copy rest from start of window */
|
sl@0
|
109 |
}
|
sl@0
|
110 |
}
|
sl@0
|
111 |
do { /* copy all or what's left */
|
sl@0
|
112 |
*q++ = *r++;
|
sl@0
|
113 |
} while (--c);
|
sl@0
|
114 |
break;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
else if ((e & 64) == 0)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
t += t->base;
|
sl@0
|
119 |
e = (t += ((uInt)b & inflate_mask[e]))->exop;
|
sl@0
|
120 |
}
|
sl@0
|
121 |
else
|
sl@0
|
122 |
{
|
sl@0
|
123 |
z->msg = (char*)"invalid distance code";
|
sl@0
|
124 |
UNGRAB
|
sl@0
|
125 |
UPDATE
|
sl@0
|
126 |
return Z_DATA_ERROR;
|
sl@0
|
127 |
}
|
sl@0
|
128 |
} while (1);
|
sl@0
|
129 |
break;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
if ((e & 64) == 0)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
t += t->base;
|
sl@0
|
134 |
if ((e = (t += ((uInt)b & inflate_mask[e]))->exop) == 0)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
DUMPBITS(t->bits)
|
sl@0
|
137 |
Tracevv((stderr, t->base >= 0x20 && t->base < 0x7f ?
|
sl@0
|
138 |
"inflate: * literal '%c'\n" :
|
sl@0
|
139 |
"inflate: * literal 0x%02x\n", t->base));
|
sl@0
|
140 |
*q++ = (Byte)t->base;
|
sl@0
|
141 |
m--;
|
sl@0
|
142 |
break;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
}
|
sl@0
|
145 |
else if (e & 32)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
Tracevv((stderr, "inflate: * end of block\n"));
|
sl@0
|
148 |
UNGRAB
|
sl@0
|
149 |
UPDATE
|
sl@0
|
150 |
return Z_STREAM_END;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
else
|
sl@0
|
153 |
{
|
sl@0
|
154 |
z->msg = (char*)"invalid literal/length code";
|
sl@0
|
155 |
UNGRAB
|
sl@0
|
156 |
UPDATE
|
sl@0
|
157 |
return Z_DATA_ERROR;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
} while (1);
|
sl@0
|
160 |
} while (m >= 258 && n >= 10);
|
sl@0
|
161 |
|
sl@0
|
162 |
/* not enough input or output--restore pointers and return */
|
sl@0
|
163 |
UNGRAB
|
sl@0
|
164 |
UPDATE
|
sl@0
|
165 |
return Z_OK;
|
sl@0
|
166 |
}
|