cannam@89
|
1 /* gzread.c -- zlib functions for reading gzip files
|
cannam@89
|
2 * Copyright (C) 2004, 2005, 2010, 2011, 2012 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 #include "gzguts.h"
|
cannam@89
|
7
|
cannam@89
|
8 /* Local functions */
|
cannam@89
|
9 local int gz_load OF((gz_statep, unsigned char *, unsigned, unsigned *));
|
cannam@89
|
10 local int gz_avail OF((gz_statep));
|
cannam@89
|
11 local int gz_look OF((gz_statep));
|
cannam@89
|
12 local int gz_decomp OF((gz_statep));
|
cannam@89
|
13 local int gz_fetch OF((gz_statep));
|
cannam@89
|
14 local int gz_skip OF((gz_statep, z_off64_t));
|
cannam@89
|
15
|
cannam@89
|
16 /* Use read() to load a buffer -- return -1 on error, otherwise 0. Read from
|
cannam@89
|
17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
|
cannam@89
|
18 This function needs to loop on read(), since read() is not guaranteed to
|
cannam@89
|
19 read the number of bytes requested, depending on the type of descriptor. */
|
cannam@89
|
20 local int gz_load(state, buf, len, have)
|
cannam@89
|
21 gz_statep state;
|
cannam@89
|
22 unsigned char *buf;
|
cannam@89
|
23 unsigned len;
|
cannam@89
|
24 unsigned *have;
|
cannam@89
|
25 {
|
cannam@89
|
26 int ret;
|
cannam@89
|
27
|
cannam@89
|
28 *have = 0;
|
cannam@89
|
29 do {
|
cannam@89
|
30 ret = read(state->fd, buf + *have, len - *have);
|
cannam@89
|
31 if (ret <= 0)
|
cannam@89
|
32 break;
|
cannam@89
|
33 *have += ret;
|
cannam@89
|
34 } while (*have < len);
|
cannam@89
|
35 if (ret < 0) {
|
cannam@89
|
36 gz_error(state, Z_ERRNO, zstrerror());
|
cannam@89
|
37 return -1;
|
cannam@89
|
38 }
|
cannam@89
|
39 if (ret == 0)
|
cannam@89
|
40 state->eof = 1;
|
cannam@89
|
41 return 0;
|
cannam@89
|
42 }
|
cannam@89
|
43
|
cannam@89
|
44 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
|
cannam@89
|
45 error, 0 otherwise. Note that the eof flag is set when the end of the input
|
cannam@89
|
46 file is reached, even though there may be unused data in the buffer. Once
|
cannam@89
|
47 that data has been used, no more attempts will be made to read the file.
|
cannam@89
|
48 If strm->avail_in != 0, then the current data is moved to the beginning of
|
cannam@89
|
49 the input buffer, and then the remainder of the buffer is loaded with the
|
cannam@89
|
50 available data from the input file. */
|
cannam@89
|
51 local int gz_avail(state)
|
cannam@89
|
52 gz_statep state;
|
cannam@89
|
53 {
|
cannam@89
|
54 unsigned got;
|
cannam@89
|
55 z_streamp strm = &(state->strm);
|
cannam@89
|
56
|
cannam@89
|
57 if (state->err != Z_OK && state->err != Z_BUF_ERROR)
|
cannam@89
|
58 return -1;
|
cannam@89
|
59 if (state->eof == 0) {
|
cannam@89
|
60 if (strm->avail_in) { /* copy what's there to the start */
|
cannam@89
|
61 unsigned char *p = state->in, *q = strm->next_in;
|
cannam@89
|
62 unsigned n = strm->avail_in;
|
cannam@89
|
63 do {
|
cannam@89
|
64 *p++ = *q++;
|
cannam@89
|
65 } while (--n);
|
cannam@89
|
66 }
|
cannam@89
|
67 if (gz_load(state, state->in + strm->avail_in,
|
cannam@89
|
68 state->size - strm->avail_in, &got) == -1)
|
cannam@89
|
69 return -1;
|
cannam@89
|
70 strm->avail_in += got;
|
cannam@89
|
71 strm->next_in = state->in;
|
cannam@89
|
72 }
|
cannam@89
|
73 return 0;
|
cannam@89
|
74 }
|
cannam@89
|
75
|
cannam@89
|
76 /* Look for gzip header, set up for inflate or copy. state->x.have must be 0.
|
cannam@89
|
77 If this is the first time in, allocate required memory. state->how will be
|
cannam@89
|
78 left unchanged if there is no more input data available, will be set to COPY
|
cannam@89
|
79 if there is no gzip header and direct copying will be performed, or it will
|
cannam@89
|
80 be set to GZIP for decompression. If direct copying, then leftover input
|
cannam@89
|
81 data from the input buffer will be copied to the output buffer. In that
|
cannam@89
|
82 case, all further file reads will be directly to either the output buffer or
|
cannam@89
|
83 a user buffer. If decompressing, the inflate state will be initialized.
|
cannam@89
|
84 gz_look() will return 0 on success or -1 on failure. */
|
cannam@89
|
85 local int gz_look(state)
|
cannam@89
|
86 gz_statep state;
|
cannam@89
|
87 {
|
cannam@89
|
88 z_streamp strm = &(state->strm);
|
cannam@89
|
89
|
cannam@89
|
90 /* allocate read buffers and inflate memory */
|
cannam@89
|
91 if (state->size == 0) {
|
cannam@89
|
92 /* allocate buffers */
|
cannam@89
|
93 state->in = malloc(state->want);
|
cannam@89
|
94 state->out = malloc(state->want << 1);
|
cannam@89
|
95 if (state->in == NULL || state->out == NULL) {
|
cannam@89
|
96 if (state->out != NULL)
|
cannam@89
|
97 free(state->out);
|
cannam@89
|
98 if (state->in != NULL)
|
cannam@89
|
99 free(state->in);
|
cannam@89
|
100 gz_error(state, Z_MEM_ERROR, "out of memory");
|
cannam@89
|
101 return -1;
|
cannam@89
|
102 }
|
cannam@89
|
103 state->size = state->want;
|
cannam@89
|
104
|
cannam@89
|
105 /* allocate inflate memory */
|
cannam@89
|
106 state->strm.zalloc = Z_NULL;
|
cannam@89
|
107 state->strm.zfree = Z_NULL;
|
cannam@89
|
108 state->strm.opaque = Z_NULL;
|
cannam@89
|
109 state->strm.avail_in = 0;
|
cannam@89
|
110 state->strm.next_in = Z_NULL;
|
cannam@89
|
111 if (inflateInit2(&(state->strm), 15 + 16) != Z_OK) { /* gunzip */
|
cannam@89
|
112 free(state->out);
|
cannam@89
|
113 free(state->in);
|
cannam@89
|
114 state->size = 0;
|
cannam@89
|
115 gz_error(state, Z_MEM_ERROR, "out of memory");
|
cannam@89
|
116 return -1;
|
cannam@89
|
117 }
|
cannam@89
|
118 }
|
cannam@89
|
119
|
cannam@89
|
120 /* get at least the magic bytes in the input buffer */
|
cannam@89
|
121 if (strm->avail_in < 2) {
|
cannam@89
|
122 if (gz_avail(state) == -1)
|
cannam@89
|
123 return -1;
|
cannam@89
|
124 if (strm->avail_in == 0)
|
cannam@89
|
125 return 0;
|
cannam@89
|
126 }
|
cannam@89
|
127
|
cannam@89
|
128 /* look for gzip magic bytes -- if there, do gzip decoding (note: there is
|
cannam@89
|
129 a logical dilemma here when considering the case of a partially written
|
cannam@89
|
130 gzip file, to wit, if a single 31 byte is written, then we cannot tell
|
cannam@89
|
131 whether this is a single-byte file, or just a partially written gzip
|
cannam@89
|
132 file -- for here we assume that if a gzip file is being written, then
|
cannam@89
|
133 the header will be written in a single operation, so that reading a
|
cannam@89
|
134 single byte is sufficient indication that it is not a gzip file) */
|
cannam@89
|
135 if (strm->avail_in > 1 &&
|
cannam@89
|
136 strm->next_in[0] == 31 && strm->next_in[1] == 139) {
|
cannam@89
|
137 inflateReset(strm);
|
cannam@89
|
138 state->how = GZIP;
|
cannam@89
|
139 state->direct = 0;
|
cannam@89
|
140 return 0;
|
cannam@89
|
141 }
|
cannam@89
|
142
|
cannam@89
|
143 /* no gzip header -- if we were decoding gzip before, then this is trailing
|
cannam@89
|
144 garbage. Ignore the trailing garbage and finish. */
|
cannam@89
|
145 if (state->direct == 0) {
|
cannam@89
|
146 strm->avail_in = 0;
|
cannam@89
|
147 state->eof = 1;
|
cannam@89
|
148 state->x.have = 0;
|
cannam@89
|
149 return 0;
|
cannam@89
|
150 }
|
cannam@89
|
151
|
cannam@89
|
152 /* doing raw i/o, copy any leftover input to output -- this assumes that
|
cannam@89
|
153 the output buffer is larger than the input buffer, which also assures
|
cannam@89
|
154 space for gzungetc() */
|
cannam@89
|
155 state->x.next = state->out;
|
cannam@89
|
156 if (strm->avail_in) {
|
cannam@89
|
157 memcpy(state->x.next, strm->next_in, strm->avail_in);
|
cannam@89
|
158 state->x.have = strm->avail_in;
|
cannam@89
|
159 strm->avail_in = 0;
|
cannam@89
|
160 }
|
cannam@89
|
161 state->how = COPY;
|
cannam@89
|
162 state->direct = 1;
|
cannam@89
|
163 return 0;
|
cannam@89
|
164 }
|
cannam@89
|
165
|
cannam@89
|
166 /* Decompress from input to the provided next_out and avail_out in the state.
|
cannam@89
|
167 On return, state->x.have and state->x.next point to the just decompressed
|
cannam@89
|
168 data. If the gzip stream completes, state->how is reset to LOOK to look for
|
cannam@89
|
169 the next gzip stream or raw data, once state->x.have is depleted. Returns 0
|
cannam@89
|
170 on success, -1 on failure. */
|
cannam@89
|
171 local int gz_decomp(state)
|
cannam@89
|
172 gz_statep state;
|
cannam@89
|
173 {
|
cannam@89
|
174 int ret = Z_OK;
|
cannam@89
|
175 unsigned had;
|
cannam@89
|
176 z_streamp strm = &(state->strm);
|
cannam@89
|
177
|
cannam@89
|
178 /* fill output buffer up to end of deflate stream */
|
cannam@89
|
179 had = strm->avail_out;
|
cannam@89
|
180 do {
|
cannam@89
|
181 /* get more input for inflate() */
|
cannam@89
|
182 if (strm->avail_in == 0 && gz_avail(state) == -1)
|
cannam@89
|
183 return -1;
|
cannam@89
|
184 if (strm->avail_in == 0) {
|
cannam@89
|
185 gz_error(state, Z_BUF_ERROR, "unexpected end of file");
|
cannam@89
|
186 break;
|
cannam@89
|
187 }
|
cannam@89
|
188
|
cannam@89
|
189 /* decompress and handle errors */
|
cannam@89
|
190 ret = inflate(strm, Z_NO_FLUSH);
|
cannam@89
|
191 if (ret == Z_STREAM_ERROR || ret == Z_NEED_DICT) {
|
cannam@89
|
192 gz_error(state, Z_STREAM_ERROR,
|
cannam@89
|
193 "internal error: inflate stream corrupt");
|
cannam@89
|
194 return -1;
|
cannam@89
|
195 }
|
cannam@89
|
196 if (ret == Z_MEM_ERROR) {
|
cannam@89
|
197 gz_error(state, Z_MEM_ERROR, "out of memory");
|
cannam@89
|
198 return -1;
|
cannam@89
|
199 }
|
cannam@89
|
200 if (ret == Z_DATA_ERROR) { /* deflate stream invalid */
|
cannam@89
|
201 gz_error(state, Z_DATA_ERROR,
|
cannam@89
|
202 strm->msg == NULL ? "compressed data error" : strm->msg);
|
cannam@89
|
203 return -1;
|
cannam@89
|
204 }
|
cannam@89
|
205 } while (strm->avail_out && ret != Z_STREAM_END);
|
cannam@89
|
206
|
cannam@89
|
207 /* update available output */
|
cannam@89
|
208 state->x.have = had - strm->avail_out;
|
cannam@89
|
209 state->x.next = strm->next_out - state->x.have;
|
cannam@89
|
210
|
cannam@89
|
211 /* if the gzip stream completed successfully, look for another */
|
cannam@89
|
212 if (ret == Z_STREAM_END)
|
cannam@89
|
213 state->how = LOOK;
|
cannam@89
|
214
|
cannam@89
|
215 /* good decompression */
|
cannam@89
|
216 return 0;
|
cannam@89
|
217 }
|
cannam@89
|
218
|
cannam@89
|
219 /* Fetch data and put it in the output buffer. Assumes state->x.have is 0.
|
cannam@89
|
220 Data is either copied from the input file or decompressed from the input
|
cannam@89
|
221 file depending on state->how. If state->how is LOOK, then a gzip header is
|
cannam@89
|
222 looked for to determine whether to copy or decompress. Returns -1 on error,
|
cannam@89
|
223 otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the
|
cannam@89
|
224 end of the input file has been reached and all data has been processed. */
|
cannam@89
|
225 local int gz_fetch(state)
|
cannam@89
|
226 gz_statep state;
|
cannam@89
|
227 {
|
cannam@89
|
228 z_streamp strm = &(state->strm);
|
cannam@89
|
229
|
cannam@89
|
230 do {
|
cannam@89
|
231 switch(state->how) {
|
cannam@89
|
232 case LOOK: /* -> LOOK, COPY (only if never GZIP), or GZIP */
|
cannam@89
|
233 if (gz_look(state) == -1)
|
cannam@89
|
234 return -1;
|
cannam@89
|
235 if (state->how == LOOK)
|
cannam@89
|
236 return 0;
|
cannam@89
|
237 break;
|
cannam@89
|
238 case COPY: /* -> COPY */
|
cannam@89
|
239 if (gz_load(state, state->out, state->size << 1, &(state->x.have))
|
cannam@89
|
240 == -1)
|
cannam@89
|
241 return -1;
|
cannam@89
|
242 state->x.next = state->out;
|
cannam@89
|
243 return 0;
|
cannam@89
|
244 case GZIP: /* -> GZIP or LOOK (if end of gzip stream) */
|
cannam@89
|
245 strm->avail_out = state->size << 1;
|
cannam@89
|
246 strm->next_out = state->out;
|
cannam@89
|
247 if (gz_decomp(state) == -1)
|
cannam@89
|
248 return -1;
|
cannam@89
|
249 }
|
cannam@89
|
250 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
|
cannam@89
|
251 return 0;
|
cannam@89
|
252 }
|
cannam@89
|
253
|
cannam@89
|
254 /* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */
|
cannam@89
|
255 local int gz_skip(state, len)
|
cannam@89
|
256 gz_statep state;
|
cannam@89
|
257 z_off64_t len;
|
cannam@89
|
258 {
|
cannam@89
|
259 unsigned n;
|
cannam@89
|
260
|
cannam@89
|
261 /* skip over len bytes or reach end-of-file, whichever comes first */
|
cannam@89
|
262 while (len)
|
cannam@89
|
263 /* skip over whatever is in output buffer */
|
cannam@89
|
264 if (state->x.have) {
|
cannam@89
|
265 n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ?
|
cannam@89
|
266 (unsigned)len : state->x.have;
|
cannam@89
|
267 state->x.have -= n;
|
cannam@89
|
268 state->x.next += n;
|
cannam@89
|
269 state->x.pos += n;
|
cannam@89
|
270 len -= n;
|
cannam@89
|
271 }
|
cannam@89
|
272
|
cannam@89
|
273 /* output buffer empty -- return if we're at the end of the input */
|
cannam@89
|
274 else if (state->eof && state->strm.avail_in == 0)
|
cannam@89
|
275 break;
|
cannam@89
|
276
|
cannam@89
|
277 /* need more data to skip -- load up output buffer */
|
cannam@89
|
278 else {
|
cannam@89
|
279 /* get more output, looking for header if required */
|
cannam@89
|
280 if (gz_fetch(state) == -1)
|
cannam@89
|
281 return -1;
|
cannam@89
|
282 }
|
cannam@89
|
283 return 0;
|
cannam@89
|
284 }
|
cannam@89
|
285
|
cannam@89
|
286 /* -- see zlib.h -- */
|
cannam@89
|
287 int ZEXPORT gzread(file, buf, len)
|
cannam@89
|
288 gzFile file;
|
cannam@89
|
289 voidp buf;
|
cannam@89
|
290 unsigned len;
|
cannam@89
|
291 {
|
cannam@89
|
292 unsigned got, n;
|
cannam@89
|
293 gz_statep state;
|
cannam@89
|
294 z_streamp strm;
|
cannam@89
|
295
|
cannam@89
|
296 /* get internal structure */
|
cannam@89
|
297 if (file == NULL)
|
cannam@89
|
298 return -1;
|
cannam@89
|
299 state = (gz_statep)file;
|
cannam@89
|
300 strm = &(state->strm);
|
cannam@89
|
301
|
cannam@89
|
302 /* check that we're reading and that there's no (serious) error */
|
cannam@89
|
303 if (state->mode != GZ_READ ||
|
cannam@89
|
304 (state->err != Z_OK && state->err != Z_BUF_ERROR))
|
cannam@89
|
305 return -1;
|
cannam@89
|
306
|
cannam@89
|
307 /* since an int is returned, make sure len fits in one, otherwise return
|
cannam@89
|
308 with an error (this avoids the flaw in the interface) */
|
cannam@89
|
309 if ((int)len < 0) {
|
cannam@89
|
310 gz_error(state, Z_DATA_ERROR, "requested length does not fit in int");
|
cannam@89
|
311 return -1;
|
cannam@89
|
312 }
|
cannam@89
|
313
|
cannam@89
|
314 /* if len is zero, avoid unnecessary operations */
|
cannam@89
|
315 if (len == 0)
|
cannam@89
|
316 return 0;
|
cannam@89
|
317
|
cannam@89
|
318 /* process a skip request */
|
cannam@89
|
319 if (state->seek) {
|
cannam@89
|
320 state->seek = 0;
|
cannam@89
|
321 if (gz_skip(state, state->skip) == -1)
|
cannam@89
|
322 return -1;
|
cannam@89
|
323 }
|
cannam@89
|
324
|
cannam@89
|
325 /* get len bytes to buf, or less than len if at the end */
|
cannam@89
|
326 got = 0;
|
cannam@89
|
327 do {
|
cannam@89
|
328 /* first just try copying data from the output buffer */
|
cannam@89
|
329 if (state->x.have) {
|
cannam@89
|
330 n = state->x.have > len ? len : state->x.have;
|
cannam@89
|
331 memcpy(buf, state->x.next, n);
|
cannam@89
|
332 state->x.next += n;
|
cannam@89
|
333 state->x.have -= n;
|
cannam@89
|
334 }
|
cannam@89
|
335
|
cannam@89
|
336 /* output buffer empty -- return if we're at the end of the input */
|
cannam@89
|
337 else if (state->eof && strm->avail_in == 0) {
|
cannam@89
|
338 state->past = 1; /* tried to read past end */
|
cannam@89
|
339 break;
|
cannam@89
|
340 }
|
cannam@89
|
341
|
cannam@89
|
342 /* need output data -- for small len or new stream load up our output
|
cannam@89
|
343 buffer */
|
cannam@89
|
344 else if (state->how == LOOK || len < (state->size << 1)) {
|
cannam@89
|
345 /* get more output, looking for header if required */
|
cannam@89
|
346 if (gz_fetch(state) == -1)
|
cannam@89
|
347 return -1;
|
cannam@89
|
348 continue; /* no progress yet -- go back to copy above */
|
cannam@89
|
349 /* the copy above assures that we will leave with space in the
|
cannam@89
|
350 output buffer, allowing at least one gzungetc() to succeed */
|
cannam@89
|
351 }
|
cannam@89
|
352
|
cannam@89
|
353 /* large len -- read directly into user buffer */
|
cannam@89
|
354 else if (state->how == COPY) { /* read directly */
|
cannam@89
|
355 if (gz_load(state, buf, len, &n) == -1)
|
cannam@89
|
356 return -1;
|
cannam@89
|
357 }
|
cannam@89
|
358
|
cannam@89
|
359 /* large len -- decompress directly into user buffer */
|
cannam@89
|
360 else { /* state->how == GZIP */
|
cannam@89
|
361 strm->avail_out = len;
|
cannam@89
|
362 strm->next_out = buf;
|
cannam@89
|
363 if (gz_decomp(state) == -1)
|
cannam@89
|
364 return -1;
|
cannam@89
|
365 n = state->x.have;
|
cannam@89
|
366 state->x.have = 0;
|
cannam@89
|
367 }
|
cannam@89
|
368
|
cannam@89
|
369 /* update progress */
|
cannam@89
|
370 len -= n;
|
cannam@89
|
371 buf = (char *)buf + n;
|
cannam@89
|
372 got += n;
|
cannam@89
|
373 state->x.pos += n;
|
cannam@89
|
374 } while (len);
|
cannam@89
|
375
|
cannam@89
|
376 /* return number of bytes read into user buffer (will fit in int) */
|
cannam@89
|
377 return (int)got;
|
cannam@89
|
378 }
|
cannam@89
|
379
|
cannam@89
|
380 /* -- see zlib.h -- */
|
cannam@89
|
381 #undef gzgetc
|
cannam@89
|
382 int ZEXPORT gzgetc(file)
|
cannam@89
|
383 gzFile file;
|
cannam@89
|
384 {
|
cannam@89
|
385 int ret;
|
cannam@89
|
386 unsigned char buf[1];
|
cannam@89
|
387 gz_statep state;
|
cannam@89
|
388
|
cannam@89
|
389 /* get internal structure */
|
cannam@89
|
390 if (file == NULL)
|
cannam@89
|
391 return -1;
|
cannam@89
|
392 state = (gz_statep)file;
|
cannam@89
|
393
|
cannam@89
|
394 /* check that we're reading and that there's no (serious) error */
|
cannam@89
|
395 if (state->mode != GZ_READ ||
|
cannam@89
|
396 (state->err != Z_OK && state->err != Z_BUF_ERROR))
|
cannam@89
|
397 return -1;
|
cannam@89
|
398
|
cannam@89
|
399 /* try output buffer (no need to check for skip request) */
|
cannam@89
|
400 if (state->x.have) {
|
cannam@89
|
401 state->x.have--;
|
cannam@89
|
402 state->x.pos++;
|
cannam@89
|
403 return *(state->x.next)++;
|
cannam@89
|
404 }
|
cannam@89
|
405
|
cannam@89
|
406 /* nothing there -- try gzread() */
|
cannam@89
|
407 ret = gzread(file, buf, 1);
|
cannam@89
|
408 return ret < 1 ? -1 : buf[0];
|
cannam@89
|
409 }
|
cannam@89
|
410
|
cannam@89
|
411 int ZEXPORT gzgetc_(file)
|
cannam@89
|
412 gzFile file;
|
cannam@89
|
413 {
|
cannam@89
|
414 return gzgetc(file);
|
cannam@89
|
415 }
|
cannam@89
|
416
|
cannam@89
|
417 /* -- see zlib.h -- */
|
cannam@89
|
418 int ZEXPORT gzungetc(c, file)
|
cannam@89
|
419 int c;
|
cannam@89
|
420 gzFile file;
|
cannam@89
|
421 {
|
cannam@89
|
422 gz_statep state;
|
cannam@89
|
423
|
cannam@89
|
424 /* get internal structure */
|
cannam@89
|
425 if (file == NULL)
|
cannam@89
|
426 return -1;
|
cannam@89
|
427 state = (gz_statep)file;
|
cannam@89
|
428
|
cannam@89
|
429 /* check that we're reading and that there's no (serious) error */
|
cannam@89
|
430 if (state->mode != GZ_READ ||
|
cannam@89
|
431 (state->err != Z_OK && state->err != Z_BUF_ERROR))
|
cannam@89
|
432 return -1;
|
cannam@89
|
433
|
cannam@89
|
434 /* process a skip request */
|
cannam@89
|
435 if (state->seek) {
|
cannam@89
|
436 state->seek = 0;
|
cannam@89
|
437 if (gz_skip(state, state->skip) == -1)
|
cannam@89
|
438 return -1;
|
cannam@89
|
439 }
|
cannam@89
|
440
|
cannam@89
|
441 /* can't push EOF */
|
cannam@89
|
442 if (c < 0)
|
cannam@89
|
443 return -1;
|
cannam@89
|
444
|
cannam@89
|
445 /* if output buffer empty, put byte at end (allows more pushing) */
|
cannam@89
|
446 if (state->x.have == 0) {
|
cannam@89
|
447 state->x.have = 1;
|
cannam@89
|
448 state->x.next = state->out + (state->size << 1) - 1;
|
cannam@89
|
449 state->x.next[0] = c;
|
cannam@89
|
450 state->x.pos--;
|
cannam@89
|
451 state->past = 0;
|
cannam@89
|
452 return c;
|
cannam@89
|
453 }
|
cannam@89
|
454
|
cannam@89
|
455 /* if no room, give up (must have already done a gzungetc()) */
|
cannam@89
|
456 if (state->x.have == (state->size << 1)) {
|
cannam@89
|
457 gz_error(state, Z_DATA_ERROR, "out of room to push characters");
|
cannam@89
|
458 return -1;
|
cannam@89
|
459 }
|
cannam@89
|
460
|
cannam@89
|
461 /* slide output data if needed and insert byte before existing data */
|
cannam@89
|
462 if (state->x.next == state->out) {
|
cannam@89
|
463 unsigned char *src = state->out + state->x.have;
|
cannam@89
|
464 unsigned char *dest = state->out + (state->size << 1);
|
cannam@89
|
465 while (src > state->out)
|
cannam@89
|
466 *--dest = *--src;
|
cannam@89
|
467 state->x.next = dest;
|
cannam@89
|
468 }
|
cannam@89
|
469 state->x.have++;
|
cannam@89
|
470 state->x.next--;
|
cannam@89
|
471 state->x.next[0] = c;
|
cannam@89
|
472 state->x.pos--;
|
cannam@89
|
473 state->past = 0;
|
cannam@89
|
474 return c;
|
cannam@89
|
475 }
|
cannam@89
|
476
|
cannam@89
|
477 /* -- see zlib.h -- */
|
cannam@89
|
478 char * ZEXPORT gzgets(file, buf, len)
|
cannam@89
|
479 gzFile file;
|
cannam@89
|
480 char *buf;
|
cannam@89
|
481 int len;
|
cannam@89
|
482 {
|
cannam@89
|
483 unsigned left, n;
|
cannam@89
|
484 char *str;
|
cannam@89
|
485 unsigned char *eol;
|
cannam@89
|
486 gz_statep state;
|
cannam@89
|
487
|
cannam@89
|
488 /* check parameters and get internal structure */
|
cannam@89
|
489 if (file == NULL || buf == NULL || len < 1)
|
cannam@89
|
490 return NULL;
|
cannam@89
|
491 state = (gz_statep)file;
|
cannam@89
|
492
|
cannam@89
|
493 /* check that we're reading and that there's no (serious) error */
|
cannam@89
|
494 if (state->mode != GZ_READ ||
|
cannam@89
|
495 (state->err != Z_OK && state->err != Z_BUF_ERROR))
|
cannam@89
|
496 return NULL;
|
cannam@89
|
497
|
cannam@89
|
498 /* process a skip request */
|
cannam@89
|
499 if (state->seek) {
|
cannam@89
|
500 state->seek = 0;
|
cannam@89
|
501 if (gz_skip(state, state->skip) == -1)
|
cannam@89
|
502 return NULL;
|
cannam@89
|
503 }
|
cannam@89
|
504
|
cannam@89
|
505 /* copy output bytes up to new line or len - 1, whichever comes first --
|
cannam@89
|
506 append a terminating zero to the string (we don't check for a zero in
|
cannam@89
|
507 the contents, let the user worry about that) */
|
cannam@89
|
508 str = buf;
|
cannam@89
|
509 left = (unsigned)len - 1;
|
cannam@89
|
510 if (left) do {
|
cannam@89
|
511 /* assure that something is in the output buffer */
|
cannam@89
|
512 if (state->x.have == 0 && gz_fetch(state) == -1)
|
cannam@89
|
513 return NULL; /* error */
|
cannam@89
|
514 if (state->x.have == 0) { /* end of file */
|
cannam@89
|
515 state->past = 1; /* read past end */
|
cannam@89
|
516 break; /* return what we have */
|
cannam@89
|
517 }
|
cannam@89
|
518
|
cannam@89
|
519 /* look for end-of-line in current output buffer */
|
cannam@89
|
520 n = state->x.have > left ? left : state->x.have;
|
cannam@89
|
521 eol = memchr(state->x.next, '\n', n);
|
cannam@89
|
522 if (eol != NULL)
|
cannam@89
|
523 n = (unsigned)(eol - state->x.next) + 1;
|
cannam@89
|
524
|
cannam@89
|
525 /* copy through end-of-line, or remainder if not found */
|
cannam@89
|
526 memcpy(buf, state->x.next, n);
|
cannam@89
|
527 state->x.have -= n;
|
cannam@89
|
528 state->x.next += n;
|
cannam@89
|
529 state->x.pos += n;
|
cannam@89
|
530 left -= n;
|
cannam@89
|
531 buf += n;
|
cannam@89
|
532 } while (left && eol == NULL);
|
cannam@89
|
533
|
cannam@89
|
534 /* return terminated string, or if nothing, end of file */
|
cannam@89
|
535 if (buf == str)
|
cannam@89
|
536 return NULL;
|
cannam@89
|
537 buf[0] = 0;
|
cannam@89
|
538 return str;
|
cannam@89
|
539 }
|
cannam@89
|
540
|
cannam@89
|
541 /* -- see zlib.h -- */
|
cannam@89
|
542 int ZEXPORT gzdirect(file)
|
cannam@89
|
543 gzFile file;
|
cannam@89
|
544 {
|
cannam@89
|
545 gz_statep state;
|
cannam@89
|
546
|
cannam@89
|
547 /* get internal structure */
|
cannam@89
|
548 if (file == NULL)
|
cannam@89
|
549 return 0;
|
cannam@89
|
550 state = (gz_statep)file;
|
cannam@89
|
551
|
cannam@89
|
552 /* if the state is not known, but we can find out, then do so (this is
|
cannam@89
|
553 mainly for right after a gzopen() or gzdopen()) */
|
cannam@89
|
554 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0)
|
cannam@89
|
555 (void)gz_look(state);
|
cannam@89
|
556
|
cannam@89
|
557 /* return 1 if transparent, 0 if processing a gzip stream */
|
cannam@89
|
558 return state->direct;
|
cannam@89
|
559 }
|
cannam@89
|
560
|
cannam@89
|
561 /* -- see zlib.h -- */
|
cannam@89
|
562 int ZEXPORT gzclose_r(file)
|
cannam@89
|
563 gzFile file;
|
cannam@89
|
564 {
|
cannam@89
|
565 int ret, err;
|
cannam@89
|
566 gz_statep state;
|
cannam@89
|
567
|
cannam@89
|
568 /* get internal structure */
|
cannam@89
|
569 if (file == NULL)
|
cannam@89
|
570 return Z_STREAM_ERROR;
|
cannam@89
|
571 state = (gz_statep)file;
|
cannam@89
|
572
|
cannam@89
|
573 /* check that we're reading */
|
cannam@89
|
574 if (state->mode != GZ_READ)
|
cannam@89
|
575 return Z_STREAM_ERROR;
|
cannam@89
|
576
|
cannam@89
|
577 /* free memory and close file */
|
cannam@89
|
578 if (state->size) {
|
cannam@89
|
579 inflateEnd(&(state->strm));
|
cannam@89
|
580 free(state->out);
|
cannam@89
|
581 free(state->in);
|
cannam@89
|
582 }
|
cannam@89
|
583 err = state->err == Z_BUF_ERROR ? Z_BUF_ERROR : Z_OK;
|
cannam@89
|
584 gz_error(state, Z_OK, NULL);
|
cannam@89
|
585 free(state->path);
|
cannam@89
|
586 ret = close(state->fd);
|
cannam@89
|
587 free(state);
|
cannam@89
|
588 return ret ? Z_ERRNO : err;
|
cannam@89
|
589 }
|