sl@0
|
1 |
/* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
* All rights reserved.
|
sl@0
|
3 |
*/
|
sl@0
|
4 |
|
sl@0
|
5 |
/* gzio.c -- IO on .gz files
|
sl@0
|
6 |
* Copyright (C) 1995-2005 Jean-loup Gailly.
|
sl@0
|
7 |
* For conditions of distribution and use, see copyright notice in zlib.h
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Compile this file with -DNO_GZCOMPRESS to avoid the compression code.
|
sl@0
|
10 |
*/
|
sl@0
|
11 |
|
sl@0
|
12 |
/* @(#) $Id$ */
|
sl@0
|
13 |
|
sl@0
|
14 |
#include <stdio.h>
|
sl@0
|
15 |
#include "libzgzio.h" /* libzgzio.h must be included BEFORE zutil.h, as its header guard is used in zutil.h */
|
sl@0
|
16 |
#include "zutil.h"
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifdef NO_DEFLATE /* for compatibility with old definition */
|
sl@0
|
19 |
# define NO_GZCOMPRESS
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef NO_DUMMY_DECL
|
sl@0
|
23 |
struct internal_state {int dummy;}; /* for buggy compilers */
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifndef Z_BUFSIZE
|
sl@0
|
27 |
# ifdef MAXSEG_64K
|
sl@0
|
28 |
# define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
|
sl@0
|
29 |
# else
|
sl@0
|
30 |
# define Z_BUFSIZE 16384
|
sl@0
|
31 |
# endif
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
#ifndef Z_PRINTF_BUFSIZE
|
sl@0
|
34 |
# define Z_PRINTF_BUFSIZE 4096
|
sl@0
|
35 |
#endif
|
sl@0
|
36 |
|
sl@0
|
37 |
#ifdef __MVS__
|
sl@0
|
38 |
# pragma map (fdopen , "\174\174FDOPEN")
|
sl@0
|
39 |
FILE *fdopen(int, const char *);
|
sl@0
|
40 |
#endif
|
sl@0
|
41 |
|
sl@0
|
42 |
#ifndef STDC
|
sl@0
|
43 |
extern voidp malloc OF((uInt size));
|
sl@0
|
44 |
extern void free OF((voidpf ptr));
|
sl@0
|
45 |
#endif
|
sl@0
|
46 |
|
sl@0
|
47 |
#define ALLOC(size) malloc(size)
|
sl@0
|
48 |
#define TRYFREE(p) {if (p) free(p);}
|
sl@0
|
49 |
|
sl@0
|
50 |
static int const gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */
|
sl@0
|
51 |
|
sl@0
|
52 |
/* gzip flag byte */
|
sl@0
|
53 |
#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
|
sl@0
|
54 |
#define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
|
sl@0
|
55 |
#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
|
sl@0
|
56 |
#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
|
sl@0
|
57 |
#define COMMENT 0x10 /* bit 4 set: file comment present */
|
sl@0
|
58 |
#define RESERVED 0xE0 /* bits 5..7: reserved */
|
sl@0
|
59 |
|
sl@0
|
60 |
typedef struct gz_stream {
|
sl@0
|
61 |
z_stream stream;
|
sl@0
|
62 |
int z_err; /* error code for last stream operation */
|
sl@0
|
63 |
int z_eof; /* set if end of input file */
|
sl@0
|
64 |
FILE *file; /* .gz file */
|
sl@0
|
65 |
Byte *inbuf; /* input buffer */
|
sl@0
|
66 |
Byte *outbuf; /* output buffer */
|
sl@0
|
67 |
uLong crc; /* crc32 of uncompressed data */
|
sl@0
|
68 |
char *msg; /* error message */
|
sl@0
|
69 |
char *path; /* path name for debugging only */
|
sl@0
|
70 |
int transparent; /* 1 if input file is not a .gz file */
|
sl@0
|
71 |
char mode; /* 'w' or 'r' */
|
sl@0
|
72 |
z_off_t start; /* start of compressed data in file (header skipped) */
|
sl@0
|
73 |
z_off_t in; /* bytes into deflate or inflate */
|
sl@0
|
74 |
z_off_t out; /* bytes out of deflate or inflate */
|
sl@0
|
75 |
int back; /* one character push-back */
|
sl@0
|
76 |
int last; /* true if push-back is last character */
|
sl@0
|
77 |
} gz_stream;
|
sl@0
|
78 |
|
sl@0
|
79 |
#ifdef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
80 |
/* This array is a copy of the one originally defined in zutil.cpp. It is
|
sl@0
|
81 |
required here as zutil.cpp is now compiled seperately in libzcore.dll */
|
sl@0
|
82 |
const char * const z_errmsg[10] = {
|
sl@0
|
83 |
"need dictionary", /* Z_NEED_DICT 2 */
|
sl@0
|
84 |
"stream end", /* Z_STREAM_END 1 */
|
sl@0
|
85 |
"", /* Z_OK 0 */
|
sl@0
|
86 |
"file error", /* Z_ERRNO (-1) */
|
sl@0
|
87 |
"stream error", /* Z_STREAM_ERROR (-2) */
|
sl@0
|
88 |
"data error", /* Z_DATA_ERROR (-3) */
|
sl@0
|
89 |
"insufficient memory", /* Z_MEM_ERROR (-4) */
|
sl@0
|
90 |
"buffer error", /* Z_BUF_ERROR (-5) */
|
sl@0
|
91 |
"incompatible version",/* Z_VERSION_ERROR (-6) */
|
sl@0
|
92 |
""};
|
sl@0
|
93 |
#endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
94 |
|
sl@0
|
95 |
local gzFile gz_open OF((const char *path, const char *mode, int fd));
|
sl@0
|
96 |
local int do_flush OF((gzFile file, int flush));
|
sl@0
|
97 |
local int get_byte OF((gz_stream *s));
|
sl@0
|
98 |
local void check_header OF((gz_stream *s));
|
sl@0
|
99 |
local int destroy OF((gz_stream *s));
|
sl@0
|
100 |
local void putLong OF((FILE *file, uLong x));
|
sl@0
|
101 |
local uLong getLong OF((gz_stream *s));
|
sl@0
|
102 |
|
sl@0
|
103 |
/* ===========================================================================
|
sl@0
|
104 |
Opens a gzip (.gz) file for reading or writing. The mode parameter
|
sl@0
|
105 |
is as in fopen ("rb" or "wb"). The file is given either by file descriptor
|
sl@0
|
106 |
or path name (if fd == -1).
|
sl@0
|
107 |
gz_open returns NULL if the file could not be opened or if there was
|
sl@0
|
108 |
insufficient memory to allocate the (de)compression state; errno
|
sl@0
|
109 |
can be checked to distinguish the two cases (if errno is zero, the
|
sl@0
|
110 |
zlib error is Z_MEM_ERROR).
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
#ifdef __SYMBIAN32__
|
sl@0
|
113 |
local gzFile gz_open (const char * path,const char * mode, int fd)
|
sl@0
|
114 |
#else
|
sl@0
|
115 |
local gzFile gz_open (path, mode, fd)
|
sl@0
|
116 |
const char *path;
|
sl@0
|
117 |
const char *mode;
|
sl@0
|
118 |
int fd;
|
sl@0
|
119 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
120 |
|
sl@0
|
121 |
{
|
sl@0
|
122 |
int err;
|
sl@0
|
123 |
int level = Z_DEFAULT_COMPRESSION; /* compression level */
|
sl@0
|
124 |
int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */
|
sl@0
|
125 |
char *p = (char*)mode;
|
sl@0
|
126 |
gz_stream *s;
|
sl@0
|
127 |
char fmode[80]; /* copy of mode, without the compression level */
|
sl@0
|
128 |
char *m = fmode;
|
sl@0
|
129 |
|
sl@0
|
130 |
if (!path || !mode) return Z_NULL;
|
sl@0
|
131 |
|
sl@0
|
132 |
s = (gz_stream *)ALLOC(sizeof(gz_stream));
|
sl@0
|
133 |
if (!s) return Z_NULL;
|
sl@0
|
134 |
|
sl@0
|
135 |
s->stream.zalloc = (alloc_func)0;
|
sl@0
|
136 |
s->stream.zfree = (free_func)0;
|
sl@0
|
137 |
s->stream.opaque = (voidpf)0;
|
sl@0
|
138 |
s->stream.next_in = s->inbuf = Z_NULL;
|
sl@0
|
139 |
s->stream.next_out = s->outbuf = Z_NULL;
|
sl@0
|
140 |
s->stream.avail_in = s->stream.avail_out = 0;
|
sl@0
|
141 |
s->file = NULL;
|
sl@0
|
142 |
s->z_err = Z_OK;
|
sl@0
|
143 |
s->z_eof = 0;
|
sl@0
|
144 |
s->in = 0;
|
sl@0
|
145 |
s->out = 0;
|
sl@0
|
146 |
s->back = EOF;
|
sl@0
|
147 |
s->crc = crc32_r(0L, Z_NULL, 0);
|
sl@0
|
148 |
s->msg = NULL;
|
sl@0
|
149 |
s->transparent = 0;
|
sl@0
|
150 |
|
sl@0
|
151 |
s->path = (char*)ALLOC(strlen(path)+1);
|
sl@0
|
152 |
if (s->path == NULL) {
|
sl@0
|
153 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
154 |
}
|
sl@0
|
155 |
strcpy(s->path, path); /* do this early for debugging */
|
sl@0
|
156 |
|
sl@0
|
157 |
s->mode = '\0';
|
sl@0
|
158 |
do {
|
sl@0
|
159 |
if (*p == 'r') s->mode = 'r';
|
sl@0
|
160 |
if (*p == 'w' || *p == 'a') s->mode = 'w';
|
sl@0
|
161 |
if (*p >= '0' && *p <= '9') {
|
sl@0
|
162 |
level = *p - '0';
|
sl@0
|
163 |
} else if (*p == 'f') {
|
sl@0
|
164 |
strategy = Z_FILTERED;
|
sl@0
|
165 |
} else if (*p == 'h') {
|
sl@0
|
166 |
strategy = Z_HUFFMAN_ONLY;
|
sl@0
|
167 |
} else if (*p == 'R') {
|
sl@0
|
168 |
strategy = Z_RLE;
|
sl@0
|
169 |
} else {
|
sl@0
|
170 |
*m++ = *p; /* copy the mode */
|
sl@0
|
171 |
}
|
sl@0
|
172 |
} while (*p++ && m != fmode + sizeof(fmode));
|
sl@0
|
173 |
if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
174 |
|
sl@0
|
175 |
if (s->mode == 'w') {
|
sl@0
|
176 |
#ifdef NO_GZCOMPRESS
|
sl@0
|
177 |
err = Z_STREAM_ERROR;
|
sl@0
|
178 |
#else
|
sl@0
|
179 |
err = deflateInit2_r(&(s->stream), level,
|
sl@0
|
180 |
Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
|
sl@0
|
181 |
/* windowBits is passed < 0 to suppress zlib header */
|
sl@0
|
182 |
|
sl@0
|
183 |
s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
|
sl@0
|
184 |
#endif
|
sl@0
|
185 |
if (err != Z_OK || s->outbuf == Z_NULL) {
|
sl@0
|
186 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
187 |
}
|
sl@0
|
188 |
} else {
|
sl@0
|
189 |
s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
|
sl@0
|
190 |
|
sl@0
|
191 |
err = inflateInit2_r(&(s->stream), -MAX_WBITS);
|
sl@0
|
192 |
/* windowBits is passed < 0 to tell that there is no zlib header.
|
sl@0
|
193 |
* Note that in this case inflate *requires* an extra "dummy" byte
|
sl@0
|
194 |
* after the compressed stream in order to complete decompression and
|
sl@0
|
195 |
* return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
|
sl@0
|
196 |
* present after the compressed stream.
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
if (err != Z_OK || s->inbuf == Z_NULL) {
|
sl@0
|
199 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
}
|
sl@0
|
202 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
203 |
//coverity[cleanup_stack]
|
sl@0
|
204 |
//This code is derived from open source and hence does not use cleanup stack
|
sl@0
|
205 |
errno = 0;
|
sl@0
|
206 |
s->file = fd < 0 ? F_OPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
|
sl@0
|
207 |
|
sl@0
|
208 |
if (s->file == NULL) {
|
sl@0
|
209 |
return destroy(s), (gzFile)Z_NULL;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
if (s->mode == 'w') {
|
sl@0
|
212 |
/* Write a very simple .gz header:
|
sl@0
|
213 |
*/
|
sl@0
|
214 |
fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1],
|
sl@0
|
215 |
Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE);
|
sl@0
|
216 |
s->start = 10L;
|
sl@0
|
217 |
/* We use 10L instead of ftell(s->file) to because ftell causes an
|
sl@0
|
218 |
* fflush on some systems. This version of the library doesn't use
|
sl@0
|
219 |
* start anyway in write mode, so this initialization is not
|
sl@0
|
220 |
* necessary.
|
sl@0
|
221 |
*/
|
sl@0
|
222 |
} else {
|
sl@0
|
223 |
//coverity[cleanup_stack]
|
sl@0
|
224 |
//This code is derived from open source and hence does not use cleanup stack
|
sl@0
|
225 |
check_header(s); /* skip the .gz header */
|
sl@0
|
226 |
s->start = ftell(s->file) - s->stream.avail_in;
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
return (gzFile)s;
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
/* ===========================================================================
|
sl@0
|
233 |
Opens a gzip (.gz) file for reading or writing.
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
#ifdef __SYMBIAN32__
|
sl@0
|
236 |
gzFile gzopen_r (const char * path, const char * mode)
|
sl@0
|
237 |
#else
|
sl@0
|
238 |
gzFile ZEXPORT gzopen (path, mode)
|
sl@0
|
239 |
const char *path;
|
sl@0
|
240 |
const char *mode;
|
sl@0
|
241 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
242 |
|
sl@0
|
243 |
{
|
sl@0
|
244 |
return gz_open (path, mode, -1);
|
sl@0
|
245 |
}
|
sl@0
|
246 |
|
sl@0
|
247 |
/* ===========================================================================
|
sl@0
|
248 |
Associate a gzFile with the file descriptor fd. fd is not dup'ed here
|
sl@0
|
249 |
to mimic the behavio(u)r of fdopen.
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
#ifdef __SYMBIAN32__
|
sl@0
|
252 |
gzFile gzdopen_r (int fd, const char * mode)
|
sl@0
|
253 |
#else
|
sl@0
|
254 |
gzFile ZEXPORT gzdopen (fd, mode)
|
sl@0
|
255 |
int fd;
|
sl@0
|
256 |
const char *mode;
|
sl@0
|
257 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
258 |
{
|
sl@0
|
259 |
char name[46]; /* allow for up to 128-bit integers */
|
sl@0
|
260 |
|
sl@0
|
261 |
if (fd < 0) return (gzFile)Z_NULL;
|
sl@0
|
262 |
sprintf(name, "<fd:%d>", fd); /* for debugging */
|
sl@0
|
263 |
|
sl@0
|
264 |
return gz_open (name, mode, fd);
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
/* ===========================================================================
|
sl@0
|
268 |
* Update the compression level and strategy
|
sl@0
|
269 |
*/
|
sl@0
|
270 |
#ifdef __SYMBIAN32__
|
sl@0
|
271 |
int gzsetparams_r (gzFile file,int level,int strategy)
|
sl@0
|
272 |
#else
|
sl@0
|
273 |
int ZEXPORT gzsetparams (file, level, strategy)
|
sl@0
|
274 |
gzFile file;
|
sl@0
|
275 |
int level;
|
sl@0
|
276 |
int strategy;
|
sl@0
|
277 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
278 |
|
sl@0
|
279 |
{
|
sl@0
|
280 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
281 |
|
sl@0
|
282 |
if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
|
sl@0
|
283 |
|
sl@0
|
284 |
/* Make room to allow flushing */
|
sl@0
|
285 |
if (s->stream.avail_out == 0) {
|
sl@0
|
286 |
|
sl@0
|
287 |
s->stream.next_out = s->outbuf;
|
sl@0
|
288 |
if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
|
sl@0
|
289 |
s->z_err = Z_ERRNO;
|
sl@0
|
290 |
}
|
sl@0
|
291 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
return deflateParams_r (&(s->stream), level, strategy);
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
/* ===========================================================================
|
sl@0
|
298 |
Read a byte from a gz_stream; update next_in and avail_in. Return EOF
|
sl@0
|
299 |
for end of file.
|
sl@0
|
300 |
IN assertion: the stream s has been sucessfully opened for reading.
|
sl@0
|
301 |
*/
|
sl@0
|
302 |
#ifdef __SYMBIAN32__
|
sl@0
|
303 |
local int get_byte (gz_stream *s)
|
sl@0
|
304 |
#else
|
sl@0
|
305 |
local int get_byte(s)
|
sl@0
|
306 |
gz_stream *s;
|
sl@0
|
307 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
308 |
{
|
sl@0
|
309 |
if (s->z_eof) return EOF;
|
sl@0
|
310 |
if (s->stream.avail_in == 0) {
|
sl@0
|
311 |
errno = 0;
|
sl@0
|
312 |
s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
|
sl@0
|
313 |
if (s->stream.avail_in == 0) {
|
sl@0
|
314 |
s->z_eof = 1;
|
sl@0
|
315 |
if (ferror(s->file)) s->z_err = Z_ERRNO;
|
sl@0
|
316 |
return EOF;
|
sl@0
|
317 |
}
|
sl@0
|
318 |
s->stream.next_in = s->inbuf;
|
sl@0
|
319 |
}
|
sl@0
|
320 |
s->stream.avail_in--;
|
sl@0
|
321 |
return *(s->stream.next_in)++;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
/* ===========================================================================
|
sl@0
|
325 |
Check the gzip header of a gz_stream opened for reading. Set the stream
|
sl@0
|
326 |
mode to transparent if the gzip magic header is not present; set s->err
|
sl@0
|
327 |
to Z_DATA_ERROR if the magic header is present but the rest of the header
|
sl@0
|
328 |
is incorrect.
|
sl@0
|
329 |
IN assertion: the stream s has already been created sucessfully;
|
sl@0
|
330 |
s->stream.avail_in is zero for the first time, but may be non-zero
|
sl@0
|
331 |
for concatenated .gz files.
|
sl@0
|
332 |
*/
|
sl@0
|
333 |
#ifdef __SYMBIAN32__
|
sl@0
|
334 |
local void check_header (gz_stream * s)
|
sl@0
|
335 |
#else
|
sl@0
|
336 |
local void check_header(s)
|
sl@0
|
337 |
gz_stream *s;
|
sl@0
|
338 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
339 |
{
|
sl@0
|
340 |
int method; /* method byte */
|
sl@0
|
341 |
int flags; /* flags byte */
|
sl@0
|
342 |
uInt len;
|
sl@0
|
343 |
int c;
|
sl@0
|
344 |
|
sl@0
|
345 |
/* Assure two bytes in the buffer so we can peek ahead -- handle case
|
sl@0
|
346 |
where first byte of header is at the end of the buffer after the last
|
sl@0
|
347 |
gzip segment */
|
sl@0
|
348 |
len = s->stream.avail_in;
|
sl@0
|
349 |
if (len < 2) {
|
sl@0
|
350 |
if (len) s->inbuf[0] = s->stream.next_in[0];
|
sl@0
|
351 |
errno = 0;
|
sl@0
|
352 |
len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
|
sl@0
|
353 |
if (len == 0 && ferror(s->file)) s->z_err = Z_ERRNO;
|
sl@0
|
354 |
s->stream.avail_in += len;
|
sl@0
|
355 |
s->stream.next_in = s->inbuf;
|
sl@0
|
356 |
if (s->stream.avail_in < 2) {
|
sl@0
|
357 |
s->transparent = s->stream.avail_in;
|
sl@0
|
358 |
return;
|
sl@0
|
359 |
}
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
/* Peek ahead to check the gzip magic header */
|
sl@0
|
363 |
if (s->stream.next_in[0] != gz_magic[0] ||
|
sl@0
|
364 |
s->stream.next_in[1] != gz_magic[1]) {
|
sl@0
|
365 |
s->transparent = 1;
|
sl@0
|
366 |
return;
|
sl@0
|
367 |
}
|
sl@0
|
368 |
s->stream.avail_in -= 2;
|
sl@0
|
369 |
s->stream.next_in += 2;
|
sl@0
|
370 |
|
sl@0
|
371 |
/* Check the rest of the gzip header */
|
sl@0
|
372 |
method = get_byte(s);
|
sl@0
|
373 |
flags = get_byte(s);
|
sl@0
|
374 |
if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
|
sl@0
|
375 |
s->z_err = Z_DATA_ERROR;
|
sl@0
|
376 |
return;
|
sl@0
|
377 |
}
|
sl@0
|
378 |
|
sl@0
|
379 |
/* Discard time, xflags and OS code: */
|
sl@0
|
380 |
for (len = 0; len < 6; len++) (void)get_byte(s);
|
sl@0
|
381 |
|
sl@0
|
382 |
if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
|
sl@0
|
383 |
len = (uInt)get_byte(s);
|
sl@0
|
384 |
len += ((uInt)get_byte(s))<<8;
|
sl@0
|
385 |
/* len is garbage if EOF but the loop below will quit anyway */
|
sl@0
|
386 |
while (len-- != 0 && get_byte(s) != EOF) ;
|
sl@0
|
387 |
}
|
sl@0
|
388 |
if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
|
sl@0
|
389 |
while ((c = get_byte(s)) != 0 && c != EOF) ;
|
sl@0
|
390 |
}
|
sl@0
|
391 |
if ((flags & COMMENT) != 0) { /* skip the .gz file comment */
|
sl@0
|
392 |
while ((c = get_byte(s)) != 0 && c != EOF) ;
|
sl@0
|
393 |
}
|
sl@0
|
394 |
if ((flags & HEAD_CRC) != 0) { /* skip the header crc */
|
sl@0
|
395 |
for (len = 0; len < 2; len++) (void)get_byte(s);
|
sl@0
|
396 |
}
|
sl@0
|
397 |
s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
|
sl@0
|
398 |
}
|
sl@0
|
399 |
|
sl@0
|
400 |
/* ===========================================================================
|
sl@0
|
401 |
Cleanup then free the given gz_stream. Return a zlib error code.
|
sl@0
|
402 |
Try freeing in the reverse order of allocations.
|
sl@0
|
403 |
*/
|
sl@0
|
404 |
#ifdef __SYMBIAN32__
|
sl@0
|
405 |
local int destroy (gz_stream * s)
|
sl@0
|
406 |
#else
|
sl@0
|
407 |
local int destroy (s)
|
sl@0
|
408 |
gz_stream *s;
|
sl@0
|
409 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
410 |
{
|
sl@0
|
411 |
int err = Z_OK;
|
sl@0
|
412 |
|
sl@0
|
413 |
if (!s) return Z_STREAM_ERROR;
|
sl@0
|
414 |
|
sl@0
|
415 |
TRYFREE(s->msg);
|
sl@0
|
416 |
|
sl@0
|
417 |
if (s->stream.state != NULL) {
|
sl@0
|
418 |
if (s->mode == 'w') {
|
sl@0
|
419 |
#ifdef NO_GZCOMPRESS
|
sl@0
|
420 |
err = Z_STREAM_ERROR;
|
sl@0
|
421 |
#else
|
sl@0
|
422 |
err = deflateEnd_r(&(s->stream));
|
sl@0
|
423 |
#endif
|
sl@0
|
424 |
} else if (s->mode == 'r') {
|
sl@0
|
425 |
err = inflateEnd_r(&(s->stream));
|
sl@0
|
426 |
}
|
sl@0
|
427 |
}
|
sl@0
|
428 |
if (s->file != NULL && fclose(s->file)) {
|
sl@0
|
429 |
#ifdef ESPIPE
|
sl@0
|
430 |
if (errno != ESPIPE) /* fclose is broken for pipes in HP/UX */
|
sl@0
|
431 |
#endif
|
sl@0
|
432 |
err = Z_ERRNO;
|
sl@0
|
433 |
}
|
sl@0
|
434 |
if (s->z_err < 0) err = s->z_err;
|
sl@0
|
435 |
|
sl@0
|
436 |
TRYFREE(s->inbuf);
|
sl@0
|
437 |
TRYFREE(s->outbuf);
|
sl@0
|
438 |
TRYFREE(s->path);
|
sl@0
|
439 |
TRYFREE(s);
|
sl@0
|
440 |
return err;
|
sl@0
|
441 |
}
|
sl@0
|
442 |
|
sl@0
|
443 |
/* ===========================================================================
|
sl@0
|
444 |
Reads the given number of uncompressed bytes from the compressed file.
|
sl@0
|
445 |
gzread returns the number of bytes actually read (0 for end of file).
|
sl@0
|
446 |
*/
|
sl@0
|
447 |
#ifdef __SYMBIAN32__
|
sl@0
|
448 |
int gzread_r (gzFile file,voidp buf,unsigned len)
|
sl@0
|
449 |
#else
|
sl@0
|
450 |
int ZEXPORT gzread (file, buf, len)
|
sl@0
|
451 |
gzFile file;
|
sl@0
|
452 |
voidp buf;
|
sl@0
|
453 |
unsigned len;
|
sl@0
|
454 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
455 |
{
|
sl@0
|
456 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
457 |
Bytef *start = (Bytef*)buf; /* starting point for crc computation */
|
sl@0
|
458 |
Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */
|
sl@0
|
459 |
|
sl@0
|
460 |
if (s == NULL || s->mode != 'r') return Z_STREAM_ERROR;
|
sl@0
|
461 |
|
sl@0
|
462 |
if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) return -1;
|
sl@0
|
463 |
if (s->z_err == Z_STREAM_END) return 0; /* EOF */
|
sl@0
|
464 |
|
sl@0
|
465 |
next_out = (Byte*)buf;
|
sl@0
|
466 |
s->stream.next_out = (Bytef*)buf;
|
sl@0
|
467 |
s->stream.avail_out = len;
|
sl@0
|
468 |
|
sl@0
|
469 |
if (s->stream.avail_out && s->back != EOF) {
|
sl@0
|
470 |
*next_out++ = s->back;
|
sl@0
|
471 |
s->stream.next_out++;
|
sl@0
|
472 |
s->stream.avail_out--;
|
sl@0
|
473 |
s->back = EOF;
|
sl@0
|
474 |
s->out++;
|
sl@0
|
475 |
start++;
|
sl@0
|
476 |
if (s->last) {
|
sl@0
|
477 |
s->z_err = Z_STREAM_END;
|
sl@0
|
478 |
return 1;
|
sl@0
|
479 |
}
|
sl@0
|
480 |
}
|
sl@0
|
481 |
|
sl@0
|
482 |
while (s->stream.avail_out != 0) {
|
sl@0
|
483 |
|
sl@0
|
484 |
if (s->transparent) {
|
sl@0
|
485 |
/* Copy first the lookahead bytes: */
|
sl@0
|
486 |
uInt n = s->stream.avail_in;
|
sl@0
|
487 |
if (n > s->stream.avail_out) n = s->stream.avail_out;
|
sl@0
|
488 |
if (n > 0) {
|
sl@0
|
489 |
zmemcpy(s->stream.next_out, s->stream.next_in, n);
|
sl@0
|
490 |
next_out += n;
|
sl@0
|
491 |
s->stream.next_out = next_out;
|
sl@0
|
492 |
s->stream.next_in += n;
|
sl@0
|
493 |
s->stream.avail_out -= n;
|
sl@0
|
494 |
s->stream.avail_in -= n;
|
sl@0
|
495 |
}
|
sl@0
|
496 |
if (s->stream.avail_out > 0) {
|
sl@0
|
497 |
s->stream.avail_out -=
|
sl@0
|
498 |
(uInt)fread(next_out, 1, s->stream.avail_out, s->file);
|
sl@0
|
499 |
}
|
sl@0
|
500 |
len -= s->stream.avail_out;
|
sl@0
|
501 |
s->in += len;
|
sl@0
|
502 |
s->out += len;
|
sl@0
|
503 |
if (len == 0) s->z_eof = 1;
|
sl@0
|
504 |
return (int)len;
|
sl@0
|
505 |
}
|
sl@0
|
506 |
if (s->stream.avail_in == 0 && !s->z_eof) {
|
sl@0
|
507 |
|
sl@0
|
508 |
errno = 0;
|
sl@0
|
509 |
s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
|
sl@0
|
510 |
if (s->stream.avail_in == 0) {
|
sl@0
|
511 |
s->z_eof = 1;
|
sl@0
|
512 |
if (ferror(s->file)) {
|
sl@0
|
513 |
s->z_err = Z_ERRNO;
|
sl@0
|
514 |
break;
|
sl@0
|
515 |
}
|
sl@0
|
516 |
}
|
sl@0
|
517 |
s->stream.next_in = s->inbuf;
|
sl@0
|
518 |
}
|
sl@0
|
519 |
s->in += s->stream.avail_in;
|
sl@0
|
520 |
s->out += s->stream.avail_out;
|
sl@0
|
521 |
s->z_err = inflate_r(&(s->stream), Z_NO_FLUSH);
|
sl@0
|
522 |
s->in -= s->stream.avail_in;
|
sl@0
|
523 |
s->out -= s->stream.avail_out;
|
sl@0
|
524 |
|
sl@0
|
525 |
if (s->z_err == Z_STREAM_END) {
|
sl@0
|
526 |
/* Check CRC and original size */
|
sl@0
|
527 |
s->crc = crc32_r(s->crc, start, (uInt)(s->stream.next_out - start));
|
sl@0
|
528 |
start = s->stream.next_out;
|
sl@0
|
529 |
|
sl@0
|
530 |
if (getLong(s) != s->crc) {
|
sl@0
|
531 |
s->z_err = Z_DATA_ERROR;
|
sl@0
|
532 |
} else {
|
sl@0
|
533 |
(void)getLong(s);
|
sl@0
|
534 |
/* The uncompressed length returned by above getlong() may be
|
sl@0
|
535 |
* different from s->out in case of concatenated .gz files.
|
sl@0
|
536 |
* Check for such files:
|
sl@0
|
537 |
*/
|
sl@0
|
538 |
check_header(s);
|
sl@0
|
539 |
if (s->z_err == Z_OK) {
|
sl@0
|
540 |
inflateReset_r(&(s->stream));
|
sl@0
|
541 |
s->crc = crc32_r(0L, Z_NULL, 0);
|
sl@0
|
542 |
}
|
sl@0
|
543 |
}
|
sl@0
|
544 |
}
|
sl@0
|
545 |
if (s->z_err != Z_OK || s->z_eof) break;
|
sl@0
|
546 |
}
|
sl@0
|
547 |
s->crc = crc32_r(s->crc, start, (uInt)(s->stream.next_out - start));
|
sl@0
|
548 |
|
sl@0
|
549 |
if (len == s->stream.avail_out &&
|
sl@0
|
550 |
(s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO))
|
sl@0
|
551 |
return -1;
|
sl@0
|
552 |
return (int)(len - s->stream.avail_out);
|
sl@0
|
553 |
}
|
sl@0
|
554 |
|
sl@0
|
555 |
|
sl@0
|
556 |
/* ===========================================================================
|
sl@0
|
557 |
Reads one byte from the compressed file. gzgetc returns this byte
|
sl@0
|
558 |
or -1 in case of end of file or error.
|
sl@0
|
559 |
*/
|
sl@0
|
560 |
#ifdef __SYMBIAN32__
|
sl@0
|
561 |
int gzgetc_r (gzFile file)
|
sl@0
|
562 |
#else
|
sl@0
|
563 |
int ZEXPORT gzgetc(file)
|
sl@0
|
564 |
gzFile file;
|
sl@0
|
565 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
566 |
|
sl@0
|
567 |
{
|
sl@0
|
568 |
unsigned char c;
|
sl@0
|
569 |
|
sl@0
|
570 |
return gzread_r(file, &c, 1) == 1 ? c : -1;
|
sl@0
|
571 |
}
|
sl@0
|
572 |
|
sl@0
|
573 |
|
sl@0
|
574 |
/* ===========================================================================
|
sl@0
|
575 |
Push one byte back onto the stream.
|
sl@0
|
576 |
*/
|
sl@0
|
577 |
#ifdef __SYMBIAN32__
|
sl@0
|
578 |
int gzungetc_r (int c,gzFile file)
|
sl@0
|
579 |
#else
|
sl@0
|
580 |
int ZEXPORT gzungetc(c, file)
|
sl@0
|
581 |
int c;
|
sl@0
|
582 |
gzFile file;
|
sl@0
|
583 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
584 |
{
|
sl@0
|
585 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
586 |
|
sl@0
|
587 |
if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
|
sl@0
|
588 |
s->back = c;
|
sl@0
|
589 |
s->out--;
|
sl@0
|
590 |
s->last = (s->z_err == Z_STREAM_END);
|
sl@0
|
591 |
if (s->last) s->z_err = Z_OK;
|
sl@0
|
592 |
s->z_eof = 0;
|
sl@0
|
593 |
return c;
|
sl@0
|
594 |
}
|
sl@0
|
595 |
|
sl@0
|
596 |
|
sl@0
|
597 |
/* ===========================================================================
|
sl@0
|
598 |
Reads bytes from the compressed file until len-1 characters are
|
sl@0
|
599 |
read, or a newline character is read and transferred to buf, or an
|
sl@0
|
600 |
end-of-file condition is encountered. The string is then terminated
|
sl@0
|
601 |
with a null character.
|
sl@0
|
602 |
gzgets returns buf, or Z_NULL in case of error.
|
sl@0
|
603 |
|
sl@0
|
604 |
The current implementation is not optimized at all.
|
sl@0
|
605 |
*/
|
sl@0
|
606 |
#ifdef __SYMBIAN32__
|
sl@0
|
607 |
char * gzgets_r (gzFile file, char * buf, int len)
|
sl@0
|
608 |
#else
|
sl@0
|
609 |
char * ZEXPORT gzgets(file, buf, len)
|
sl@0
|
610 |
gzFile file;
|
sl@0
|
611 |
char *buf;
|
sl@0
|
612 |
int len;
|
sl@0
|
613 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
614 |
{
|
sl@0
|
615 |
char *b = buf;
|
sl@0
|
616 |
if (buf == Z_NULL || len <= 0) return Z_NULL;
|
sl@0
|
617 |
|
sl@0
|
618 |
while (--len > 0 && gzread_r(file, buf, 1) == 1 && *buf++ != '\n') ;
|
sl@0
|
619 |
*buf = '\0';
|
sl@0
|
620 |
return b == buf && len > 0 ? Z_NULL : b;
|
sl@0
|
621 |
}
|
sl@0
|
622 |
|
sl@0
|
623 |
|
sl@0
|
624 |
#ifndef NO_GZCOMPRESS
|
sl@0
|
625 |
/* ===========================================================================
|
sl@0
|
626 |
Writes the given number of uncompressed bytes into the compressed file.
|
sl@0
|
627 |
gzwrite returns the number of bytes actually written (0 in case of error).
|
sl@0
|
628 |
*/
|
sl@0
|
629 |
#ifdef __SYMBIAN32__
|
sl@0
|
630 |
int gzwrite_r (gzFile file,voidpc buf,unsigned len)
|
sl@0
|
631 |
#else
|
sl@0
|
632 |
int ZEXPORT gzwrite (file, buf, len)
|
sl@0
|
633 |
gzFile file;
|
sl@0
|
634 |
voidpc buf;
|
sl@0
|
635 |
unsigned len;
|
sl@0
|
636 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
637 |
{
|
sl@0
|
638 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
639 |
|
sl@0
|
640 |
if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
|
sl@0
|
641 |
|
sl@0
|
642 |
s->stream.next_in = (Bytef*)buf;
|
sl@0
|
643 |
s->stream.avail_in = len;
|
sl@0
|
644 |
|
sl@0
|
645 |
while (s->stream.avail_in != 0) {
|
sl@0
|
646 |
|
sl@0
|
647 |
if (s->stream.avail_out == 0) {
|
sl@0
|
648 |
|
sl@0
|
649 |
s->stream.next_out = s->outbuf;
|
sl@0
|
650 |
if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
|
sl@0
|
651 |
s->z_err = Z_ERRNO;
|
sl@0
|
652 |
break;
|
sl@0
|
653 |
}
|
sl@0
|
654 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
655 |
}
|
sl@0
|
656 |
s->in += s->stream.avail_in;
|
sl@0
|
657 |
s->out += s->stream.avail_out;
|
sl@0
|
658 |
s->z_err = deflate_r(&(s->stream), Z_NO_FLUSH);
|
sl@0
|
659 |
s->in -= s->stream.avail_in;
|
sl@0
|
660 |
s->out -= s->stream.avail_out;
|
sl@0
|
661 |
if (s->z_err != Z_OK) break;
|
sl@0
|
662 |
}
|
sl@0
|
663 |
s->crc = crc32_r(s->crc, (const Bytef *)buf, len);
|
sl@0
|
664 |
|
sl@0
|
665 |
return (int)(len - s->stream.avail_in);
|
sl@0
|
666 |
}
|
sl@0
|
667 |
|
sl@0
|
668 |
|
sl@0
|
669 |
/* ===========================================================================
|
sl@0
|
670 |
Converts, formats, and writes the args to the compressed file under
|
sl@0
|
671 |
control of the format string, as in fprintf. gzprintf returns the number of
|
sl@0
|
672 |
uncompressed bytes actually written (0 in case of error).
|
sl@0
|
673 |
*/
|
sl@0
|
674 |
#ifdef STDC
|
sl@0
|
675 |
#include <stdarg.h>
|
sl@0
|
676 |
|
sl@0
|
677 |
#ifdef __SYMBIAN32__
|
sl@0
|
678 |
int gzprintf_r (gzFile file, const char *format, va_list va)
|
sl@0
|
679 |
#else
|
sl@0
|
680 |
int ZEXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...)
|
sl@0
|
681 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
682 |
{
|
sl@0
|
683 |
int len;
|
sl@0
|
684 |
int ret;
|
sl@0
|
685 |
|
sl@0
|
686 |
#ifndef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
687 |
char buf[Z_PRINTF_BUFSIZE];
|
sl@0
|
688 |
buf[sizeof(buf) - 1] = 0;
|
sl@0
|
689 |
#else
|
sl@0
|
690 |
char *buf = (char*)0;
|
sl@0
|
691 |
buf = (char*) ALLOC(Z_PRINTF_BUFSIZE * sizeof(char));
|
sl@0
|
692 |
if(!buf)
|
sl@0
|
693 |
return 0;
|
sl@0
|
694 |
buf[Z_PRINTF_BUFSIZE - 1] = 0;
|
sl@0
|
695 |
#endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
696 |
|
sl@0
|
697 |
#ifdef NO_vsnprintf
|
sl@0
|
698 |
# ifdef HAS_vsprintf_void
|
sl@0
|
699 |
(void)vsprintf(buf, format, va);
|
sl@0
|
700 |
va_end(va);
|
sl@0
|
701 |
# ifndef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
702 |
for (len = 0; len < sizeof(buf); len++)
|
sl@0
|
703 |
# else
|
sl@0
|
704 |
for (len = 0; len < Z_PRINTF_BUFSIZE; len++)
|
sl@0
|
705 |
# endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
706 |
if (buf[len] == 0) break;
|
sl@0
|
707 |
# else
|
sl@0
|
708 |
len = vsprintf(buf, format, va);
|
sl@0
|
709 |
va_end(va);
|
sl@0
|
710 |
# endif
|
sl@0
|
711 |
#else
|
sl@0
|
712 |
# ifdef HAS_vsnprintf_void
|
sl@0
|
713 |
# ifndef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
714 |
(void)vsnprintf(buf, sizeof(buf), format, va);
|
sl@0
|
715 |
# else
|
sl@0
|
716 |
(void)vsnprintf(buf, Z_PRINTF_BUFSIZE, format, va);
|
sl@0
|
717 |
# endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
718 |
va_end(va);
|
sl@0
|
719 |
len = strlen(buf);
|
sl@0
|
720 |
# else
|
sl@0
|
721 |
# ifndef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
722 |
len = vsnprintf(buf, sizeof(buf), format, va);
|
sl@0
|
723 |
# else
|
sl@0
|
724 |
len = vsnprintf(buf, Z_PRINTF_BUFSIZE, format, va);
|
sl@0
|
725 |
# endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
726 |
va_end(va);
|
sl@0
|
727 |
# endif
|
sl@0
|
728 |
#endif
|
sl@0
|
729 |
|
sl@0
|
730 |
#ifndef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
731 |
if (len <= 0 || len >= (int)sizeof(buf) || buf[sizeof(buf) - 1] != 0)
|
sl@0
|
732 |
{
|
sl@0
|
733 |
#else
|
sl@0
|
734 |
if (len <= 0 || len >= Z_PRINTF_BUFSIZE || buf[Z_PRINTF_BUFSIZE - 1] != 0)
|
sl@0
|
735 |
{
|
sl@0
|
736 |
free(buf);
|
sl@0
|
737 |
#endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
738 |
return 0;
|
sl@0
|
739 |
}
|
sl@0
|
740 |
ret = gzwrite_r(file, buf, (unsigned)len);
|
sl@0
|
741 |
|
sl@0
|
742 |
#ifdef SYMBIAN_EZLIB_DEVICE
|
sl@0
|
743 |
free(buf);
|
sl@0
|
744 |
#endif /* SYMBIAN_EZLIB_DEVICE */
|
sl@0
|
745 |
return ret;
|
sl@0
|
746 |
}
|
sl@0
|
747 |
|
sl@0
|
748 |
#else /* not ANSI C */
|
sl@0
|
749 |
|
sl@0
|
750 |
int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
|
sl@0
|
751 |
a11, a12, a13, a14, a15, a16, a17, a18, a19, a20)
|
sl@0
|
752 |
gzFile file;
|
sl@0
|
753 |
const char *format;
|
sl@0
|
754 |
int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
|
sl@0
|
755 |
a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
|
sl@0
|
756 |
{
|
sl@0
|
757 |
char buf[Z_PRINTF_BUFSIZE];
|
sl@0
|
758 |
int len;
|
sl@0
|
759 |
|
sl@0
|
760 |
buf[sizeof(buf) - 1] = 0;
|
sl@0
|
761 |
#ifdef NO_snprintf
|
sl@0
|
762 |
# ifdef HAS_sprintf_void
|
sl@0
|
763 |
sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8,
|
sl@0
|
764 |
a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
|
sl@0
|
765 |
for (len = 0; len < sizeof(buf); len++)
|
sl@0
|
766 |
if (buf[len] == 0) break;
|
sl@0
|
767 |
# else
|
sl@0
|
768 |
len = sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8,
|
sl@0
|
769 |
a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
|
sl@0
|
770 |
# endif
|
sl@0
|
771 |
#else
|
sl@0
|
772 |
# ifdef HAS_snprintf_void
|
sl@0
|
773 |
snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8,
|
sl@0
|
774 |
a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
|
sl@0
|
775 |
len = strlen(buf);
|
sl@0
|
776 |
# else
|
sl@0
|
777 |
len = snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8,
|
sl@0
|
778 |
a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
|
sl@0
|
779 |
# endif
|
sl@0
|
780 |
#endif
|
sl@0
|
781 |
if (len <= 0 || len >= sizeof(buf) || buf[sizeof(buf) - 1] != 0)
|
sl@0
|
782 |
return 0;
|
sl@0
|
783 |
return gzwrite(file, buf, len);
|
sl@0
|
784 |
}
|
sl@0
|
785 |
#endif
|
sl@0
|
786 |
|
sl@0
|
787 |
/* ===========================================================================
|
sl@0
|
788 |
Writes c, converted to an unsigned char, into the compressed file.
|
sl@0
|
789 |
gzputc returns the value that was written, or -1 in case of error.
|
sl@0
|
790 |
*/
|
sl@0
|
791 |
#ifdef __SYMBIAN32__
|
sl@0
|
792 |
int gzputc_r (gzFile file,int c)
|
sl@0
|
793 |
#else
|
sl@0
|
794 |
int ZEXPORT gzputc(file, c)
|
sl@0
|
795 |
gzFile file;
|
sl@0
|
796 |
int c;
|
sl@0
|
797 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
798 |
{
|
sl@0
|
799 |
unsigned char cc = (unsigned char) c; /* required for big endian systems */
|
sl@0
|
800 |
|
sl@0
|
801 |
return gzwrite_r(file, &cc, 1) == 1 ? (int)cc : -1;
|
sl@0
|
802 |
}
|
sl@0
|
803 |
|
sl@0
|
804 |
|
sl@0
|
805 |
/* ===========================================================================
|
sl@0
|
806 |
Writes the given null-terminated string to the compressed file, excluding
|
sl@0
|
807 |
the terminating null character.
|
sl@0
|
808 |
gzputs returns the number of characters written, or -1 in case of error.
|
sl@0
|
809 |
*/
|
sl@0
|
810 |
#ifdef __SYMBIAN32__
|
sl@0
|
811 |
int gzputs_r (gzFile file, const char * s)
|
sl@0
|
812 |
#else
|
sl@0
|
813 |
int ZEXPORT gzputs(file, s)
|
sl@0
|
814 |
gzFile file;
|
sl@0
|
815 |
const char *s;
|
sl@0
|
816 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
817 |
{
|
sl@0
|
818 |
return gzwrite_r(file, (char*)s, (unsigned)strlen(s));
|
sl@0
|
819 |
}
|
sl@0
|
820 |
|
sl@0
|
821 |
|
sl@0
|
822 |
/* ===========================================================================
|
sl@0
|
823 |
Flushes all pending output into the compressed file. The parameter
|
sl@0
|
824 |
flush is as in the deflate() function.
|
sl@0
|
825 |
*/
|
sl@0
|
826 |
#ifdef __SYMBIAN32__
|
sl@0
|
827 |
local int do_flush (gzFile file,int flush)
|
sl@0
|
828 |
#else
|
sl@0
|
829 |
local int do_flush (file, flush)
|
sl@0
|
830 |
gzFile file;
|
sl@0
|
831 |
int flush;
|
sl@0
|
832 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
833 |
{
|
sl@0
|
834 |
uInt len;
|
sl@0
|
835 |
int done = 0;
|
sl@0
|
836 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
837 |
|
sl@0
|
838 |
if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
|
sl@0
|
839 |
|
sl@0
|
840 |
s->stream.avail_in = 0; /* should be zero already anyway */
|
sl@0
|
841 |
|
sl@0
|
842 |
for (;;) {
|
sl@0
|
843 |
len = Z_BUFSIZE - s->stream.avail_out;
|
sl@0
|
844 |
|
sl@0
|
845 |
if (len != 0) {
|
sl@0
|
846 |
if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
|
sl@0
|
847 |
s->z_err = Z_ERRNO;
|
sl@0
|
848 |
return Z_ERRNO;
|
sl@0
|
849 |
}
|
sl@0
|
850 |
s->stream.next_out = s->outbuf;
|
sl@0
|
851 |
s->stream.avail_out = Z_BUFSIZE;
|
sl@0
|
852 |
}
|
sl@0
|
853 |
if (done) break;
|
sl@0
|
854 |
s->out += s->stream.avail_out;
|
sl@0
|
855 |
s->z_err = deflate_r(&(s->stream), flush);
|
sl@0
|
856 |
s->out -= s->stream.avail_out;
|
sl@0
|
857 |
|
sl@0
|
858 |
/* Ignore the second of two consecutive flushes: */
|
sl@0
|
859 |
if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
|
sl@0
|
860 |
|
sl@0
|
861 |
/* deflate has finished flushing only when it hasn't used up
|
sl@0
|
862 |
* all the available space in the output buffer:
|
sl@0
|
863 |
*/
|
sl@0
|
864 |
done = (s->stream.avail_out != 0 || s->z_err == Z_STREAM_END);
|
sl@0
|
865 |
|
sl@0
|
866 |
if (s->z_err != Z_OK && s->z_err != Z_STREAM_END) break;
|
sl@0
|
867 |
}
|
sl@0
|
868 |
return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
|
sl@0
|
869 |
}
|
sl@0
|
870 |
#ifdef __SYMBIAN32__
|
sl@0
|
871 |
int gzflush_r (gzFile file,int flush)
|
sl@0
|
872 |
#else
|
sl@0
|
873 |
int ZEXPORT gzflush (file, flush)
|
sl@0
|
874 |
gzFile file;
|
sl@0
|
875 |
int flush;
|
sl@0
|
876 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
877 |
{
|
sl@0
|
878 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
879 |
int err = do_flush (file, flush);
|
sl@0
|
880 |
|
sl@0
|
881 |
if (err) return err;
|
sl@0
|
882 |
fflush(s->file);
|
sl@0
|
883 |
return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
|
sl@0
|
884 |
}
|
sl@0
|
885 |
#endif /* NO_GZCOMPRESS */
|
sl@0
|
886 |
|
sl@0
|
887 |
/* ===========================================================================
|
sl@0
|
888 |
Sets the starting position for the next gzread or gzwrite on the given
|
sl@0
|
889 |
compressed file. The offset represents a number of bytes in the
|
sl@0
|
890 |
gzseek returns the resulting offset location as measured in bytes from
|
sl@0
|
891 |
the beginning of the uncompressed stream, or -1 in case of error.
|
sl@0
|
892 |
SEEK_END is not implemented, returns error.
|
sl@0
|
893 |
In this version of the library, gzseek can be extremely slow.
|
sl@0
|
894 |
*/
|
sl@0
|
895 |
#ifdef __SYMBIAN32__
|
sl@0
|
896 |
z_off_t gzseek_r (gzFile file,z_off_t offset,int whence)
|
sl@0
|
897 |
#else
|
sl@0
|
898 |
z_off_t ZEXPORT gzseek (file, offset, whence)
|
sl@0
|
899 |
gzFile file;
|
sl@0
|
900 |
z_off_t offset;
|
sl@0
|
901 |
int whence;
|
sl@0
|
902 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
903 |
|
sl@0
|
904 |
{
|
sl@0
|
905 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
906 |
|
sl@0
|
907 |
if (s == NULL || whence == SEEK_END ||
|
sl@0
|
908 |
s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) {
|
sl@0
|
909 |
return -1L;
|
sl@0
|
910 |
}
|
sl@0
|
911 |
|
sl@0
|
912 |
if (s->mode == 'w') {
|
sl@0
|
913 |
#ifdef NO_GZCOMPRESS
|
sl@0
|
914 |
return -1L;
|
sl@0
|
915 |
#else
|
sl@0
|
916 |
if (whence == SEEK_SET) {
|
sl@0
|
917 |
offset -= s->in;
|
sl@0
|
918 |
}
|
sl@0
|
919 |
if (offset < 0) return -1L;
|
sl@0
|
920 |
|
sl@0
|
921 |
/* At this point, offset is the number of zero bytes to write. */
|
sl@0
|
922 |
if (s->inbuf == Z_NULL) {
|
sl@0
|
923 |
s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
|
sl@0
|
924 |
if (s->inbuf == Z_NULL) return -1L;
|
sl@0
|
925 |
zmemzero(s->inbuf, Z_BUFSIZE);
|
sl@0
|
926 |
}
|
sl@0
|
927 |
while (offset > 0) {
|
sl@0
|
928 |
uInt size = Z_BUFSIZE;
|
sl@0
|
929 |
if (offset < Z_BUFSIZE) size = (uInt)offset;
|
sl@0
|
930 |
|
sl@0
|
931 |
size = gzwrite_r(file, s->inbuf, size);
|
sl@0
|
932 |
if (size == 0) return -1L;
|
sl@0
|
933 |
|
sl@0
|
934 |
offset -= size;
|
sl@0
|
935 |
}
|
sl@0
|
936 |
return s->in;
|
sl@0
|
937 |
#endif
|
sl@0
|
938 |
}
|
sl@0
|
939 |
/* Rest of function is for reading only */
|
sl@0
|
940 |
|
sl@0
|
941 |
/* compute absolute position */
|
sl@0
|
942 |
if (whence == SEEK_CUR) {
|
sl@0
|
943 |
offset += s->out;
|
sl@0
|
944 |
}
|
sl@0
|
945 |
if (offset < 0) return -1L;
|
sl@0
|
946 |
|
sl@0
|
947 |
if (s->transparent) {
|
sl@0
|
948 |
/* map to fseek */
|
sl@0
|
949 |
s->back = EOF;
|
sl@0
|
950 |
s->stream.avail_in = 0;
|
sl@0
|
951 |
s->stream.next_in = s->inbuf;
|
sl@0
|
952 |
if (fseek(s->file, offset, SEEK_SET) < 0) return -1L;
|
sl@0
|
953 |
|
sl@0
|
954 |
s->in = s->out = offset;
|
sl@0
|
955 |
return offset;
|
sl@0
|
956 |
}
|
sl@0
|
957 |
|
sl@0
|
958 |
/* For a negative seek, rewind and use positive seek */
|
sl@0
|
959 |
if (offset >= s->out) {
|
sl@0
|
960 |
offset -= s->out;
|
sl@0
|
961 |
} else if (gzrewind_r(file) < 0) {
|
sl@0
|
962 |
return -1L;
|
sl@0
|
963 |
}
|
sl@0
|
964 |
/* offset is now the number of bytes to skip. */
|
sl@0
|
965 |
|
sl@0
|
966 |
if (offset != 0 && s->outbuf == Z_NULL) {
|
sl@0
|
967 |
s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
|
sl@0
|
968 |
if (s->outbuf == Z_NULL) return -1L;
|
sl@0
|
969 |
}
|
sl@0
|
970 |
if (offset && s->back != EOF) {
|
sl@0
|
971 |
s->back = EOF;
|
sl@0
|
972 |
s->out++;
|
sl@0
|
973 |
offset--;
|
sl@0
|
974 |
if (s->last) s->z_err = Z_STREAM_END;
|
sl@0
|
975 |
}
|
sl@0
|
976 |
while (offset > 0) {
|
sl@0
|
977 |
int size = Z_BUFSIZE;
|
sl@0
|
978 |
if (offset < Z_BUFSIZE) size = (int)offset;
|
sl@0
|
979 |
|
sl@0
|
980 |
size = gzread_r(file, s->outbuf, (uInt)size);
|
sl@0
|
981 |
if (size <= 0) return -1L;
|
sl@0
|
982 |
offset -= size;
|
sl@0
|
983 |
}
|
sl@0
|
984 |
return s->out;
|
sl@0
|
985 |
}
|
sl@0
|
986 |
|
sl@0
|
987 |
/* ===========================================================================
|
sl@0
|
988 |
Rewinds input file.
|
sl@0
|
989 |
*/
|
sl@0
|
990 |
#ifdef __SYMBIAN32__
|
sl@0
|
991 |
int gzrewind_r (gzFile file)
|
sl@0
|
992 |
#else
|
sl@0
|
993 |
int ZEXPORT gzrewind (file)
|
sl@0
|
994 |
gzFile file;
|
sl@0
|
995 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
996 |
{
|
sl@0
|
997 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
998 |
|
sl@0
|
999 |
if (s == NULL || s->mode != 'r') return -1;
|
sl@0
|
1000 |
|
sl@0
|
1001 |
s->z_err = Z_OK;
|
sl@0
|
1002 |
s->z_eof = 0;
|
sl@0
|
1003 |
s->back = EOF;
|
sl@0
|
1004 |
s->stream.avail_in = 0;
|
sl@0
|
1005 |
s->stream.next_in = s->inbuf;
|
sl@0
|
1006 |
s->crc = crc32_r(0L, Z_NULL, 0);
|
sl@0
|
1007 |
if (!s->transparent) (void)inflateReset_r(&s->stream);
|
sl@0
|
1008 |
s->in = 0;
|
sl@0
|
1009 |
s->out = 0;
|
sl@0
|
1010 |
return fseek(s->file, s->start, SEEK_SET);
|
sl@0
|
1011 |
}
|
sl@0
|
1012 |
|
sl@0
|
1013 |
/* ===========================================================================
|
sl@0
|
1014 |
Returns the starting position for the next gzread or gzwrite on the
|
sl@0
|
1015 |
given compressed file. This position represents a number of bytes in the
|
sl@0
|
1016 |
uncompressed data stream.
|
sl@0
|
1017 |
*/
|
sl@0
|
1018 |
#ifdef __SYMBIAN32__
|
sl@0
|
1019 |
z_off_t gztell_r (gzFile file)
|
sl@0
|
1020 |
#else
|
sl@0
|
1021 |
z_off_t ZEXPORT gztell (file)
|
sl@0
|
1022 |
gzFile file;
|
sl@0
|
1023 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1024 |
{
|
sl@0
|
1025 |
return gzseek_r(file, 0L, SEEK_CUR);
|
sl@0
|
1026 |
}
|
sl@0
|
1027 |
|
sl@0
|
1028 |
/* ===========================================================================
|
sl@0
|
1029 |
Returns 1 when EOF has previously been detected reading the given
|
sl@0
|
1030 |
input stream, otherwise zero.
|
sl@0
|
1031 |
*/
|
sl@0
|
1032 |
#ifdef __SYMBIAN32__
|
sl@0
|
1033 |
int gzeof_r (gzFile file)
|
sl@0
|
1034 |
#else
|
sl@0
|
1035 |
int ZEXPORT gzeof (file)
|
sl@0
|
1036 |
gzFile file;
|
sl@0
|
1037 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1038 |
{
|
sl@0
|
1039 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
1040 |
|
sl@0
|
1041 |
/* With concatenated compressed files that can have embedded
|
sl@0
|
1042 |
* crc trailers, z_eof is no longer the only/best indicator of EOF
|
sl@0
|
1043 |
* on a gz_stream. Handle end-of-stream error explicitly here.
|
sl@0
|
1044 |
*/
|
sl@0
|
1045 |
if (s == NULL || s->mode != 'r') return 0;
|
sl@0
|
1046 |
if (s->z_eof) return 1;
|
sl@0
|
1047 |
return s->z_err == Z_STREAM_END;
|
sl@0
|
1048 |
}
|
sl@0
|
1049 |
|
sl@0
|
1050 |
/* ===========================================================================
|
sl@0
|
1051 |
Returns 1 if reading and doing so transparently, otherwise zero.
|
sl@0
|
1052 |
*/
|
sl@0
|
1053 |
#ifdef __SYMBIAN32__
|
sl@0
|
1054 |
int gzdirect_r (gzFile file)
|
sl@0
|
1055 |
#else
|
sl@0
|
1056 |
int ZEXPORT gzdirect (file)
|
sl@0
|
1057 |
gzFile file;
|
sl@0
|
1058 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1059 |
{
|
sl@0
|
1060 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
1061 |
|
sl@0
|
1062 |
if (s == NULL || s->mode != 'r') return 0;
|
sl@0
|
1063 |
return s->transparent;
|
sl@0
|
1064 |
}
|
sl@0
|
1065 |
|
sl@0
|
1066 |
/* ===========================================================================
|
sl@0
|
1067 |
Outputs a long in LSB order to the given file
|
sl@0
|
1068 |
*/
|
sl@0
|
1069 |
#ifdef __SYMBIAN32__
|
sl@0
|
1070 |
local void putLong (FILE * file,uLong x)
|
sl@0
|
1071 |
#else
|
sl@0
|
1072 |
local void putLong (file, x)
|
sl@0
|
1073 |
FILE *file;
|
sl@0
|
1074 |
uLong x;
|
sl@0
|
1075 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1076 |
{
|
sl@0
|
1077 |
int n;
|
sl@0
|
1078 |
for (n = 0; n < 4; n++) {
|
sl@0
|
1079 |
fputc((int)(x & 0xff), file);
|
sl@0
|
1080 |
x >>= 8;
|
sl@0
|
1081 |
}
|
sl@0
|
1082 |
}
|
sl@0
|
1083 |
|
sl@0
|
1084 |
/* ===========================================================================
|
sl@0
|
1085 |
Reads a long in LSB order from the given gz_stream. Sets z_err in case
|
sl@0
|
1086 |
of error.
|
sl@0
|
1087 |
*/
|
sl@0
|
1088 |
#ifdef __SYMBIAN32__
|
sl@0
|
1089 |
local uLong getLong (gz_stream * s)
|
sl@0
|
1090 |
#else
|
sl@0
|
1091 |
local uLong getLong (s)
|
sl@0
|
1092 |
gz_stream *s;
|
sl@0
|
1093 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1094 |
{
|
sl@0
|
1095 |
uLong x = (uLong)get_byte(s);
|
sl@0
|
1096 |
int c;
|
sl@0
|
1097 |
|
sl@0
|
1098 |
x += ((uLong)get_byte(s))<<8;
|
sl@0
|
1099 |
x += ((uLong)get_byte(s))<<16;
|
sl@0
|
1100 |
c = get_byte(s);
|
sl@0
|
1101 |
if (c == EOF) s->z_err = Z_DATA_ERROR;
|
sl@0
|
1102 |
x += ((uLong)c)<<24;
|
sl@0
|
1103 |
return x;
|
sl@0
|
1104 |
}
|
sl@0
|
1105 |
|
sl@0
|
1106 |
/* ===========================================================================
|
sl@0
|
1107 |
Flushes all pending output if necessary, closes the compressed file
|
sl@0
|
1108 |
and deallocates all the (de)compression state.
|
sl@0
|
1109 |
*/
|
sl@0
|
1110 |
#ifdef __SYMBIAN32__
|
sl@0
|
1111 |
int gzclose_r(gzFile file)
|
sl@0
|
1112 |
#else
|
sl@0
|
1113 |
int ZEXPORT gzclose (file)
|
sl@0
|
1114 |
gzFile file;
|
sl@0
|
1115 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1116 |
{
|
sl@0
|
1117 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
1118 |
|
sl@0
|
1119 |
if (s == NULL) return Z_STREAM_ERROR;
|
sl@0
|
1120 |
|
sl@0
|
1121 |
if (s->mode == 'w') {
|
sl@0
|
1122 |
#ifdef NO_GZCOMPRESS
|
sl@0
|
1123 |
return Z_STREAM_ERROR;
|
sl@0
|
1124 |
#else
|
sl@0
|
1125 |
if (do_flush (file, Z_FINISH) != Z_OK)
|
sl@0
|
1126 |
return destroy((gz_stream*)file);
|
sl@0
|
1127 |
|
sl@0
|
1128 |
putLong (s->file, s->crc);
|
sl@0
|
1129 |
putLong (s->file, (uLong)(s->in & 0xffffffff));
|
sl@0
|
1130 |
#endif
|
sl@0
|
1131 |
}
|
sl@0
|
1132 |
return destroy((gz_stream*)file);
|
sl@0
|
1133 |
}
|
sl@0
|
1134 |
|
sl@0
|
1135 |
#ifdef STDC
|
sl@0
|
1136 |
# define zstrerror(errnum) strerror(errnum)
|
sl@0
|
1137 |
#else
|
sl@0
|
1138 |
# define zstrerror(errnum) ""
|
sl@0
|
1139 |
#endif
|
sl@0
|
1140 |
|
sl@0
|
1141 |
/* ===========================================================================
|
sl@0
|
1142 |
Returns the error message for the last error which occurred on the
|
sl@0
|
1143 |
given compressed file. errnum is set to zlib error number. If an
|
sl@0
|
1144 |
error occurred in the file system and not in the compression library,
|
sl@0
|
1145 |
errnum is set to Z_ERRNO and the application may consult errno
|
sl@0
|
1146 |
to get the exact error code.
|
sl@0
|
1147 |
*/
|
sl@0
|
1148 |
#ifdef __SYMBIAN32__
|
sl@0
|
1149 |
const char * gzerror_r (gzFile file, int * errnum)
|
sl@0
|
1150 |
#else
|
sl@0
|
1151 |
const char * ZEXPORT gzerror (file, errnum)
|
sl@0
|
1152 |
gzFile file;
|
sl@0
|
1153 |
int *errnum;
|
sl@0
|
1154 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1155 |
{
|
sl@0
|
1156 |
char *m;
|
sl@0
|
1157 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
1158 |
|
sl@0
|
1159 |
if (s == NULL) {
|
sl@0
|
1160 |
*errnum = Z_STREAM_ERROR;
|
sl@0
|
1161 |
return (const char*)ERR_MSG(Z_STREAM_ERROR);
|
sl@0
|
1162 |
}
|
sl@0
|
1163 |
*errnum = s->z_err;
|
sl@0
|
1164 |
if (*errnum == Z_OK) return (const char*)"";
|
sl@0
|
1165 |
|
sl@0
|
1166 |
m = (char*)(*errnum == Z_ERRNO ? zstrerror(errno) : s->stream.msg);
|
sl@0
|
1167 |
|
sl@0
|
1168 |
if (m == NULL || *m == '\0') m = (char*)ERR_MSG(s->z_err);
|
sl@0
|
1169 |
|
sl@0
|
1170 |
TRYFREE(s->msg);
|
sl@0
|
1171 |
s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);
|
sl@0
|
1172 |
if (s->msg == Z_NULL) return (const char*)ERR_MSG(Z_MEM_ERROR);
|
sl@0
|
1173 |
strcpy(s->msg, s->path);
|
sl@0
|
1174 |
strcat(s->msg, ": ");
|
sl@0
|
1175 |
strcat(s->msg, m);
|
sl@0
|
1176 |
return (const char*)s->msg;
|
sl@0
|
1177 |
}
|
sl@0
|
1178 |
|
sl@0
|
1179 |
/* ===========================================================================
|
sl@0
|
1180 |
Clear the error and end-of-file flags, and do the same for the real file.
|
sl@0
|
1181 |
*/
|
sl@0
|
1182 |
#ifdef __SYMBIAN32__
|
sl@0
|
1183 |
void gzclearerr_r (gzFile file)
|
sl@0
|
1184 |
#else
|
sl@0
|
1185 |
void ZEXPORT gzclearerr (file)
|
sl@0
|
1186 |
gzFile file;
|
sl@0
|
1187 |
#endif /* __SYMBIAN32__ */
|
sl@0
|
1188 |
{
|
sl@0
|
1189 |
gz_stream *s = (gz_stream*)file;
|
sl@0
|
1190 |
|
sl@0
|
1191 |
if (s == NULL) return;
|
sl@0
|
1192 |
if (s->z_err != Z_STREAM_END) s->z_err = Z_OK;
|
sl@0
|
1193 |
s->z_eof = 0;
|
sl@0
|
1194 |
clearerr(s->file);
|
sl@0
|
1195 |
}
|
sl@0
|
1196 |
|
sl@0
|
1197 |
|
sl@0
|
1198 |
|