sl@0
|
1 |
/* gzio.c -- IO on .gz files
|
sl@0
|
2 |
* Copyright (C) 1995-1998 Jean-loup Gailly.
|
sl@0
|
3 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* Compile this file with -DNO_DEFLATE to avoid the compression code.
|
sl@0
|
6 |
*/
|
sl@0
|
7 |
|
sl@0
|
8 |
/* @(#) $Id$ */
|
sl@0
|
9 |
|
sl@0
|
10 |
#include "zutil.h"
|
sl@0
|
11 |
// include this after zutil so we don't get warning anbout multiple definitons
|
sl@0
|
12 |
// of NULL Markr 6/9/199, Symbian.
|
sl@0
|
13 |
#include <stdio.h>
|
sl@0
|
14 |
|
sl@0
|
15 |
|
sl@0
|
16 |
struct internal_state {int dummy;}; /* for buggy compilers */
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef Z_BUFSIZE
|
sl@0
|
19 |
# ifdef MAXSEG_64K
|
sl@0
|
20 |
# define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
|
sl@0
|
21 |
# else
|
sl@0
|
22 |
# define Z_BUFSIZE 16384
|
sl@0
|
23 |
# endif
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
#ifndef Z_PRINTF_BUFSIZE
|
sl@0
|
26 |
# define Z_PRINTF_BUFSIZE 4096
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
#define ALLOC(size) malloc(size)
|
sl@0
|
30 |
#define TRYFREE(p) {if (p) free(p);}
|
sl@0
|
31 |
|
sl@0
|
32 |
static const int gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */
|
sl@0
|
33 |
|
sl@0
|
34 |
/* gzip flag byte */
|
sl@0
|
35 |
#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
|
sl@0
|
36 |
#define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
|
sl@0
|
37 |
#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
|
sl@0
|
38 |
#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
|
sl@0
|
39 |
#define COMMENT 0x10 /* bit 4 set: file comment present */
|
sl@0
|
40 |
#define RESERVED 0xE0 /* bits 5..7: reserved */
|
sl@0
|
41 |
|
sl@0
|
42 |
typedef struct gz_stream {
|
sl@0
|
43 |
z_stream stream;
|
sl@0
|
44 |
int z_err; /* error code for last stream operation */
|
sl@0
|
45 |
int z_eof; /* set if end of input file */
|
sl@0
|
46 |
FILE *file; /* .gz file */
|
sl@0
|
47 |
Byte *inbuf; /* input buffer */
|
sl@0
|
48 |
Byte *outbuf; /* output buffer */
|
sl@0
|
49 |
uLong crc; /* crc32 of uncompressed data */
|
sl@0
|
50 |
char *msg; /* error message */
|
sl@0
|
51 |
char *path; /* path name for debugging only */
|
sl@0
|
52 |
int transparent; /* 1 if input file is not a .gz file */
|
sl@0
|
53 |
char mode; /* 'w' or 'r' */
|
sl@0
|
54 |
long startpos; /* start of compressed data in file (header skipped) */
|
sl@0
|
55 |
} gz_stream;
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
local gzFile gz_open OF((const char *path, const char *mode, int fd));
|
sl@0
|
59 |
local int do_flush OF((gzFile file, int flush));
|
sl@0
|
60 |
local int get_byte OF((gz_stream *s));
|
sl@0
|
61 |
local void check_header OF((gz_stream *s));
|
sl@0
|
62 |
local int destroy OF((gz_stream *s));
|
sl@0
|
63 |
local void putLong OF((FILE *file, uLong x));
|
sl@0
|
64 |
local uLong getLong OF((gz_stream *s));
|
sl@0
|
65 |
|
sl@0
|
66 |
/* ===========================================================================
|
sl@0
|
67 |
Opens a gzip (.gz) file for reading or writing. The mode parameter
|
sl@0
|
68 |
is as in fopen ("rb" or "wb"). The file is given either by file descriptor
|
sl@0
|
69 |
or path name (if fd == -1).
|
sl@0
|
70 |
gz_open return NULL if the file could not be opened or if there was
|
sl@0
|
71 |
insufficient memory to allocate the (de)compression state; errno
|
sl@0
|
72 |
can be checked to distinguish the two cases (if errno is zero, the
|
sl@0
|
73 |
zlib error is Z_MEM_ERROR).
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
local gzFile gz_open (
|
sl@0
|
76 |
const char *path,
|
sl@0
|
77 |
const char *mode,
|
sl@0
|
78 |
int fd)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
int err;
|
sl@0
|
81 |
int level = Z_DEFAULT_COMPRESSION; /* compression level */
|
sl@0
|
82 |
int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */
|
sl@0
|
83 |
char *p = (char*)mode;
|
sl@0
|
84 |
gz_stream *s;
|
sl@0
|
85 |
char fmode[80]; /* copy of mode, without the compression level */
|
sl@0
|
86 |
char *m = fmode;
|
sl@0
|
87 |
|
sl@0
|
88 |
if (!path || !mode) return Z_NULL;
|
sl@0
|
89 |
|
sl@0
|
90 |
s = (gz_stream *)ALLOC(sizeof(gz_stream));
|
sl@0
|
91 |
if (!s) return Z_NULL;
|
sl@0
|
92 |
|
sl@0
|
93 |
s->stream.zalloc = (alloc_func)0;
|
sl@0
|
94 |
s->stream.zfree = (free_func)0;
|
sl@0
|
95 |
s->stream.opaque = (voidpf)0;
|
sl@0
|
96 |
s->stream.next_in = s->inbuf = Z_NULL;
|
sl@0
|
97 |
s->stream.next_out = s->outbuf = Z_NULL;
|
sl@0
|
98 |
s->stream.avail_in = s->stream.avail_out = 0;
|
sl@0
|
99 |
s->file = NULL;
|
sl@0
|
100 |
s->z_err = Z_OK;
|
sl@0
|
101 |
s->z_eof = 0;
|
sl@0
|
102 |
s->crc = crc32(0L, Z_NULL, 0);
|
sl@0
|
103 |
s->msg = NULL;
|
sl@0
|
104 |
s->transparent = 0;
|
sl@0
|
105 |
|
sl@0
|
106 |
s->path = (char*)ALLOC(strlen(path)+1);
|
sl@0
|
107 |
if (s->path == NULL) {
|
sl@0
|
108 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
109 |
}
|
sl@0
|
110 |
strcpy(s->path, path); /* do this early for debugging */
|
sl@0
|
111 |
|
sl@0
|
112 |
s->mode = '\0';
|
sl@0
|
113 |
do {
|
sl@0
|
114 |
if (*p == 'r') s->mode = 'r';
|
sl@0
|
115 |
if (*p == 'w' || *p == 'a') s->mode = 'w';
|
sl@0
|
116 |
if (*p >= '0' && *p <= '9') {
|
sl@0
|
117 |
level = *p - '0';
|
sl@0
|
118 |
} else if (*p == 'f') {
|
sl@0
|
119 |
strategy = Z_FILTERED;
|
sl@0
|
120 |
} else if (*p == 'h') {
|
sl@0
|
121 |
strategy = Z_HUFFMAN_ONLY;
|
sl@0
|
122 |
} else {
|
sl@0
|
123 |
*m++ = *p; /* copy the mode */
|
sl@0
|
124 |
}
|
sl@0
|
125 |
} while (*p++ && m != fmode + sizeof(fmode));
|
sl@0
|
126 |
if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
127 |
|
sl@0
|
128 |
if (s->mode == 'w') {
|
sl@0
|
129 |
#ifdef NO_DEFLATE
|
sl@0
|
130 |
err = Z_STREAM_ERROR;
|
sl@0
|
131 |
#else
|
sl@0
|
132 |
err = deflateInit2(&(s->stream), level,
|
sl@0
|
133 |
Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
|
sl@0
|
134 |
/* windowBits is passed < 0 to suppress zlib header */
|
sl@0
|
135 |
|
sl@0
|
136 |
s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
|
sl@0
|
137 |
#endif
|
sl@0
|
138 |
if (err != Z_OK || s->outbuf == Z_NULL) {
|
sl@0
|
139 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
} else {
|
sl@0
|
142 |
s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
|
sl@0
|
143 |
|
sl@0
|
144 |
err = inflateInit2(&(s->stream), -MAX_WBITS);
|
sl@0
|
145 |
/* windowBits is passed < 0 to tell that there is no zlib header.
|
sl@0
|
146 |
* Note that in this case inflate *requires* an extra "dummy" byte
|
sl@0
|
147 |
* after the compressed stream in order to complete decompression and
|
sl@0
|
148 |
* return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
|
sl@0
|
149 |
* present after the compressed stream.
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
if (err != Z_OK || s->inbuf == Z_NULL) {
|
sl@0
|
152 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
153 |
}
|
sl@0
|
154 |
}
|
sl@0
|
155 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
156 |
|
sl@0
|
157 |
errno = 0;
|
sl@0
|
158 |
s->file = fd < 0 ? F_OPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
|
sl@0
|
159 |
|
sl@0
|
160 |
if (s->file == NULL) {
|
sl@0
|
161 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
if (s->mode == 'w') {
|
sl@0
|
164 |
/* Write a very simple .gz header:
|
sl@0
|
165 |
*/
|
sl@0
|
166 |
fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1],
|
sl@0
|
167 |
Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE);
|
sl@0
|
168 |
s->startpos = 10L;
|
sl@0
|
169 |
/* We use 10L instead of ftell(s->file) to because ftell causes an
|
sl@0
|
170 |
* fflush on some systems. This version of the library doesn't use
|
sl@0
|
171 |
* startpos anyway in write mode, so this initialization is not
|
sl@0
|
172 |
* necessary.
|
sl@0
|
173 |
*/
|
sl@0
|
174 |
} else {
|
sl@0
|
175 |
check_header(s); /* skip the .gz header */
|
sl@0
|
176 |
s->startpos = (ftell(s->file) - s->stream.avail_in);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
return (gzFile)s;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
/* ===========================================================================
|
sl@0
|
183 |
Opens a gzip (.gz) file for reading or writing.
|
sl@0
|
184 |
*/
|
sl@0
|
185 |
EXPORT_C gzFile ZEXPORT gzopen (
|
sl@0
|
186 |
const char *path,
|
sl@0
|
187 |
const char *mode)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
return gz_open (path, mode, -1);
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
/* ===========================================================================
|
sl@0
|
193 |
Associate a gzFile with the file descriptor fd. fd is not dup'ed here
|
sl@0
|
194 |
to mimic the behavio(u)r of fdopen.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
EXPORT_C gzFile ZEXPORT gzdopen (
|
sl@0
|
197 |
int fd,
|
sl@0
|
198 |
const char *mode)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
char name[20];
|
sl@0
|
201 |
|
sl@0
|
202 |
if (fd < 0) return (gzFile)Z_NULL;
|
sl@0
|
203 |
sprintf(name, "<fd:%d>", fd); /* for debugging */
|
sl@0
|
204 |
|
sl@0
|
205 |
return gz_open (name, mode, fd);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
/* ===========================================================================
|
sl@0
|
209 |
* Update the compression level and strategy
|
sl@0
|
210 |
*/
|
sl@0
|
211 |
EXPORT_C int ZEXPORT gzsetparams (
|
sl@0
|
212 |
gzFile file,
|
sl@0
|
213 |
int level,
|
sl@0
|
214 |
int strategy)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
217 |
|
sl@0
|
218 |
if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
|
sl@0
|
219 |
|
sl@0
|
220 |
/* Make room to allow flushing */
|
sl@0
|
221 |
if (s->stream.avail_out == 0) {
|
sl@0
|
222 |
|
sl@0
|
223 |
s->stream.next_out = s->outbuf;
|
sl@0
|
224 |
if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
|
sl@0
|
225 |
s->z_err = Z_ERRNO;
|
sl@0
|
226 |
}
|
sl@0
|
227 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
return deflateParams (&(s->stream), level, strategy);
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
/* ===========================================================================
|
sl@0
|
234 |
Read a byte from a gz_stream; update next_in and avail_in. Return EOF
|
sl@0
|
235 |
for end of file.
|
sl@0
|
236 |
IN assertion: the stream s has been sucessfully opened for reading.
|
sl@0
|
237 |
*/
|
sl@0
|
238 |
local int get_byte(
|
sl@0
|
239 |
gz_stream *s)
|
sl@0
|
240 |
{
|
sl@0
|
241 |
if (s->z_eof) return EOF;
|
sl@0
|
242 |
if (s->stream.avail_in == 0) {
|
sl@0
|
243 |
errno = 0;
|
sl@0
|
244 |
s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
|
sl@0
|
245 |
if (s->stream.avail_in == 0) {
|
sl@0
|
246 |
s->z_eof = 1;
|
sl@0
|
247 |
if (ferror(s->file)) s->z_err = Z_ERRNO;
|
sl@0
|
248 |
return EOF;
|
sl@0
|
249 |
}
|
sl@0
|
250 |
s->stream.next_in = s->inbuf;
|
sl@0
|
251 |
}
|
sl@0
|
252 |
s->stream.avail_in--;
|
sl@0
|
253 |
return *(s->stream.next_in)++;
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
/* ===========================================================================
|
sl@0
|
257 |
Check the gzip header of a gz_stream opened for reading. Set the stream
|
sl@0
|
258 |
mode to transparent if the gzip magic header is not present; set s->err
|
sl@0
|
259 |
to Z_DATA_ERROR if the magic header is present but the rest of the header
|
sl@0
|
260 |
is incorrect.
|
sl@0
|
261 |
IN assertion: the stream s has already been created sucessfully;
|
sl@0
|
262 |
s->stream.avail_in is zero for the first time, but may be non-zero
|
sl@0
|
263 |
for concatenated .gz files.
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
local void check_header(
|
sl@0
|
266 |
gz_stream *s)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
int method; /* method byte */
|
sl@0
|
269 |
int flags; /* flags byte */
|
sl@0
|
270 |
uInt len;
|
sl@0
|
271 |
int c;
|
sl@0
|
272 |
|
sl@0
|
273 |
/* Check the gzip magic header */
|
sl@0
|
274 |
for (len = 0; len < 2; len++) {
|
sl@0
|
275 |
c = get_byte(s);
|
sl@0
|
276 |
if (c != gz_magic[len]) {
|
sl@0
|
277 |
if (len != 0) s->stream.avail_in++, s->stream.next_in--;
|
sl@0
|
278 |
if (c != EOF) {
|
sl@0
|
279 |
s->stream.avail_in++, s->stream.next_in--;
|
sl@0
|
280 |
s->transparent = 1;
|
sl@0
|
281 |
}
|
sl@0
|
282 |
s->z_err = s->stream.avail_in != 0 ? Z_OK : Z_STREAM_END;
|
sl@0
|
283 |
return;
|
sl@0
|
284 |
}
|
sl@0
|
285 |
}
|
sl@0
|
286 |
method = get_byte(s);
|
sl@0
|
287 |
flags = get_byte(s);
|
sl@0
|
288 |
if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
|
sl@0
|
289 |
s->z_err = Z_DATA_ERROR;
|
sl@0
|
290 |
return;
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|
sl@0
|
293 |
/* Discard time, xflags and OS code: */
|
sl@0
|
294 |
for (len = 0; len < 6; len++) (void)get_byte(s);
|
sl@0
|
295 |
|
sl@0
|
296 |
if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
|
sl@0
|
297 |
len = (uInt)get_byte(s);
|
sl@0
|
298 |
len += ((uInt)get_byte(s))<<8;
|
sl@0
|
299 |
/* len is garbage if EOF but the loop below will quit anyway */
|
sl@0
|
300 |
while (len-- != 0 && get_byte(s) != EOF) ;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
|
sl@0
|
303 |
while ((c = get_byte(s)) != 0 && c != EOF) ;
|
sl@0
|
304 |
}
|
sl@0
|
305 |
if ((flags & COMMENT) != 0) { /* skip the .gz file comment */
|
sl@0
|
306 |
while ((c = get_byte(s)) != 0 && c != EOF) ;
|
sl@0
|
307 |
}
|
sl@0
|
308 |
if ((flags & HEAD_CRC) != 0) { /* skip the header crc */
|
sl@0
|
309 |
for (len = 0; len < 2; len++) (void)get_byte(s);
|
sl@0
|
310 |
}
|
sl@0
|
311 |
s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
|
sl@0
|
312 |
}
|
sl@0
|
313 |
|
sl@0
|
314 |
/* ===========================================================================
|
sl@0
|
315 |
* Cleanup then free the given gz_stream. Return a zlib error code.
|
sl@0
|
316 |
Try freeing in the reverse order of allocations.
|
sl@0
|
317 |
*/
|
sl@0
|
318 |
local int destroy (
|
sl@0
|
319 |
gz_stream *s)
|
sl@0
|
320 |
{
|
sl@0
|
321 |
int err = Z_OK;
|
sl@0
|
322 |
|
sl@0
|
323 |
if (!s) return Z_STREAM_ERROR;
|
sl@0
|
324 |
|
sl@0
|
325 |
TRYFREE(s->msg);
|
sl@0
|
326 |
|
sl@0
|
327 |
if (s->stream.state != NULL) {
|
sl@0
|
328 |
if (s->mode == 'w') {
|
sl@0
|
329 |
#ifdef NO_DEFLATE
|
sl@0
|
330 |
err = Z_STREAM_ERROR;
|
sl@0
|
331 |
#else
|
sl@0
|
332 |
err = deflateEnd(&(s->stream));
|
sl@0
|
333 |
#endif
|
sl@0
|
334 |
} else if (s->mode == 'r') {
|
sl@0
|
335 |
err = inflateEnd(&(s->stream));
|
sl@0
|
336 |
}
|
sl@0
|
337 |
}
|
sl@0
|
338 |
if (s->file != NULL && fclose(s->file)) {
|
sl@0
|
339 |
#ifdef ESPIPE
|
sl@0
|
340 |
if (errno != ESPIPE) /* fclose is broken for pipes in HP/UX */
|
sl@0
|
341 |
#endif
|
sl@0
|
342 |
err = Z_ERRNO;
|
sl@0
|
343 |
}
|
sl@0
|
344 |
if (s->z_err < 0) err = s->z_err;
|
sl@0
|
345 |
|
sl@0
|
346 |
TRYFREE(s->inbuf);
|
sl@0
|
347 |
TRYFREE(s->outbuf);
|
sl@0
|
348 |
TRYFREE(s->path);
|
sl@0
|
349 |
TRYFREE(s);
|
sl@0
|
350 |
return err;
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
/* ===========================================================================
|
sl@0
|
354 |
Reads the given number of uncompressed bytes from the compressed file.
|
sl@0
|
355 |
gzread returns the number of bytes actually read (0 for end of file).
|
sl@0
|
356 |
*/
|
sl@0
|
357 |
EXPORT_C int ZEXPORT gzread (
|
sl@0
|
358 |
gzFile file,
|
sl@0
|
359 |
voidp buf,
|
sl@0
|
360 |
unsigned len)
|
sl@0
|
361 |
{
|
sl@0
|
362 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
363 |
Bytef *start = (Bytef*)buf; /* starting point for crc computation */
|
sl@0
|
364 |
Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */
|
sl@0
|
365 |
|
sl@0
|
366 |
if (s == NULL || s->mode != 'r') return Z_STREAM_ERROR;
|
sl@0
|
367 |
|
sl@0
|
368 |
if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) return -1;
|
sl@0
|
369 |
if (s->z_err == Z_STREAM_END) return 0; /* EOF */
|
sl@0
|
370 |
|
sl@0
|
371 |
next_out = (Byte*)buf;
|
sl@0
|
372 |
s->stream.next_out = (Bytef*)buf;
|
sl@0
|
373 |
s->stream.avail_out = len;
|
sl@0
|
374 |
|
sl@0
|
375 |
while (s->stream.avail_out != 0) {
|
sl@0
|
376 |
|
sl@0
|
377 |
if (s->transparent) {
|
sl@0
|
378 |
/* Copy first the lookahead bytes: */
|
sl@0
|
379 |
uInt n = s->stream.avail_in;
|
sl@0
|
380 |
if (n > s->stream.avail_out) n = s->stream.avail_out;
|
sl@0
|
381 |
if (n > 0) {
|
sl@0
|
382 |
zmemcpy(s->stream.next_out, s->stream.next_in, n);
|
sl@0
|
383 |
next_out += n;
|
sl@0
|
384 |
s->stream.next_out = next_out;
|
sl@0
|
385 |
s->stream.next_in += n;
|
sl@0
|
386 |
s->stream.avail_out -= n;
|
sl@0
|
387 |
s->stream.avail_in -= n;
|
sl@0
|
388 |
}
|
sl@0
|
389 |
if (s->stream.avail_out > 0) {
|
sl@0
|
390 |
s->stream.avail_out -= fread(next_out, 1, s->stream.avail_out,
|
sl@0
|
391 |
s->file);
|
sl@0
|
392 |
}
|
sl@0
|
393 |
len -= s->stream.avail_out;
|
sl@0
|
394 |
s->stream.total_in += (uLong)len;
|
sl@0
|
395 |
s->stream.total_out += (uLong)len;
|
sl@0
|
396 |
if (len == 0) s->z_eof = 1;
|
sl@0
|
397 |
return (int)len;
|
sl@0
|
398 |
}
|
sl@0
|
399 |
if (s->stream.avail_in == 0 && !s->z_eof) {
|
sl@0
|
400 |
|
sl@0
|
401 |
errno = 0;
|
sl@0
|
402 |
s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
|
sl@0
|
403 |
if (s->stream.avail_in == 0) {
|
sl@0
|
404 |
s->z_eof = 1;
|
sl@0
|
405 |
if (ferror(s->file)) {
|
sl@0
|
406 |
s->z_err = Z_ERRNO;
|
sl@0
|
407 |
break;
|
sl@0
|
408 |
}
|
sl@0
|
409 |
}
|
sl@0
|
410 |
s->stream.next_in = s->inbuf;
|
sl@0
|
411 |
}
|
sl@0
|
412 |
s->z_err = inflate(&(s->stream), Z_NO_FLUSH);
|
sl@0
|
413 |
|
sl@0
|
414 |
if (s->z_err == Z_STREAM_END) {
|
sl@0
|
415 |
/* Check CRC and original size */
|
sl@0
|
416 |
s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
|
sl@0
|
417 |
start = s->stream.next_out;
|
sl@0
|
418 |
|
sl@0
|
419 |
if (getLong(s) != s->crc) {
|
sl@0
|
420 |
s->z_err = Z_DATA_ERROR;
|
sl@0
|
421 |
} else {
|
sl@0
|
422 |
(void)getLong(s);
|
sl@0
|
423 |
/* The uncompressed length returned by above getlong() may
|
sl@0
|
424 |
* be different from s->stream.total_out) in case of
|
sl@0
|
425 |
* concatenated .gz files. Check for such files:
|
sl@0
|
426 |
*/
|
sl@0
|
427 |
check_header(s);
|
sl@0
|
428 |
if (s->z_err == Z_OK) {
|
sl@0
|
429 |
uLong total_in = s->stream.total_in;
|
sl@0
|
430 |
uLong total_out = s->stream.total_out;
|
sl@0
|
431 |
|
sl@0
|
432 |
inflateReset(&(s->stream));
|
sl@0
|
433 |
s->stream.total_in = total_in;
|
sl@0
|
434 |
s->stream.total_out = total_out;
|
sl@0
|
435 |
s->crc = crc32(0L, Z_NULL, 0);
|
sl@0
|
436 |
}
|
sl@0
|
437 |
}
|
sl@0
|
438 |
}
|
sl@0
|
439 |
if (s->z_err != Z_OK || s->z_eof) break;
|
sl@0
|
440 |
}
|
sl@0
|
441 |
s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
|
sl@0
|
442 |
|
sl@0
|
443 |
return (int)(len - s->stream.avail_out);
|
sl@0
|
444 |
}
|
sl@0
|
445 |
|
sl@0
|
446 |
|
sl@0
|
447 |
/* ===========================================================================
|
sl@0
|
448 |
Reads one byte from the compressed file. gzgetc returns this byte
|
sl@0
|
449 |
or -1 in case of end of file or error.
|
sl@0
|
450 |
*/
|
sl@0
|
451 |
EXPORT_C int ZEXPORT gzgetc(
|
sl@0
|
452 |
gzFile file)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
unsigned char c;
|
sl@0
|
455 |
|
sl@0
|
456 |
return gzread(file, &c, 1) == 1 ? c : -1;
|
sl@0
|
457 |
}
|
sl@0
|
458 |
|
sl@0
|
459 |
|
sl@0
|
460 |
/* ===========================================================================
|
sl@0
|
461 |
Reads bytes from the compressed file until len-1 characters are
|
sl@0
|
462 |
read, or a newline character is read and transferred to buf, or an
|
sl@0
|
463 |
end-of-file condition is encountered. The string is then terminated
|
sl@0
|
464 |
with a null character.
|
sl@0
|
465 |
gzgets returns buf, or Z_NULL in case of error.
|
sl@0
|
466 |
|
sl@0
|
467 |
The current implementation is not optimized at all.
|
sl@0
|
468 |
*/
|
sl@0
|
469 |
EXPORT_C char * ZEXPORT gzgets(
|
sl@0
|
470 |
gzFile file,
|
sl@0
|
471 |
char *buf,
|
sl@0
|
472 |
int len)
|
sl@0
|
473 |
{
|
sl@0
|
474 |
char *b = buf;
|
sl@0
|
475 |
if (buf == Z_NULL || len <= 0) return Z_NULL;
|
sl@0
|
476 |
|
sl@0
|
477 |
while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
|
sl@0
|
478 |
*buf = '\0';
|
sl@0
|
479 |
return b == buf && len > 0 ? Z_NULL : b;
|
sl@0
|
480 |
}
|
sl@0
|
481 |
|
sl@0
|
482 |
|
sl@0
|
483 |
#ifndef NO_DEFLATE
|
sl@0
|
484 |
/* ===========================================================================
|
sl@0
|
485 |
Writes the given number of uncompressed bytes into the compressed file.
|
sl@0
|
486 |
gzwrite returns the number of bytes actually written (0 in case of error).
|
sl@0
|
487 |
*/
|
sl@0
|
488 |
EXPORT_C int ZEXPORT gzwrite (
|
sl@0
|
489 |
gzFile file,
|
sl@0
|
490 |
const voidp buf,
|
sl@0
|
491 |
unsigned len)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
494 |
|
sl@0
|
495 |
if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
|
sl@0
|
496 |
|
sl@0
|
497 |
s->stream.next_in = (Bytef*)buf;
|
sl@0
|
498 |
s->stream.avail_in = len;
|
sl@0
|
499 |
|
sl@0
|
500 |
while (s->stream.avail_in != 0) {
|
sl@0
|
501 |
|
sl@0
|
502 |
if (s->stream.avail_out == 0) {
|
sl@0
|
503 |
|
sl@0
|
504 |
s->stream.next_out = s->outbuf;
|
sl@0
|
505 |
if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
|
sl@0
|
506 |
s->z_err = Z_ERRNO;
|
sl@0
|
507 |
break;
|
sl@0
|
508 |
}
|
sl@0
|
509 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
510 |
}
|
sl@0
|
511 |
s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
|
sl@0
|
512 |
if (s->z_err != Z_OK) break;
|
sl@0
|
513 |
}
|
sl@0
|
514 |
s->crc = crc32(s->crc, (const Bytef *)buf, len);
|
sl@0
|
515 |
|
sl@0
|
516 |
return (int)(len - s->stream.avail_in);
|
sl@0
|
517 |
}
|
sl@0
|
518 |
|
sl@0
|
519 |
/* ===========================================================================
|
sl@0
|
520 |
Converts, formats, and writes the args to the compressed file under
|
sl@0
|
521 |
control of the format string, as in fprintf. gzprintf returns the number of
|
sl@0
|
522 |
uncompressed bytes actually written (0 in case of error).
|
sl@0
|
523 |
*/
|
sl@0
|
524 |
|
sl@0
|
525 |
// This function has been modified to use heap memory instead of the stack for the buffer.
|
sl@0
|
526 |
// Markr 6/9/99 Symbian.
|
sl@0
|
527 |
|
sl@0
|
528 |
#ifdef STDC
|
sl@0
|
529 |
#include <stdarg.h>
|
sl@0
|
530 |
|
sl@0
|
531 |
EXPORT_C int ZEXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...)
|
sl@0
|
532 |
{
|
sl@0
|
533 |
char *buf = (char*) ALLOC(Z_PRINTF_BUFSIZE);
|
sl@0
|
534 |
int retval = 0;
|
sl@0
|
535 |
va_list va;
|
sl@0
|
536 |
int len;
|
sl@0
|
537 |
|
sl@0
|
538 |
va_start(va, format);
|
sl@0
|
539 |
#ifdef HAS_vsnprintf
|
sl@0
|
540 |
(void)vsnprintf(buf, sizeof(buf), format, va);
|
sl@0
|
541 |
#else
|
sl@0
|
542 |
(void)vsprintf(buf, format, va);
|
sl@0
|
543 |
#endif
|
sl@0
|
544 |
va_end(va);
|
sl@0
|
545 |
len = strlen(buf); /* some *sprintf don't return the nb of bytes written */
|
sl@0
|
546 |
if (len > 0)
|
sl@0
|
547 |
{
|
sl@0
|
548 |
retval = gzwrite(file, buf, (unsigned)len);
|
sl@0
|
549 |
}
|
sl@0
|
550 |
TRYFREE(buf);
|
sl@0
|
551 |
return retval;
|
sl@0
|
552 |
}
|
sl@0
|
553 |
#else /* not ANSI C */
|
sl@0
|
554 |
|
sl@0
|
555 |
int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
|
sl@0
|
556 |
a11, a12, a13, a14, a15, a16, a17, a18, a19, a20)
|
sl@0
|
557 |
gzFile file;
|
sl@0
|
558 |
const char *format;
|
sl@0
|
559 |
int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
|
sl@0
|
560 |
a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
|
sl@0
|
561 |
{
|
sl@0
|
562 |
char buf[Z_PRINTF_BUFSIZE];
|
sl@0
|
563 |
int len;
|
sl@0
|
564 |
|
sl@0
|
565 |
#ifdef HAS_snprintf
|
sl@0
|
566 |
snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8,
|
sl@0
|
567 |
a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
|
sl@0
|
568 |
#else
|
sl@0
|
569 |
sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8,
|
sl@0
|
570 |
a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
|
sl@0
|
571 |
#endif
|
sl@0
|
572 |
len = strlen(buf); /* old sprintf doesn't return the nb of bytes written */
|
sl@0
|
573 |
if (len <= 0) return 0;
|
sl@0
|
574 |
|
sl@0
|
575 |
return gzwrite(file, buf, len);
|
sl@0
|
576 |
}
|
sl@0
|
577 |
#endif
|
sl@0
|
578 |
|
sl@0
|
579 |
/* ===========================================================================
|
sl@0
|
580 |
Writes c, converted to an unsigned char, into the compressed file.
|
sl@0
|
581 |
gzputc returns the value that was written, or -1 in case of error.
|
sl@0
|
582 |
*/
|
sl@0
|
583 |
EXPORT_C int ZEXPORT gzputc(
|
sl@0
|
584 |
gzFile file,
|
sl@0
|
585 |
int c)
|
sl@0
|
586 |
{
|
sl@0
|
587 |
unsigned char cc = (unsigned char) c; /* required for big endian systems */
|
sl@0
|
588 |
|
sl@0
|
589 |
return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
|
sl@0
|
590 |
}
|
sl@0
|
591 |
|
sl@0
|
592 |
|
sl@0
|
593 |
/* ===========================================================================
|
sl@0
|
594 |
Writes the given null-terminated string to the compressed file, excluding
|
sl@0
|
595 |
the terminating null character.
|
sl@0
|
596 |
gzputs returns the number of characters written, or -1 in case of error.
|
sl@0
|
597 |
*/
|
sl@0
|
598 |
EXPORT_C int ZEXPORT gzputs(
|
sl@0
|
599 |
gzFile file,
|
sl@0
|
600 |
const char *s)
|
sl@0
|
601 |
{
|
sl@0
|
602 |
return gzwrite(file, (char*)s, (unsigned)strlen(s));
|
sl@0
|
603 |
}
|
sl@0
|
604 |
|
sl@0
|
605 |
|
sl@0
|
606 |
/* ===========================================================================
|
sl@0
|
607 |
Flushes all pending output into the compressed file. The parameter
|
sl@0
|
608 |
flush is as in the deflate() function.
|
sl@0
|
609 |
*/
|
sl@0
|
610 |
local int do_flush (
|
sl@0
|
611 |
gzFile file,
|
sl@0
|
612 |
int flush)
|
sl@0
|
613 |
{
|
sl@0
|
614 |
uInt len;
|
sl@0
|
615 |
int done = 0;
|
sl@0
|
616 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
617 |
|
sl@0
|
618 |
if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
|
sl@0
|
619 |
|
sl@0
|
620 |
s->stream.avail_in = 0; /* should be zero already anyway */
|
sl@0
|
621 |
|
sl@0
|
622 |
for (;;) {
|
sl@0
|
623 |
len = Z_BUFSIZE - s->stream.avail_out;
|
sl@0
|
624 |
|
sl@0
|
625 |
if (len != 0) {
|
sl@0
|
626 |
if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
|
sl@0
|
627 |
s->z_err = Z_ERRNO;
|
sl@0
|
628 |
return Z_ERRNO;
|
sl@0
|
629 |
}
|
sl@0
|
630 |
s->stream.next_out = s->outbuf;
|
sl@0
|
631 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
632 |
}
|
sl@0
|
633 |
if (done) break;
|
sl@0
|
634 |
s->z_err = deflate(&(s->stream), flush);
|
sl@0
|
635 |
|
sl@0
|
636 |
/* Ignore the second of two consecutive flushes: */
|
sl@0
|
637 |
if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
|
sl@0
|
638 |
|
sl@0
|
639 |
/* deflate has finished flushing only when it hasn't used up
|
sl@0
|
640 |
* all the available space in the output buffer:
|
sl@0
|
641 |
*/
|
sl@0
|
642 |
done = (s->stream.avail_out != 0 || s->z_err == Z_STREAM_END);
|
sl@0
|
643 |
|
sl@0
|
644 |
if (s->z_err != Z_OK && s->z_err != Z_STREAM_END) break;
|
sl@0
|
645 |
}
|
sl@0
|
646 |
return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
|
sl@0
|
647 |
}
|
sl@0
|
648 |
|
sl@0
|
649 |
EXPORT_C int ZEXPORT gzflush (
|
sl@0
|
650 |
gzFile file,
|
sl@0
|
651 |
int flush)
|
sl@0
|
652 |
{
|
sl@0
|
653 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
654 |
int err = do_flush (file, flush);
|
sl@0
|
655 |
|
sl@0
|
656 |
if (err) return err;
|
sl@0
|
657 |
fflush(s->file);
|
sl@0
|
658 |
return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
|
sl@0
|
659 |
}
|
sl@0
|
660 |
#endif /* NO_DEFLATE */
|
sl@0
|
661 |
|
sl@0
|
662 |
/* ===========================================================================
|
sl@0
|
663 |
Sets the starting position for the next gzread or gzwrite on the given
|
sl@0
|
664 |
compressed file. The offset represents a number of bytes in the
|
sl@0
|
665 |
gzseek returns the resulting offset location as measured in bytes from
|
sl@0
|
666 |
the beginning of the uncompressed stream, or -1 in case of error.
|
sl@0
|
667 |
SEEK_END is not implemented, returns error.
|
sl@0
|
668 |
In this version of the library, gzseek can be extremely slow.
|
sl@0
|
669 |
*/
|
sl@0
|
670 |
EXPORT_C z_off_t ZEXPORT gzseek (
|
sl@0
|
671 |
gzFile file,
|
sl@0
|
672 |
z_off_t offset,
|
sl@0
|
673 |
int whence)
|
sl@0
|
674 |
{
|
sl@0
|
675 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
676 |
|
sl@0
|
677 |
if (s == NULL || whence == SEEK_END ||
|
sl@0
|
678 |
s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) {
|
sl@0
|
679 |
return -1L;
|
sl@0
|
680 |
}
|
sl@0
|
681 |
|
sl@0
|
682 |
if (s->mode == 'w') {
|
sl@0
|
683 |
#ifdef NO_DEFLATE
|
sl@0
|
684 |
return -1L;
|
sl@0
|
685 |
#else
|
sl@0
|
686 |
if (whence == SEEK_SET) {
|
sl@0
|
687 |
offset -= s->stream.total_in;
|
sl@0
|
688 |
}
|
sl@0
|
689 |
if (offset < 0) return -1L;
|
sl@0
|
690 |
|
sl@0
|
691 |
/* At this point, offset is the number of zero bytes to write. */
|
sl@0
|
692 |
if (s->inbuf == Z_NULL) {
|
sl@0
|
693 |
s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
|
sl@0
|
694 |
zmemzero(s->inbuf, Z_BUFSIZE);
|
sl@0
|
695 |
}
|
sl@0
|
696 |
while (offset > 0) {
|
sl@0
|
697 |
uInt size = Z_BUFSIZE;
|
sl@0
|
698 |
if (offset < Z_BUFSIZE) size = (uInt)offset;
|
sl@0
|
699 |
|
sl@0
|
700 |
size = gzwrite(file, s->inbuf, size);
|
sl@0
|
701 |
if (size == 0) return -1L;
|
sl@0
|
702 |
|
sl@0
|
703 |
offset -= size;
|
sl@0
|
704 |
}
|
sl@0
|
705 |
return (z_off_t)s->stream.total_in;
|
sl@0
|
706 |
#endif
|
sl@0
|
707 |
}
|
sl@0
|
708 |
/* Rest of function is for reading only */
|
sl@0
|
709 |
|
sl@0
|
710 |
/* compute absolute position */
|
sl@0
|
711 |
if (whence == SEEK_CUR) {
|
sl@0
|
712 |
offset += s->stream.total_out;
|
sl@0
|
713 |
}
|
sl@0
|
714 |
if (offset < 0) return -1L;
|
sl@0
|
715 |
|
sl@0
|
716 |
if (s->transparent) {
|
sl@0
|
717 |
/* map to fseek */
|
sl@0
|
718 |
s->stream.avail_in = 0;
|
sl@0
|
719 |
s->stream.next_in = s->inbuf;
|
sl@0
|
720 |
if (fseek(s->file, offset, SEEK_SET) < 0) return -1L;
|
sl@0
|
721 |
|
sl@0
|
722 |
s->stream.total_in = s->stream.total_out = (uLong)offset;
|
sl@0
|
723 |
return offset;
|
sl@0
|
724 |
}
|
sl@0
|
725 |
|
sl@0
|
726 |
/* For a negative seek, rewind and use positive seek */
|
sl@0
|
727 |
if ((uLong)offset >= s->stream.total_out) {
|
sl@0
|
728 |
offset -= s->stream.total_out;
|
sl@0
|
729 |
} else if (gzrewind(file) < 0) {
|
sl@0
|
730 |
return -1L;
|
sl@0
|
731 |
}
|
sl@0
|
732 |
/* offset is now the number of bytes to skip. */
|
sl@0
|
733 |
|
sl@0
|
734 |
if (offset != 0 && s->outbuf == Z_NULL) {
|
sl@0
|
735 |
s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
|
sl@0
|
736 |
}
|
sl@0
|
737 |
while (offset > 0) {
|
sl@0
|
738 |
int size = Z_BUFSIZE;
|
sl@0
|
739 |
if (offset < Z_BUFSIZE) size = (int)offset;
|
sl@0
|
740 |
|
sl@0
|
741 |
size = gzread(file, s->outbuf, (uInt)size);
|
sl@0
|
742 |
if (size <= 0) return -1L;
|
sl@0
|
743 |
offset -= size;
|
sl@0
|
744 |
}
|
sl@0
|
745 |
return (z_off_t)s->stream.total_out;
|
sl@0
|
746 |
}
|
sl@0
|
747 |
|
sl@0
|
748 |
/* ===========================================================================
|
sl@0
|
749 |
Rewinds input file.
|
sl@0
|
750 |
*/
|
sl@0
|
751 |
EXPORT_C int ZEXPORT gzrewind (
|
sl@0
|
752 |
gzFile file)
|
sl@0
|
753 |
{
|
sl@0
|
754 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
755 |
|
sl@0
|
756 |
if (s == NULL || s->mode != 'r') return -1;
|
sl@0
|
757 |
|
sl@0
|
758 |
s->z_err = Z_OK;
|
sl@0
|
759 |
s->z_eof = 0;
|
sl@0
|
760 |
s->stream.avail_in = 0;
|
sl@0
|
761 |
s->stream.next_in = s->inbuf;
|
sl@0
|
762 |
s->crc = crc32(0L, Z_NULL, 0);
|
sl@0
|
763 |
|
sl@0
|
764 |
if (s->startpos == 0) { /* not a compressed file */
|
sl@0
|
765 |
rewind(s->file);
|
sl@0
|
766 |
return 0;
|
sl@0
|
767 |
}
|
sl@0
|
768 |
|
sl@0
|
769 |
(void) inflateReset(&s->stream);
|
sl@0
|
770 |
return fseek(s->file, s->startpos, SEEK_SET);
|
sl@0
|
771 |
}
|
sl@0
|
772 |
|
sl@0
|
773 |
/* ===========================================================================
|
sl@0
|
774 |
Returns the starting position for the next gzread or gzwrite on the
|
sl@0
|
775 |
given compressed file. This position represents a number of bytes in the
|
sl@0
|
776 |
uncompressed data stream.
|
sl@0
|
777 |
*/
|
sl@0
|
778 |
EXPORT_C z_off_t ZEXPORT gztell (
|
sl@0
|
779 |
gzFile file)
|
sl@0
|
780 |
{
|
sl@0
|
781 |
return gzseek(file, 0L, SEEK_CUR);
|
sl@0
|
782 |
}
|
sl@0
|
783 |
|
sl@0
|
784 |
/* ===========================================================================
|
sl@0
|
785 |
Returns 1 when EOF has previously been detected reading the given
|
sl@0
|
786 |
input stream, otherwise zero.
|
sl@0
|
787 |
*/
|
sl@0
|
788 |
EXPORT_C int ZEXPORT gzeof (
|
sl@0
|
789 |
gzFile file)
|
sl@0
|
790 |
{
|
sl@0
|
791 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
792 |
|
sl@0
|
793 |
return (s == NULL || s->mode != 'r') ? 0 : s->z_eof;
|
sl@0
|
794 |
}
|
sl@0
|
795 |
|
sl@0
|
796 |
/* ===========================================================================
|
sl@0
|
797 |
Outputs a long in LSB order to the given file
|
sl@0
|
798 |
*/
|
sl@0
|
799 |
local void putLong (
|
sl@0
|
800 |
FILE *file,
|
sl@0
|
801 |
uLong x)
|
sl@0
|
802 |
{
|
sl@0
|
803 |
int n;
|
sl@0
|
804 |
for (n = 0; n < 4; n++) {
|
sl@0
|
805 |
fputc((int)(x & 0xff), file);
|
sl@0
|
806 |
x >>= 8;
|
sl@0
|
807 |
}
|
sl@0
|
808 |
}
|
sl@0
|
809 |
|
sl@0
|
810 |
/* ===========================================================================
|
sl@0
|
811 |
Reads a long in LSB order from the given gz_stream. Sets z_err in case
|
sl@0
|
812 |
of error.
|
sl@0
|
813 |
*/
|
sl@0
|
814 |
local uLong getLong (
|
sl@0
|
815 |
gz_stream *s)
|
sl@0
|
816 |
{
|
sl@0
|
817 |
uLong x = (uLong)get_byte(s);
|
sl@0
|
818 |
int c;
|
sl@0
|
819 |
|
sl@0
|
820 |
x += ((uLong)get_byte(s))<<8;
|
sl@0
|
821 |
x += ((uLong)get_byte(s))<<16;
|
sl@0
|
822 |
c = get_byte(s);
|
sl@0
|
823 |
if (c == EOF) s->z_err = Z_DATA_ERROR;
|
sl@0
|
824 |
x += ((uLong)c)<<24;
|
sl@0
|
825 |
return x;
|
sl@0
|
826 |
}
|
sl@0
|
827 |
|
sl@0
|
828 |
/* ===========================================================================
|
sl@0
|
829 |
Flushes all pending output if necessary, closes the compressed file
|
sl@0
|
830 |
and deallocates all the (de)compression state.
|
sl@0
|
831 |
*/
|
sl@0
|
832 |
EXPORT_C int ZEXPORT gzclose (
|
sl@0
|
833 |
gzFile file)
|
sl@0
|
834 |
{
|
sl@0
|
835 |
int err;
|
sl@0
|
836 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
837 |
|
sl@0
|
838 |
if (s == NULL) return Z_STREAM_ERROR;
|
sl@0
|
839 |
|
sl@0
|
840 |
if (s->mode == 'w') {
|
sl@0
|
841 |
#ifdef NO_DEFLATE
|
sl@0
|
842 |
return Z_STREAM_ERROR;
|
sl@0
|
843 |
#else
|
sl@0
|
844 |
err = do_flush (file, Z_FINISH);
|
sl@0
|
845 |
if (err != Z_OK) return destroy((gz_stream*)file);
|
sl@0
|
846 |
|
sl@0
|
847 |
putLong (s->file, s->crc);
|
sl@0
|
848 |
putLong (s->file, s->stream.total_in);
|
sl@0
|
849 |
#endif
|
sl@0
|
850 |
}
|
sl@0
|
851 |
return destroy((gz_stream*)file);
|
sl@0
|
852 |
}
|
sl@0
|
853 |
|
sl@0
|
854 |
/* ===========================================================================
|
sl@0
|
855 |
Returns the error message for the last error which occured on the
|
sl@0
|
856 |
given compressed file. errnum is set to zlib error number. If an
|
sl@0
|
857 |
error occured in the file system and not in the compression library,
|
sl@0
|
858 |
errnum is set to Z_ERRNO and the application may consult errno
|
sl@0
|
859 |
to get the exact error code.
|
sl@0
|
860 |
*/
|
sl@0
|
861 |
EXPORT_C const char* ZEXPORT gzerror (
|
sl@0
|
862 |
gzFile file,
|
sl@0
|
863 |
int *errnum)
|
sl@0
|
864 |
{
|
sl@0
|
865 |
char *m;
|
sl@0
|
866 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
867 |
|
sl@0
|
868 |
if (s == NULL) {
|
sl@0
|
869 |
*errnum = Z_STREAM_ERROR;
|
sl@0
|
870 |
return (const char*)ERR_MSG(Z_STREAM_ERROR);
|
sl@0
|
871 |
}
|
sl@0
|
872 |
*errnum = s->z_err;
|
sl@0
|
873 |
if (*errnum == Z_OK) return (const char*)"";
|
sl@0
|
874 |
|
sl@0
|
875 |
m = (char*)(*errnum == Z_ERRNO ? zstrerror(errno) : s->stream.msg);
|
sl@0
|
876 |
|
sl@0
|
877 |
if (m == NULL || *m == '\0') m = (char*)ERR_MSG(s->z_err);
|
sl@0
|
878 |
|
sl@0
|
879 |
TRYFREE(s->msg);
|
sl@0
|
880 |
s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);
|
sl@0
|
881 |
strcpy(s->msg, s->path);
|
sl@0
|
882 |
strcat(s->msg, ": ");
|
sl@0
|
883 |
strcat(s->msg, m);
|
sl@0
|
884 |
return (const char*)s->msg;
|
sl@0
|
885 |
}
|