1 /* gzio.c -- IO on .gz files
2 * Copyright (C) 1995-2003 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.
13 #ifdef NO_DEFLATE /* for compatiblity with old definition */
14 # define NO_GZCOMPRESS
18 struct internal_state
{int dummy
;}; /* for buggy compilers */
23 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
25 # define Z_BUFSIZE 16384
28 #ifndef Z_PRINTF_BUFSIZE
29 # define Z_PRINTF_BUFSIZE 4096
33 # pragma map (fdopen , "\174\174FDOPEN")
34 FILE *fdopen(int, const char *);
38 extern voidp malloc
OF((uInt size
));
39 extern void free
OF((voidpf ptr
));
42 #define ALLOC(size) malloc(size)
43 #define TRYFREE(p) {if (p) free(p);}
45 static int const gz_magic
[2] = {0x1f, 0x8b}; /* gzip magic header */
48 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
49 #define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
50 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
51 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
52 #define COMMENT 0x10 /* bit 4 set: file comment present */
53 #define RESERVED 0xE0 /* bits 5..7: reserved */
55 typedef struct gz_stream
{
57 int z_err
; /* error code for last stream operation */
58 int z_eof
; /* set if end of input file */
59 FILE *file
; /* .gz file */
60 Byte
*inbuf
; /* input buffer */
61 Byte
*outbuf
; /* output buffer */
62 uLong crc
; /* crc32 of uncompressed data */
63 char *msg
; /* error message */
64 char *path
; /* path name for debugging only */
65 int transparent
; /* 1 if input file is not a .gz file */
66 char mode
; /* 'w' or 'r' */
67 z_off_t start
; /* start of compressed data in file (header skipped) */
68 z_off_t in
; /* bytes into deflate or inflate */
69 z_off_t out
; /* bytes out of deflate or inflate */
70 int back
; /* one character push-back */
71 int last
; /* true if push-back is last character */
75 local gzFile gz_open
OF((const char *path
, const char *mode
, int fd
));
76 local
int do_flush
OF((gzFile file
, int flush
));
77 local
int get_byte
OF((gz_stream
*s
));
78 local
void check_header
OF((gz_stream
*s
));
79 local
int destroy
OF((gz_stream
*s
));
80 local
void putLong
OF((FILE *file
, uLong x
));
81 local uLong getLong
OF((gz_stream
*s
));
83 /* ===========================================================================
84 Opens a gzip (.gz) file for reading or writing. The mode parameter
85 is as in fopen ("rb" or "wb"). The file is given either by file descriptor
86 or path name (if fd == -1).
87 gz_open returns NULL if the file could not be opened or if there was
88 insufficient memory to allocate the (de)compression state; errno
89 can be checked to distinguish the two cases (if errno is zero, the
90 zlib error is Z_MEM_ERROR).
92 local gzFile
gz_open (path
, mode
, fd
)
98 int level
= Z_DEFAULT_COMPRESSION
; /* compression level */
99 int strategy
= Z_DEFAULT_STRATEGY
; /* compression strategy */
100 char *p
= (char*)mode
;
102 char fmode
[80]; /* copy of mode, without the compression level */
105 if (!path
|| !mode
) return Z_NULL
;
107 s
= (gz_stream
*)ALLOC(sizeof(gz_stream
));
108 if (!s
) return Z_NULL
;
110 s
->stream
.zalloc
= (alloc_func
)0;
111 s
->stream
.zfree
= (free_func
)0;
112 s
->stream
.opaque
= (voidpf
)0;
113 s
->stream
.next_in
= s
->inbuf
= Z_NULL
;
114 s
->stream
.next_out
= s
->outbuf
= Z_NULL
;
115 s
->stream
.avail_in
= s
->stream
.avail_out
= 0;
122 s
->crc
= crc32(0L, Z_NULL
, 0);
126 s
->path
= (char*)ALLOC(strlen(path
)+1);
127 if (s
->path
== NULL
) {
128 return destroy(s
), (gzFile
)Z_NULL
;
130 strcpy(s
->path
, path
); /* do this early for debugging */
134 if (*p
== 'r') s
->mode
= 'r';
135 if (*p
== 'w' || *p
== 'a') s
->mode
= 'w';
136 if (*p
>= '0' && *p
<= '9') {
138 } else if (*p
== 'f') {
139 strategy
= Z_FILTERED
;
140 } else if (*p
== 'h') {
141 strategy
= Z_HUFFMAN_ONLY
;
142 } else if (*p
== 'R') {
145 *m
++ = *p
; /* copy the mode */
147 } while (*p
++ && m
!= fmode
+ sizeof(fmode
));
148 if (s
->mode
== '\0') return destroy(s
), (gzFile
)Z_NULL
;
150 if (s
->mode
== 'w') {
152 err
= Z_STREAM_ERROR
;
154 err
= deflateInit2(&(s
->stream
), level
,
155 Z_DEFLATED
, -MAX_WBITS
, DEF_MEM_LEVEL
, strategy
);
156 /* windowBits is passed < 0 to suppress zlib header */
158 s
->stream
.next_out
= s
->outbuf
= (Byte
*)ALLOC(Z_BUFSIZE
);
160 if (err
!= Z_OK
|| s
->outbuf
== Z_NULL
) {
161 return destroy(s
), (gzFile
)Z_NULL
;
164 s
->stream
.next_in
= s
->inbuf
= (Byte
*)ALLOC(Z_BUFSIZE
);
166 err
= inflateInit2(&(s
->stream
), -MAX_WBITS
);
167 /* windowBits is passed < 0 to tell that there is no zlib header.
168 * Note that in this case inflate *requires* an extra "dummy" byte
169 * after the compressed stream in order to complete decompression and
170 * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
171 * present after the compressed stream.
173 if (err
!= Z_OK
|| s
->inbuf
== Z_NULL
) {
174 return destroy(s
), (gzFile
)Z_NULL
;
177 s
->stream
.avail_out
= Z_BUFSIZE
;
180 s
->file
= fd
< 0 ? F_OPEN(path
, fmode
) : (FILE*)fdopen(fd
, fmode
);
182 if (s
->file
== NULL
) {
183 return destroy(s
), (gzFile
)Z_NULL
;
185 if (s
->mode
== 'w') {
186 /* Write a very simple .gz header:
188 fprintf(s
->file
, "%c%c%c%c%c%c%c%c%c%c", gz_magic
[0], gz_magic
[1],
189 Z_DEFLATED
, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE
);
191 /* We use 10L instead of ftell(s->file) to because ftell causes an
192 * fflush on some systems. This version of the library doesn't use
193 * start anyway in write mode, so this initialization is not
197 check_header(s
); /* skip the .gz header */
198 s
->start
= ftell(s
->file
) - s
->stream
.avail_in
;
204 /* ===========================================================================
205 Opens a gzip (.gz) file for reading or writing.
207 gzFile ZEXPORT
gzopen (path
, mode
)
211 return gz_open (path
, mode
, -1);
214 /* ===========================================================================
215 Associate a gzFile with the file descriptor fd. fd is not dup'ed here
216 to mimic the behavio(u)r of fdopen.
218 gzFile ZEXPORT
gzdopen (fd
, mode
)
224 if (fd
< 0) return (gzFile
)Z_NULL
;
225 sprintf(name
, "<fd:%d>", fd
); /* for debugging */
227 return gz_open (name
, mode
, fd
);
230 /* ===========================================================================
231 * Update the compression level and strategy
233 int ZEXPORT
gzsetparams (file
, level
, strategy
)
238 gz_stream
*s
= (gz_stream
*)file
;
240 if (s
== NULL
|| s
->mode
!= 'w') return Z_STREAM_ERROR
;
242 /* Make room to allow flushing */
243 if (s
->stream
.avail_out
== 0) {
245 s
->stream
.next_out
= s
->outbuf
;
246 if (fwrite(s
->outbuf
, 1, Z_BUFSIZE
, s
->file
) != Z_BUFSIZE
) {
249 s
->stream
.avail_out
= Z_BUFSIZE
;
252 return deflateParams (&(s
->stream
), level
, strategy
);
255 /* ===========================================================================
256 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
258 IN assertion: the stream s has been sucessfully opened for reading.
260 local
int get_byte(s
)
263 if (s
->z_eof
) return EOF
;
264 if (s
->stream
.avail_in
== 0) {
266 s
->stream
.avail_in
= fread(s
->inbuf
, 1, Z_BUFSIZE
, s
->file
);
267 if (s
->stream
.avail_in
== 0) {
270 if (errno
) s
->z_err
= Z_ERRNO
;
273 s
->stream
.next_in
= s
->inbuf
;
275 s
->stream
.avail_in
--;
276 return *(s
->stream
.next_in
)++;
279 /* ===========================================================================
280 Check the gzip header of a gz_stream opened for reading. Set the stream
281 mode to transparent if the gzip magic header is not present; set s->err
282 to Z_DATA_ERROR if the magic header is present but the rest of the header
284 IN assertion: the stream s has already been created sucessfully;
285 s->stream.avail_in is zero for the first time, but may be non-zero
286 for concatenated .gz files.
288 local
void check_header(s
)
291 int method
; /* method byte */
292 int flags
; /* flags byte */
296 /* Assure two bytes in the buffer so we can peek ahead -- handle case
297 where first byte of header is at the end of the buffer after the last
299 len
= s
->stream
.avail_in
;
301 if (len
) s
->inbuf
[0] = s
->stream
.next_in
[0];
303 len
= fread(s
->inbuf
+ len
, 1, Z_BUFSIZE
>> len
, s
->file
);
305 if (len
== 0 && errno
) s
->z_err
= Z_ERRNO
;
306 s
->stream
.avail_in
+= len
;
307 s
->stream
.next_in
= s
->inbuf
;
308 if (s
->stream
.avail_in
< 2) {
309 s
->transparent
= s
->stream
.avail_in
;
314 /* Peek ahead to check the gzip magic header */
315 if (s
->stream
.next_in
[0] != gz_magic
[0] ||
316 s
->stream
.next_in
[1] != gz_magic
[1]) {
320 s
->stream
.avail_in
-= 2;
321 s
->stream
.next_in
+= 2;
323 /* Check the rest of the gzip header */
324 method
= get_byte(s
);
326 if (method
!= Z_DEFLATED
|| (flags
& RESERVED
) != 0) {
327 s
->z_err
= Z_DATA_ERROR
;
331 /* Discard time, xflags and OS code: */
332 for (len
= 0; len
< 6; len
++) (void)get_byte(s
);
334 if ((flags
& EXTRA_FIELD
) != 0) { /* skip the extra field */
335 len
= (uInt
)get_byte(s
);
336 len
+= ((uInt
)get_byte(s
))<<8;
337 /* len is garbage if EOF but the loop below will quit anyway */
338 while (len
-- != 0 && get_byte(s
) != EOF
) ;
340 if ((flags
& ORIG_NAME
) != 0) { /* skip the original file name */
341 while ((c
= get_byte(s
)) != 0 && c
!= EOF
) ;
343 if ((flags
& COMMENT
) != 0) { /* skip the .gz file comment */
344 while ((c
= get_byte(s
)) != 0 && c
!= EOF
) ;
346 if ((flags
& HEAD_CRC
) != 0) { /* skip the header crc */
347 for (len
= 0; len
< 2; len
++) (void)get_byte(s
);
349 s
->z_err
= s
->z_eof
? Z_DATA_ERROR
: Z_OK
;
352 /* ===========================================================================
353 * Cleanup then free the given gz_stream. Return a zlib error code.
354 Try freeing in the reverse order of allocations.
356 local
int destroy (s
)
361 if (!s
) return Z_STREAM_ERROR
;
365 if (s
->stream
.state
!= NULL
) {
366 if (s
->mode
== 'w') {
368 err
= Z_STREAM_ERROR
;
370 err
= deflateEnd(&(s
->stream
));
372 } else if (s
->mode
== 'r') {
373 err
= inflateEnd(&(s
->stream
));
376 if (s
->file
!= NULL
&& fclose(s
->file
)) {
378 if (errno
!= ESPIPE
) /* fclose is broken for pipes in HP/UX */
382 if (s
->z_err
< 0) err
= s
->z_err
;
391 /* ===========================================================================
392 Reads the given number of uncompressed bytes from the compressed file.
393 gzread returns the number of bytes actually read (0 for end of file).
395 int ZEXPORT
gzread (file
, buf
, len
)
400 gz_stream
*s
= (gz_stream
*)file
;
401 Bytef
*start
= (Bytef
*)buf
; /* starting point for crc computation */
402 Byte
*next_out
; /* == stream.next_out but not forced far (for MSDOS) */
404 if (s
== NULL
|| s
->mode
!= 'r') return Z_STREAM_ERROR
;
406 if (s
->z_err
== Z_DATA_ERROR
|| s
->z_err
== Z_ERRNO
) return -1;
407 if (s
->z_err
== Z_STREAM_END
) return 0; /* EOF */
409 next_out
= (Byte
*)buf
;
410 s
->stream
.next_out
= (Bytef
*)buf
;
411 s
->stream
.avail_out
= len
;
413 if (s
->stream
.avail_out
&& s
->back
!= EOF
) {
414 *next_out
++ = s
->back
;
415 s
->stream
.next_out
++;
416 s
->stream
.avail_out
--;
420 s
->z_err
= Z_STREAM_END
;
425 while (s
->stream
.avail_out
!= 0) {
427 if (s
->transparent
) {
428 /* Copy first the lookahead bytes: */
429 uInt n
= s
->stream
.avail_in
;
430 if (n
> s
->stream
.avail_out
) n
= s
->stream
.avail_out
;
432 zmemcpy(s
->stream
.next_out
, s
->stream
.next_in
, n
);
434 s
->stream
.next_out
= next_out
;
435 s
->stream
.next_in
+= n
;
436 s
->stream
.avail_out
-= n
;
437 s
->stream
.avail_in
-= n
;
439 if (s
->stream
.avail_out
> 0) {
440 s
->stream
.avail_out
-= fread(next_out
, 1, s
->stream
.avail_out
,
443 len
-= s
->stream
.avail_out
;
446 if (len
== 0) s
->z_eof
= 1;
449 if (s
->stream
.avail_in
== 0 && !s
->z_eof
) {
452 s
->stream
.avail_in
= fread(s
->inbuf
, 1, Z_BUFSIZE
, s
->file
);
453 if (s
->stream
.avail_in
== 0) {
460 s
->stream
.next_in
= s
->inbuf
;
462 s
->in
+= s
->stream
.avail_in
;
463 s
->out
+= s
->stream
.avail_out
;
464 s
->z_err
= inflate(&(s
->stream
), Z_NO_FLUSH
);
465 s
->in
-= s
->stream
.avail_in
;
466 s
->out
-= s
->stream
.avail_out
;
468 if (s
->z_err
== Z_STREAM_END
) {
469 /* Check CRC and original size */
470 s
->crc
= crc32(s
->crc
, start
, (uInt
)(s
->stream
.next_out
- start
));
471 start
= s
->stream
.next_out
;
473 if (getLong(s
) != s
->crc
) {
474 s
->z_err
= Z_DATA_ERROR
;
477 /* The uncompressed length returned by above getlong() may be
478 * different from s->out in case of concatenated .gz files.
479 * Check for such files:
482 if (s
->z_err
== Z_OK
) {
483 inflateReset(&(s
->stream
));
484 s
->crc
= crc32(0L, Z_NULL
, 0);
488 if (s
->z_err
!= Z_OK
|| s
->z_eof
) break;
490 s
->crc
= crc32(s
->crc
, start
, (uInt
)(s
->stream
.next_out
- start
));
492 return (int)(len
- s
->stream
.avail_out
);
496 /* ===========================================================================
497 Reads one byte from the compressed file. gzgetc returns this byte
498 or -1 in case of end of file or error.
500 int ZEXPORT
gzgetc(file
)
505 return gzread(file
, &c
, 1) == 1 ? c
: -1;
509 /* ===========================================================================
510 Push one byte back onto the stream.
512 int ZEXPORT
gzungetc(c
, file
)
516 gz_stream
*s
= (gz_stream
*)file
;
518 if (s
== NULL
|| s
->mode
!= 'r' || c
== EOF
|| s
->back
!= EOF
) return EOF
;
521 s
->last
= (s
->z_err
== Z_STREAM_END
);
522 if (s
->last
) s
->z_err
= Z_OK
;
528 /* ===========================================================================
529 Reads bytes from the compressed file until len-1 characters are
530 read, or a newline character is read and transferred to buf, or an
531 end-of-file condition is encountered. The string is then terminated
532 with a null character.
533 gzgets returns buf, or Z_NULL in case of error.
535 The current implementation is not optimized at all.
537 char * ZEXPORT
gzgets(file
, buf
, len
)
543 if (buf
== Z_NULL
|| len
<= 0) return Z_NULL
;
545 while (--len
> 0 && gzread(file
, buf
, 1) == 1 && *buf
++ != '\n') ;
547 return b
== buf
&& len
> 0 ? Z_NULL
: b
;
551 #ifndef NO_GZCOMPRESS
552 /* ===========================================================================
553 Writes the given number of uncompressed bytes into the compressed file.
554 gzwrite returns the number of bytes actually written (0 in case of error).
556 int ZEXPORT
gzwrite (file
, buf
, len
)
561 gz_stream
*s
= (gz_stream
*)file
;
563 if (s
== NULL
|| s
->mode
!= 'w') return Z_STREAM_ERROR
;
565 s
->stream
.next_in
= (Bytef
*)buf
;
566 s
->stream
.avail_in
= len
;
568 while (s
->stream
.avail_in
!= 0) {
570 if (s
->stream
.avail_out
== 0) {
572 s
->stream
.next_out
= s
->outbuf
;
573 if (fwrite(s
->outbuf
, 1, Z_BUFSIZE
, s
->file
) != Z_BUFSIZE
) {
577 s
->stream
.avail_out
= Z_BUFSIZE
;
579 s
->in
+= s
->stream
.avail_in
;
580 s
->out
+= s
->stream
.avail_out
;
581 s
->z_err
= deflate(&(s
->stream
), Z_NO_FLUSH
);
582 s
->in
-= s
->stream
.avail_in
;
583 s
->out
-= s
->stream
.avail_out
;
584 if (s
->z_err
!= Z_OK
) break;
586 s
->crc
= crc32(s
->crc
, (const Bytef
*)buf
, len
);
588 return (int)(len
- s
->stream
.avail_in
);
592 /* ===========================================================================
593 Converts, formats, and writes the args to the compressed file under
594 control of the format string, as in fprintf. gzprintf returns the number of
595 uncompressed bytes actually written (0 in case of error).
600 int ZEXPORTVA
gzprintf (gzFile file
, const char *format
, /* args */ ...)
602 char buf
[Z_PRINTF_BUFSIZE
];
606 buf
[sizeof(buf
) - 1] = 0;
607 va_start(va
, format
);
609 # ifdef HAS_vsprintf_void
610 (void)vsprintf(buf
, format
, va
);
612 for (len
= 0; len
< sizeof(buf
); len
++)
613 if (buf
[len
] == 0) break;
615 len
= vsprintf(buf
, format
, va
);
619 # ifdef HAS_vsnprintf_void
620 (void)vsnprintf(buf
, sizeof(buf
), format
, va
);
624 len
= vsnprintf(buf
, sizeof(buf
), format
, va
);
628 if (len
<= 0 || len
>= (int)sizeof(buf
) || buf
[sizeof(buf
) - 1] != 0)
630 return gzwrite(file
, buf
, (unsigned)len
);
632 #else /* not ANSI C */
634 int ZEXPORTVA
gzprintf (file
, format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
,
635 a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
)
638 int a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
, a9
, a10
,
639 a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
;
641 char buf
[Z_PRINTF_BUFSIZE
];
644 buf
[sizeof(buf
) - 1] = 0;
646 # ifdef HAS_sprintf_void
647 sprintf(buf
, format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
648 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
649 for (len
= 0; len
< sizeof(buf
); len
++)
650 if (buf
[len
] == 0) break;
652 len
= sprintf(buf
, format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
653 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
656 # ifdef HAS_snprintf_void
657 snprintf(buf
, sizeof(buf
), format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
658 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
661 len
= snprintf(buf
, sizeof(buf
), format
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
,
662 a9
, a10
, a11
, a12
, a13
, a14
, a15
, a16
, a17
, a18
, a19
, a20
);
665 if (len
<= 0 || len
>= sizeof(buf
) || buf
[sizeof(buf
) - 1] != 0)
667 return gzwrite(file
, buf
, len
);
671 /* ===========================================================================
672 Writes c, converted to an unsigned char, into the compressed file.
673 gzputc returns the value that was written, or -1 in case of error.
675 int ZEXPORT
gzputc(file
, c
)
679 unsigned char cc
= (unsigned char) c
; /* required for big endian systems */
681 return gzwrite(file
, &cc
, 1) == 1 ? (int)cc
: -1;
685 /* ===========================================================================
686 Writes the given null-terminated string to the compressed file, excluding
687 the terminating null character.
688 gzputs returns the number of characters written, or -1 in case of error.
690 int ZEXPORT
gzputs(file
, s
)
694 return gzwrite(file
, (char*)s
, (unsigned)strlen(s
));
698 /* ===========================================================================
699 Flushes all pending output into the compressed file. The parameter
700 flush is as in the deflate() function.
702 local
int do_flush (file
, flush
)
708 gz_stream
*s
= (gz_stream
*)file
;
710 if (s
== NULL
|| s
->mode
!= 'w') return Z_STREAM_ERROR
;
712 s
->stream
.avail_in
= 0; /* should be zero already anyway */
715 len
= Z_BUFSIZE
- s
->stream
.avail_out
;
718 if ((uInt
)fwrite(s
->outbuf
, 1, len
, s
->file
) != len
) {
722 s
->stream
.next_out
= s
->outbuf
;
723 s
->stream
.avail_out
= Z_BUFSIZE
;
726 s
->out
+= s
->stream
.avail_out
;
727 s
->z_err
= deflate(&(s
->stream
), flush
);
728 s
->out
-= s
->stream
.avail_out
;
730 /* Ignore the second of two consecutive flushes: */
731 if (len
== 0 && s
->z_err
== Z_BUF_ERROR
) s
->z_err
= Z_OK
;
733 /* deflate has finished flushing only when it hasn't used up
734 * all the available space in the output buffer:
736 done
= (s
->stream
.avail_out
!= 0 || s
->z_err
== Z_STREAM_END
);
738 if (s
->z_err
!= Z_OK
&& s
->z_err
!= Z_STREAM_END
) break;
740 return s
->z_err
== Z_STREAM_END
? Z_OK
: s
->z_err
;
743 int ZEXPORT
gzflush (file
, flush
)
747 gz_stream
*s
= (gz_stream
*)file
;
748 int err
= do_flush (file
, flush
);
752 return s
->z_err
== Z_STREAM_END
? Z_OK
: s
->z_err
;
754 #endif /* NO_GZCOMPRESS */
756 /* ===========================================================================
757 Sets the starting position for the next gzread or gzwrite on the given
758 compressed file. The offset represents a number of bytes in the
759 gzseek returns the resulting offset location as measured in bytes from
760 the beginning of the uncompressed stream, or -1 in case of error.
761 SEEK_END is not implemented, returns error.
762 In this version of the library, gzseek can be extremely slow.
764 #if 0 /* COM32: seek not supported */
766 z_off_t ZEXPORT
gzseek (file
, offset
, whence
)
771 gz_stream
*s
= (gz_stream
*)file
;
773 if (s
== NULL
|| whence
== SEEK_END
||
774 s
->z_err
== Z_ERRNO
|| s
->z_err
== Z_DATA_ERROR
) {
778 if (s
->mode
== 'w') {
782 if (whence
== SEEK_SET
) {
785 if (offset
< 0) return -1L;
787 /* At this point, offset is the number of zero bytes to write. */
788 if (s
->inbuf
== Z_NULL
) {
789 s
->inbuf
= (Byte
*)ALLOC(Z_BUFSIZE
); /* for seeking */
790 if (s
->inbuf
== Z_NULL
) return -1L;
791 zmemzero(s
->inbuf
, Z_BUFSIZE
);
794 uInt size
= Z_BUFSIZE
;
795 if (offset
< Z_BUFSIZE
) size
= (uInt
)offset
;
797 size
= gzwrite(file
, s
->inbuf
, size
);
798 if (size
== 0) return -1L;
805 /* Rest of function is for reading only */
807 /* compute absolute position */
808 if (whence
== SEEK_CUR
) {
811 if (offset
< 0) return -1L;
813 if (s
->transparent
) {
816 s
->stream
.avail_in
= 0;
817 s
->stream
.next_in
= s
->inbuf
;
818 if (fseek(s
->file
, offset
, SEEK_SET
) < 0) return -1L;
820 s
->in
= s
->out
= offset
;
824 /* For a negative seek, rewind and use positive seek */
825 if (offset
>= s
->out
) {
827 } else if (gzrewind(file
) < 0) {
830 /* offset is now the number of bytes to skip. */
832 if (offset
!= 0 && s
->outbuf
== Z_NULL
) {
833 s
->outbuf
= (Byte
*)ALLOC(Z_BUFSIZE
);
834 if (s
->outbuf
== Z_NULL
) return -1L;
836 if (offset
&& s
->back
!= EOF
) {
840 if (s
->last
) s
->z_err
= Z_STREAM_END
;
843 int size
= Z_BUFSIZE
;
844 if (offset
< Z_BUFSIZE
) size
= (int)offset
;
846 size
= gzread(file
, s
->outbuf
, (uInt
)size
);
847 if (size
<= 0) return -1L;
855 /* ===========================================================================
858 #if 0 /* COM32: seek not supported */
860 int ZEXPORT
gzrewind (file
)
863 gz_stream
*s
= (gz_stream
*)file
;
865 if (s
== NULL
|| s
->mode
!= 'r') return -1;
870 s
->stream
.avail_in
= 0;
871 s
->stream
.next_in
= s
->inbuf
;
872 s
->crc
= crc32(0L, Z_NULL
, 0);
873 if (!s
->transparent
) (void)inflateReset(&s
->stream
);
876 return fseek(s
->file
, s
->start
, SEEK_SET
);
880 /* ===========================================================================
881 Returns the starting position for the next gzread or gzwrite on the
882 given compressed file. This position represents a number of bytes in the
883 uncompressed data stream.
885 #if 0 /* COM32: seek not supported */
887 z_off_t ZEXPORT
gztell (file
)
890 return gzseek(file
, 0L, SEEK_CUR
);
894 /* ===========================================================================
895 Returns 1 when EOF has previously been detected reading the given
896 input stream, otherwise zero.
898 int ZEXPORT
gzeof (file
)
901 gz_stream
*s
= (gz_stream
*)file
;
903 /* With concatenated compressed files that can have embedded
904 * crc trailers, z_eof is no longer the only/best indicator of EOF
905 * on a gz_stream. Handle end-of-stream error explicitly here.
907 if (s
== NULL
|| s
->mode
!= 'r') return 0;
908 if (s
->z_eof
) return 1;
909 return s
->z_err
== Z_STREAM_END
;
912 /* ===========================================================================
913 Outputs a long in LSB order to the given file
915 local
void putLong (file
, x
)
920 for (n
= 0; n
< 4; n
++) {
921 fputc((int)(x
& 0xff), file
);
926 /* ===========================================================================
927 Reads a long in LSB order from the given gz_stream. Sets z_err in case
930 local uLong
getLong (s
)
933 uLong x
= (uLong
)get_byte(s
);
936 x
+= ((uLong
)get_byte(s
))<<8;
937 x
+= ((uLong
)get_byte(s
))<<16;
939 if (c
== EOF
) s
->z_err
= Z_DATA_ERROR
;
944 /* ===========================================================================
945 Flushes all pending output if necessary, closes the compressed file
946 and deallocates all the (de)compression state.
948 int ZEXPORT
gzclose (file
)
952 gz_stream
*s
= (gz_stream
*)file
;
954 if (s
== NULL
) return Z_STREAM_ERROR
;
956 if (s
->mode
== 'w') {
958 return Z_STREAM_ERROR
;
960 err
= do_flush (file
, Z_FINISH
);
961 if (err
!= Z_OK
) return destroy((gz_stream
*)file
);
963 putLong (s
->file
, s
->crc
);
964 putLong (s
->file
, (uLong
)(s
->in
& 0xffffffff));
967 return destroy((gz_stream
*)file
);
970 /* ===========================================================================
971 Returns the error message for the last error which occured on the
972 given compressed file. errnum is set to zlib error number. If an
973 error occured in the file system and not in the compression library,
974 errnum is set to Z_ERRNO and the application may consult errno
975 to get the exact error code.
977 const char * ZEXPORT
gzerror (file
, errnum
)
982 gz_stream
*s
= (gz_stream
*)file
;
985 *errnum
= Z_STREAM_ERROR
;
986 return (const char*)ERR_MSG(Z_STREAM_ERROR
);
989 if (*errnum
== Z_OK
) return (const char*)"";
991 m
= (char*)(*errnum
== Z_ERRNO
? zstrerror(errno
) : s
->stream
.msg
);
993 if (m
== NULL
|| *m
== '\0') m
= (char*)ERR_MSG(s
->z_err
);
996 s
->msg
= (char*)ALLOC(strlen(s
->path
) + strlen(m
) + 3);
997 if (s
->msg
== Z_NULL
) return (const char*)ERR_MSG(Z_MEM_ERROR
);
998 strcpy(s
->msg
, s
->path
);
999 strcat(s
->msg
, ": ");
1001 return (const char*)s
->msg
;
1004 /* ===========================================================================
1005 Clear the error and end-of-file flags, and do the same for the real file.
1007 void ZEXPORT
gzclearerr (file
)
1010 gz_stream
*s
= (gz_stream
*)file
;
1012 if (s
== NULL
) return;
1013 if (s
->z_err
!= Z_STREAM_END
) s
->z_err
= Z_OK
;
1016 /* clearerr(s->file); */