1 /* gzio.c -- IO on .gz files
2 * Copyright (C) 1995-2005 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
5 * Compile this file with -DNO_GZCOMPRESS to avoid the compression code.
12 #ifdef NO_DEFLATE /* for compatibility with old definition */
13 # define NO_GZCOMPRESS
17 struct internal_state
{int dummy
;}; /* for buggy compilers */
22 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
24 # define Z_BUFSIZE 16384
27 #ifndef Z_PRINTF_BUFSIZE
28 # define Z_PRINTF_BUFSIZE 4096
32 # pragma map (fdopen , "\174\174FDOPEN")
33 FILE *fdopen(int, const char *);
37 extern voidp malloc
OF((uInt size
));
38 extern void free
OF((voidpf ptr
));
41 #define ALLOC(size) malloc(size)
42 #define TRYFREE(p) {if (p) free(p);}
44 static int const gz_magic
[2] = {0x1f, 0x8b}; /* gzip magic header */
47 /*#define ASCII_FLAG 0x01 *//* bit 0 set: file probably ascii text */
48 #define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
49 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
50 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
51 #define COMMENT 0x10 /* bit 4 set: file comment present */
52 #define RESERVED 0xE0 /* bits 5..7: reserved */
54 typedef struct gz_stream
{
56 int z_err
; /* error code for last stream operation */
57 int z_eof
; /* set if end of input file */
58 FILE *file
; /* .gz file */
59 Byte
*inbuf
; /* input buffer */
60 Byte
*outbuf
; /* output buffer */
61 uLong crc
; /* crc32 of uncompressed data */
62 char *msg
; /* error message */
63 char *path
; /* path name for debugging only */
64 int transparent
; /* 1 if input file is not a .gz file */
65 char mode
; /* 'w' or 'r' */
66 z_off_t start
; /* start of compressed data in file (header skipped) */
67 z_off_t in
; /* bytes into deflate or inflate */
68 z_off_t out
; /* bytes out of deflate or inflate */
69 int back
; /* one character push-back */
70 int last
; /* true if push-back is last character */
74 local gzFile gz_open
OF((const char *path
, const char *mode
, int fd
));
75 local
int do_flush
OF((gzFile file
, int flush
));
76 local
int get_byte
OF((gz_stream
*s
));
77 local
void check_header
OF((gz_stream
*s
));
78 local
int destroy
OF((gz_stream
*s
));
79 local
void putLong
OF((FILE *file
, uLong x
));
80 local uLong getLong
OF((gz_stream
*s
));
82 /* ===========================================================================
83 Opens a gzip (.gz) file for reading or writing. The mode parameter
84 is as in fopen ("rb" or "wb"). The file is given either by file descriptor
85 or path name (if fd == -1).
86 gz_open returns NULL if the file could not be opened or if there was
87 insufficient memory to allocate the (de)compression state; errno
88 can be checked to distinguish the two cases (if errno is zero, the
89 zlib error is Z_MEM_ERROR).
91 local gzFile
gz_open (path
, mode
, fd
)
97 int level
= Z_DEFAULT_COMPRESSION
; /* compression level */
98 int strategy
= Z_DEFAULT_STRATEGY
; /* compression strategy */
101 char fmode
[80]; /* copy of mode, without the compression level */
104 if (!path
|| !mode
) return Z_NULL
;
106 s
= (gz_stream
*)ALLOC(sizeof(gz_stream
));
107 if (!s
) return Z_NULL
;
109 s
->stream
.zalloc
= (alloc_func
)0;
110 s
->stream
.zfree
= (free_func
)0;
111 s
->stream
.opaque
= (voidpf
)0;
112 s
->stream
.next_in
= s
->inbuf
= Z_NULL
;
113 s
->stream
.next_out
= s
->outbuf
= Z_NULL
;
114 s
->stream
.avail_in
= s
->stream
.avail_out
= 0;
121 s
->crc
= crc32(0L, Z_NULL
, 0);
125 s
->path
= (char*)ALLOC(strlen(path
)+1);
126 if (s
->path
== NULL
) {
127 return destroy(s
), (gzFile
)Z_NULL
;
129 strcpy(s
->path
, path
); /* do this early for debugging */
133 if (*p
== 'r') s
->mode
= 'r';
134 if (*p
== 'w' || *p
== 'a') s
->mode
= 'w';
135 if (*p
>= '0' && *p
<= '9') {
137 } else if (*p
== 'f') {
138 strategy
= Z_FILTERED
;
139 } else if (*p
== 'h') {
140 strategy
= Z_HUFFMAN_ONLY
;
141 } else if (*p
== 'R') {
144 *m
++ = *p
; /* copy the mode */
146 } while (*p
++ && m
!= fmode
+ sizeof(fmode
));
147 if (s
->mode
== '\0') return destroy(s
), (gzFile
)Z_NULL
;
149 if (s
->mode
== 'w') {
151 err
= Z_STREAM_ERROR
;
153 err
= deflateInit2(&(s
->stream
), level
,
154 Z_DEFLATED
, -MAX_WBITS
, DEF_MEM_LEVEL
, strategy
);
155 /* windowBits is passed < 0 to suppress zlib header */
157 s
->stream
.next_out
= s
->outbuf
= (Byte
*)ALLOC(Z_BUFSIZE
);
159 if (err
!= Z_OK
|| s
->outbuf
== Z_NULL
) {
160 return destroy(s
), (gzFile
)Z_NULL
;
163 s
->stream
.next_in
= s
->inbuf
= (Byte
*)ALLOC(Z_BUFSIZE
);
165 err
= inflateInit2(&(s
->stream
), -MAX_WBITS
);
166 /* windowBits is passed < 0 to tell that there is no zlib header.
167 * Note that in this case inflate *requires* an extra "dummy" byte
168 * after the compressed stream in order to complete decompression and
169 * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
170 * present after the compressed stream.
172 if (err
!= Z_OK
|| s
->inbuf
== Z_NULL
) {
173 return destroy(s
), (gzFile
)Z_NULL
;
176 s
->stream
.avail_out
= Z_BUFSIZE
;
179 s
->file
= fd
< 0 ? F_OPEN(path
, fmode
) : (FILE*)fdopen(fd
, fmode
);
181 if (s
->file
== NULL
) {
182 return destroy(s
), (gzFile
)Z_NULL
;
184 if (s
->mode
== 'w') {
185 /* Write a very simple .gz header:
187 fprintf(s
->file
, "%c%c%c%c%c%c%c%c%c%c", gz_magic
[0], gz_magic
[1],
188 Z_DEFLATED
, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE
);
190 /* We use 10L instead of ftell(s->file) to because ftell causes an
191 * fflush on some systems. This version of the library doesn't use
192 * start anyway in write mode, so this initialization is not
196 check_header(s
); /* skip the .gz header */
197 s
->start
= ftell(s
->file
) - s
->stream
.avail_in
;
203 /* ===========================================================================
204 Opens a gzip (.gz) file for reading or writing.
206 gzFile ZEXPORT
gzopen (path
, mode
)
210 return gz_open (path
, mode
, -1);
213 /* ===========================================================================
214 Associate a gzFile with the file descriptor fd. fd is not dup'ed here
215 to mimic the behavio(u)r of fdopen.
217 gzFile ZEXPORT
gzdopen (fd
, mode
)
221 char name
[46]; /* allow for up to 128-bit integers */
223 if (fd
< 0) return (gzFile
)Z_NULL
;
224 sprintf(name
, "<fd:%d>", fd
); /* for debugging */
226 return gz_open (name
, mode
, fd
);
229 /* ===========================================================================
230 * Update the compression level and strategy
232 int ZEXPORT
gzsetparams (file
, level
, strategy
)
237 gz_stream
*s
= (gz_stream
*)file
;
239 if (s
== NULL
|| s
->mode
!= 'w') return Z_STREAM_ERROR
;
241 /* Make room to allow flushing */
242 if (s
->stream
.avail_out
== 0) {
244 s
->stream
.next_out
= s
->outbuf
;
245 if (fwrite(s
->outbuf
, 1, Z_BUFSIZE
, s
->file
) != Z_BUFSIZE
) {
248 s
->stream
.avail_out
= Z_BUFSIZE
;
251 return deflateParams (&(s
->stream
), level
, strategy
);
254 /* ===========================================================================
255 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
257 IN assertion: the stream s has been successfully opened for reading.
259 local
int get_byte(s
)
262 if (s
->z_eof
) return EOF
;
263 if (s
->stream
.avail_in
== 0) {
265 s
->stream
.avail_in
= (uInt
)fread(s
->inbuf
, 1, Z_BUFSIZE
, s
->file
);
266 if (s
->stream
.avail_in
== 0) {
268 if (ferror(s
->file
)) s
->z_err
= Z_ERRNO
;
271 s
->stream
.next_in
= s
->inbuf
;
273 s
->stream
.avail_in
--;
274 return *(s
->stream
.next_in
)++;
277 /* ===========================================================================
278 Check the gzip header of a gz_stream opened for reading. Set the stream
279 mode to transparent if the gzip magic header is not present; set s->err
280 to Z_DATA_ERROR if the magic header is present but the rest of the header
282 IN assertion: the stream s has already been created successfully;
283 s->stream.avail_in is zero for the first time, but may be non-zero
284 for concatenated .gz files.
286 local
void check_header(s
)
289 int method
; /* method byte */
290 int flags
; /* flags byte */
294 /* Assure two bytes in the buffer so we can peek ahead -- handle case
295 where first byte of header is at the end of the buffer after the last
297 len
= s
->stream
.avail_in
;
299 if (len
) s
->inbuf
[0] = s
->stream
.next_in
[0];
301 len
= (uInt
)fread(s
->inbuf
+ len
, 1, Z_BUFSIZE
>> len
, s
->file
);
302 if (len
== 0 && ferror(s
->file
)) s
->z_err
= Z_ERRNO
;
303 s
->stream
.avail_in
+= len
;
304 s
->stream
.next_in
= s
->inbuf
;
305 if (s
->stream
.avail_in
< 2) {
306 s
->transparent
= s
->stream
.avail_in
;
311 /* Peek ahead to check the gzip magic header */
312 if (s
->stream
.next_in
[0] != gz_magic
[0] ||
313 s
->stream
.next_in
[1] != gz_magic
[1]) {
317 s
->stream
.avail_in
-= 2;
318 s
->stream
.next_in
+= 2;
320 /* Check the rest of the gzip header */
321 method
= get_byte(s
);
323 if (method
!= Z_DEFLATED
|| (flags
& RESERVED
) != 0) {
324 s
->z_err
= Z_DATA_ERROR
;
328 /* Discard time, xflags and OS code: */
329 for (len
= 0; len
< 6; len
++) (void)get_byte(s
);
331 if ((flags
& EXTRA_FIELD
) != 0) { /* skip the extra field */
332 len
= (uInt
)get_byte(s
);
333 len
+= ((uInt
)get_byte(s
))<<8;
334 /* len is garbage if EOF but the loop below will quit anyway */
335 while (len
-- != 0 && get_byte(s
) != EOF
) ;
337 if ((flags
& ORIG_NAME
) != 0) { /* skip the original file name */
338 while ((c
= get_byte(s
)) != 0 && c
!= EOF
) ;
340 if ((flags
& COMMENT
) != 0) { /* skip the .gz file comment */
341 while ((c
= get_byte(s
)) != 0 && c
!= EOF
) ;
343 if ((flags
& HEAD_CRC
) != 0) { /* skip the header crc */
344 for (len
= 0; len
< 2; len
++) (void)get_byte(s
);
346 s
->z_err
= s
->z_eof
? Z_DATA_ERROR
: Z_OK
;
349 /* ===========================================================================
350 * Cleanup then free the given gz_stream. Return a zlib error code.
351 Try freeing in the reverse order of allocations.
353 local
int destroy (s
)
358 if (!s
) return Z_STREAM_ERROR
;
362 if (s
->stream
.state
!= NULL
) {
363 if (s
->mode
== 'w') {
365 err
= Z_STREAM_ERROR
;
367 err
= deflateEnd(&(s
->stream
));
369 } else if (s
->mode
== 'r') {
370 err
= inflateEnd(&(s
->stream
));
373 if (s
->file
!= NULL
&& fclose(s
->file
)) {
375 if (errno
!= ESPIPE
) /* fclose is broken for pipes in HP/UX */
379 if (s
->z_err
< 0) err
= s
->z_err
;
388 /* ===========================================================================
389 Reads the given number of uncompressed bytes from the compressed file.
390 gzread returns the number of bytes actually read (0 for end of file).
392 int ZEXPORT
gzread (file
, buf
, len
)
397 gz_stream
*s
= (gz_stream
*)file
;
398 Bytef
*start
= (Bytef
*)buf
; /* starting point for crc computation */
399 Byte
*next_out
; /* == stream.next_out but not forced far (for MSDOS) */
401 if (s
== NULL
|| s
->mode
!= 'r') return Z_STREAM_ERROR
;
403 if (s
->z_err
== Z_DATA_ERROR
|| s
->z_err
== Z_ERRNO
) return -1;
404 if (s
->z_err
== Z_STREAM_END
) return 0; /* EOF */
406 next_out
= (Byte
*)buf
;
407 s
->stream
.next_out
= (Bytef
*)buf
;
408 s
->stream
.avail_out
= len
;
410 if (s
->stream
.avail_out
&& s
->back
!= EOF
) {
411 *next_out
++ = s
->back
;
412 s
->stream
.next_out
++;
413 s
->stream
.avail_out
--;
418 s
->z_err
= Z_STREAM_END
;
423 while (s
->stream
.avail_out
!= 0) {
425 if (s
->transparent
) {
426 /* Copy first the lookahead bytes: */
427 uInt n
= s
->stream
.avail_in
;
428 if (n
> s
->stream
.avail_out
) n
= s
->stream
.avail_out
;
430 zmemcpy(s
->stream
.next_out
, s
->stream
.next_in
, n
);
432 s
->stream
.next_out
= next_out
;
433 s
->stream
.next_in
+= n
;
434 s
->stream
.avail_out
-= n
;
435 s
->stream
.avail_in
-= n
;
437 if (s
->stream
.avail_out
> 0) {
438 s
->stream
.avail_out
-=
439 (uInt
)fread(next_out
, 1, s
->stream
.avail_out
, s
->file
);
441 len
-= s
->stream
.avail_out
;
444 if (len
== 0) s
->z_eof
= 1;
447 if (s
->stream
.avail_in
== 0 && !s
->z_eof
) {
450 s
->stream
.avail_in
= (uInt
)fread(s
->inbuf
, 1, Z_BUFSIZE
, s
->file
);
451 if (s
->stream
.avail_in
== 0) {
453 if (ferror(s
->file
)) {
458 s
->stream
.next_in
= s
->inbuf
;
460 s
->in
+= s
->stream
.avail_in
;
461 s
->out
+= s
->stream
.avail_out
;
462 s
->z_err
= inflate(&(s
->stream
), Z_NO_FLUSH
);
463 s
->in
-= s
->stream
.avail_in
;
464 s
->out
-= s
->stream
.avail_out
;
466 if (s
->z_err
== Z_STREAM_END
) {
467 /* Check CRC and original size */
468 s
->crc
= crc32(s
->crc
, start
, (uInt
)(s
->stream
.next_out
- start
));
469 start
= s
->stream
.next_out
;
471 if (getLong(s
) != s
->crc
) {
472 s
->z_err
= Z_DATA_ERROR
;
475 /* The uncompressed length returned by above getlong() may be
476 * different from s->out in case of concatenated .gz files.
477 * Check for such files:
480 if (s
->z_err
== Z_OK
) {
481 inflateReset(&(s
->stream
));
482 s
->crc
= crc32(0L, Z_NULL
, 0);
486 if (s
->z_err
!= Z_OK
|| s
->z_eof
) break;
488 s
->crc
= crc32(s
->crc
, start
, (uInt
)(s
->stream
.next_out
- start
));
490 if (len
== s
->stream
.avail_out
&&
491 (s
->z_err
== Z_DATA_ERROR
|| s
->z_err
== Z_ERRNO
))
493 return (int)(len
- s
->stream
.avail_out
);
497 /* ===========================================================================
498 Reads one byte from the compressed file. gzgetc returns this byte
499 or -1 in case of end of file or error.
501 int ZEXPORT
gzgetc(file
)
506 return gzread(file
, &c
, 1) == 1 ? c
: -1;
510 /* ===========================================================================
511 Push one byte back onto the stream.
513 int ZEXPORT
gzungetc(c
, file
)
517 gz_stream
*s
= (gz_stream
*)file
;
519 if (s
== NULL
|| s
->mode
!= 'r' || c
== EOF
|| s
->back
!= EOF
) return EOF
;
522 s
->last
= (s
->z_err
== Z_STREAM_END
);
523 if (s
->last
) s
->z_err
= Z_OK
;
529 /* ===========================================================================
530 Reads bytes from the compressed file until len-1 characters are
531 read, or a newline character is read and transferred to buf, or an
532 end-of-file condition is encountered. The string is then terminated
533 with a null character.
534 gzgets returns buf, or Z_NULL in case of error.
536 The current implementation is not optimized at all.
538 char * ZEXPORT
gzgets(file
, buf
, len
)
544 if (buf
== Z_NULL
|| len
<= 0) return Z_NULL
;
546 while (--len
> 0 && gzread(file
, buf
, 1) == 1 && *buf
++ != '\n') ;
548 return b
== buf
&& len
> 0 ? Z_NULL
: b
;
552 #ifndef NO_GZCOMPRESS
553 /* ===========================================================================
554 Writes the given number of uncompressed bytes into the compressed file.
555 gzwrite returns the number of bytes actually written (0 in case of error).
557 int ZEXPORT
gzwrite (file
, buf
, len
)
562 gz_stream
*s
= (gz_stream
*)file
;
564 if (s
== NULL
|| s
->mode
!= 'w') return Z_STREAM_ERROR
;
566 s
->stream
.next_in
= (const Bytef
*)buf
;
567 s
->stream
.avail_in
= len
;
569 while (s
->stream
.avail_in
!= 0) {
571 if (s
->stream
.avail_out
== 0) {
573 s
->stream
.next_out
= s
->outbuf
;
574 if (fwrite(s
->outbuf
, 1, Z_BUFSIZE
, s
->file
) != Z_BUFSIZE
) {
578 s
->stream
.avail_out
= Z_BUFSIZE
;
580 s
->in
+= s
->stream
.avail_in
;
581 s
->out
+= s
->stream
.avail_out
;
582 s
->z_err
= deflate(&(s
->stream
), Z_NO_FLUSH
);
583 s
->in
-= s
->stream
.avail_in
;
584 s
->out
-= s
->stream
.avail_out
;
585 if (s
->z_err
!= Z_OK
) break;
587 s
->crc
= crc32(s
->crc
, (const Bytef
*)buf
, len
);
589 return (int)(len
- s
->stream
.avail_in
);
593 /* ===========================================================================
594 Converts, formats, and writes the args to the compressed file under
595 control of the format string, as in fprintf. gzprintf returns the number of
596 uncompressed bytes actually written (0 in case of error).
601 int ZEXPORTVA
gzprintf (gzFile file
, const char *format
, /* args */ ...)
603 char buf
[Z_PRINTF_BUFSIZE
];
607 buf
[sizeof(buf
) - 1] = 0;
608 va_start(va
, format
);
610 # ifdef HAS_vsprintf_void
611 (void)vsprintf(buf
, format
, va
);
613 for (len
= 0; len
< sizeof(buf
); len
++)
614 if (buf
[len
] == 0) break;
616 len
= vsprintf(buf
, format
, va
);
620 # ifdef HAS_vsnprintf_void
621 (void)vsnprintf(buf
, sizeof(buf
), format
, va
);
625 len
= vsnprintf(buf
, sizeof(buf
), format
, va
);
629 if (len
<= 0 || len
>= (int)sizeof(buf
) || buf
[sizeof(buf
) - 1] != 0)
631 return gzwrite(file
, buf
, (unsigned)len
);
633 #else /* not ANSI C */
635 int ZEXPORTVA
gzprintf (file
, format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
,
636 a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
)
639 int a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
,
640 a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
;
642 char buf
[Z_PRINTF_BUFSIZE
];
645 buf
[sizeof(buf
) - 1] = 0;
647 # ifdef HAS_sprintf_void
648 sprintf(buf
, format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
649 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
650 for (len
= 0; len
< sizeof(buf
); len
++)
651 if (buf
[len
] == 0) break;
653 len
= sprintf(buf
, format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
654 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
657 # ifdef HAS_snprintf_void
658 snprintf(buf
, sizeof(buf
), format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
659 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
662 len
= snprintf(buf
, sizeof(buf
), format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
663 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
666 if (len
<= 0 || len
>= sizeof(buf
) || buf
[sizeof(buf
) - 1] != 0)
668 return gzwrite(file
, buf
, len
);
672 /* ===========================================================================
673 Writes c, converted to an unsigned char, into the compressed file.
674 gzputc returns the value that was written, or -1 in case of error.
676 int ZEXPORT
gzputc(file
, c
)
680 unsigned char cc
= (unsigned char) c
; /* required for big endian systems */
682 return gzwrite(file
, &cc
, 1) == 1 ? (int)cc
: -1;
686 /* ===========================================================================
687 Writes the given null-terminated string to the compressed file, excluding
688 the terminating null character.
689 gzputs returns the number of characters written, or -1 in case of error.
691 int ZEXPORT
gzputs(file
, s
)
695 return gzwrite(file
, (voidpc
)s
, (unsigned)strlen(s
));
699 /* ===========================================================================
700 Flushes all pending output into the compressed file. The parameter
701 flush is as in the deflate() function.
703 local
int do_flush (file
, flush
)
709 gz_stream
*s
= (gz_stream
*)file
;
711 if (s
== NULL
|| s
->mode
!= 'w') return Z_STREAM_ERROR
;
713 s
->stream
.avail_in
= 0; /* should be zero already anyway */
716 len
= Z_BUFSIZE
- s
->stream
.avail_out
;
719 if ((uInt
)fwrite(s
->outbuf
, 1, len
, s
->file
) != len
) {
723 s
->stream
.next_out
= s
->outbuf
;
724 s
->stream
.avail_out
= Z_BUFSIZE
;
727 s
->out
+= s
->stream
.avail_out
;
728 s
->z_err
= deflate(&(s
->stream
), flush
);
729 s
->out
-= s
->stream
.avail_out
;
731 /* Ignore the second of two consecutive flushes: */
732 if (len
== 0 && s
->z_err
== Z_BUF_ERROR
) s
->z_err
= Z_OK
;
734 /* deflate has finished flushing only when it hasn't used up
735 * all the available space in the output buffer:
737 done
= (s
->stream
.avail_out
!= 0 || s
->z_err
== Z_STREAM_END
);
739 if (s
->z_err
!= Z_OK
&& s
->z_err
!= Z_STREAM_END
) break;
741 return s
->z_err
== Z_STREAM_END
? Z_OK
: s
->z_err
;
744 int ZEXPORT
gzflush (file
, flush
)
748 gz_stream
*s
= (gz_stream
*)file
;
749 int err
= do_flush (file
, flush
);
753 return s
->z_err
== Z_STREAM_END
? Z_OK
: s
->z_err
;
755 #endif /* NO_GZCOMPRESS */
757 /* ===========================================================================
758 Sets the starting position for the next gzread or gzwrite on the given
759 compressed file. The offset represents a number of bytes in the
760 gzseek returns the resulting offset location as measured in bytes from
761 the beginning of the uncompressed stream, or -1 in case of error.
762 SEEK_END is not implemented, returns error.
763 In this version of the library, gzseek can be extremely slow.
765 z_off_t ZEXPORT
gzseek (file
, offset
, whence
)
770 gz_stream
*s
= (gz_stream
*)file
;
772 if (s
== NULL
|| whence
== SEEK_END
||
773 s
->z_err
== Z_ERRNO
|| s
->z_err
== Z_DATA_ERROR
) {
777 if (s
->mode
== 'w') {
781 if (whence
== SEEK_SET
) {
784 if (offset
< 0) return -1L;
786 /* At this point, offset is the number of zero bytes to write. */
787 if (s
->inbuf
== Z_NULL
) {
788 s
->inbuf
= (Byte
*)ALLOC(Z_BUFSIZE
); /* for seeking */
789 if (s
->inbuf
== Z_NULL
) return -1L;
790 zmemzero(s
->inbuf
, Z_BUFSIZE
);
793 uInt size
= Z_BUFSIZE
;
794 if (offset
< Z_BUFSIZE
) size
= (uInt
)offset
;
796 size
= gzwrite(file
, s
->inbuf
, size
);
797 if (size
== 0) return -1L;
804 /* Rest of function is for reading only */
806 /* compute absolute position */
807 if (whence
== SEEK_CUR
) {
810 if (offset
< 0) return -1L;
812 if (s
->transparent
) {
815 s
->stream
.avail_in
= 0;
816 s
->stream
.next_in
= s
->inbuf
;
817 if (fseek(s
->file
, offset
, SEEK_SET
) < 0) return -1L;
819 s
->in
= s
->out
= offset
;
823 /* For a negative seek, rewind and use positive seek */
824 if (offset
>= s
->out
) {
826 } else if (gzrewind(file
) < 0) {
829 /* offset is now the number of bytes to skip. */
831 if (offset
!= 0 && s
->outbuf
== Z_NULL
) {
832 s
->outbuf
= (Byte
*)ALLOC(Z_BUFSIZE
);
833 if (s
->outbuf
== Z_NULL
) return -1L;
835 if (offset
&& s
->back
!= EOF
) {
839 if (s
->last
) s
->z_err
= Z_STREAM_END
;
842 int size
= Z_BUFSIZE
;
843 if (offset
< Z_BUFSIZE
) size
= (int)offset
;
845 size
= gzread(file
, s
->outbuf
, (uInt
)size
);
846 if (size
<= 0) return -1L;
852 /* ===========================================================================
855 int ZEXPORT
gzrewind (file
)
858 gz_stream
*s
= (gz_stream
*)file
;
860 if (s
== NULL
|| s
->mode
!= 'r') return -1;
865 s
->stream
.avail_in
= 0;
866 s
->stream
.next_in
= s
->inbuf
;
867 s
->crc
= crc32(0L, Z_NULL
, 0);
868 if (!s
->transparent
) (void)inflateReset(&s
->stream
);
871 return fseek(s
->file
, s
->start
, SEEK_SET
);
874 /* ===========================================================================
875 Returns the starting position for the next gzread or gzwrite on the
876 given compressed file. This position represents a number of bytes in the
877 uncompressed data stream.
879 z_off_t ZEXPORT
gztell (file
)
882 return gzseek(file
, 0L, SEEK_CUR
);
885 /* ===========================================================================
886 Returns 1 when EOF has previously been detected reading the given
887 input stream, otherwise zero.
889 int ZEXPORT
gzeof (file
)
892 gz_stream
*s
= (gz_stream
*)file
;
894 /* With concatenated compressed files that can have embedded
895 * crc trailers, z_eof is no longer the only/best indicator of EOF
896 * on a gz_stream. Handle end-of-stream error explicitly here.
898 if (s
== NULL
|| s
->mode
!= 'r') return 0;
899 if (s
->z_eof
) return 1;
900 return s
->z_err
== Z_STREAM_END
;
903 /* ===========================================================================
904 Returns 1 if reading and doing so transparently, otherwise zero.
906 int ZEXPORT
gzdirect (file
)
909 gz_stream
*s
= (gz_stream
*)file
;
911 if (s
== NULL
|| s
->mode
!= 'r') return 0;
912 return s
->transparent
;
915 /* ===========================================================================
916 Outputs a long in LSB order to the given file
918 local
void putLong (file
, x
)
923 for (n
= 0; n
< 4; n
++) {
924 fputc((int)(x
& 0xff), file
);
929 /* ===========================================================================
930 Reads a long in LSB order from the given gz_stream. Sets z_err in case
933 local uLong
getLong (s
)
936 uLong x
= (uLong
)get_byte(s
);
939 x
+= ((uLong
)get_byte(s
))<<8;
940 x
+= ((uLong
)get_byte(s
))<<16;
942 if (c
== EOF
) s
->z_err
= Z_DATA_ERROR
;
947 /* ===========================================================================
948 Flushes all pending output if necessary, closes the compressed file
949 and deallocates all the (de)compression state.
951 int ZEXPORT
gzclose (file
)
954 gz_stream
*s
= (gz_stream
*)file
;
956 if (s
== NULL
) return Z_STREAM_ERROR
;
958 if (s
->mode
== 'w') {
960 return Z_STREAM_ERROR
;
962 if (do_flush (file
, Z_FINISH
) != Z_OK
)
963 return destroy((gz_stream
*)file
);
965 putLong (s
->file
, s
->crc
);
966 putLong (s
->file
, (uLong
)(s
->in
& 0xffffffff));
969 return destroy((gz_stream
*)file
);
973 # define zstrerror(errnum) strerror(errnum)
975 # define zstrerror(errnum) ""
978 /* ===========================================================================
979 Returns the error message for the last error which occurred on the
980 given compressed file. errnum is set to zlib error number. If an
981 error occurred in the file system and not in the compression library,
982 errnum is set to Z_ERRNO and the application may consult errno
983 to get the exact error code.
985 const char * ZEXPORT
gzerror (file
, errnum
)
990 gz_stream
*s
= (gz_stream
*)file
;
993 *errnum
= Z_STREAM_ERROR
;
994 return (const char*)ERR_MSG(Z_STREAM_ERROR
);
997 if (*errnum
== Z_OK
) return (const char*)"";
999 m
= (*errnum
== Z_ERRNO
? zstrerror(errno
) : s
->stream
.msg
);
1001 if (m
== NULL
|| *m
== '\0') m
= ERR_MSG(s
->z_err
);
1004 s
->msg
= (char*)ALLOC(strlen(s
->path
) + strlen(m
) + 3);
1005 if (s
->msg
== Z_NULL
) return (const char*)ERR_MSG(Z_MEM_ERROR
);
1006 strcpy(s
->msg
, s
->path
);
1007 strcat(s
->msg
, ": ");
1009 return (const char*)s
->msg
;
1012 /* ===========================================================================
1013 Clear the error and end-of-file flags, and do the same for the real file.
1015 void ZEXPORT
gzclearerr (file
)
1018 gz_stream
*s
= (gz_stream
*)file
;
1020 if (s
== NULL
) return;
1021 if (s
->z_err
!= Z_STREAM_END
) s
->z_err
= Z_OK
;