Update contrib.
1 /* gzio.c -- IO on .gz files
2 * Copyright (C) 1995-1998 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
5 * Compile this file with -DNO_DEFLATE to avoid the compression code.
11 // include this after zutil so we don't get warning anbout multiple definitons
12 // of NULL Markr 6/9/199, Symbian.
16 struct internal_state {int dummy;}; /* for buggy compilers */
20 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
22 # define Z_BUFSIZE 16384
25 #ifndef Z_PRINTF_BUFSIZE
26 # define Z_PRINTF_BUFSIZE 4096
29 #define ALLOC(size) malloc(size)
30 #define TRYFREE(p) {if (p) free(p);}
32 static const int gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */
35 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
36 #define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
37 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
38 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
39 #define COMMENT 0x10 /* bit 4 set: file comment present */
40 #define RESERVED 0xE0 /* bits 5..7: reserved */
42 typedef struct gz_stream {
44 int z_err; /* error code for last stream operation */
45 int z_eof; /* set if end of input file */
46 FILE *file; /* .gz file */
47 Byte *inbuf; /* input buffer */
48 Byte *outbuf; /* output buffer */
49 uLong crc; /* crc32 of uncompressed data */
50 char *msg; /* error message */
51 char *path; /* path name for debugging only */
52 int transparent; /* 1 if input file is not a .gz file */
53 char mode; /* 'w' or 'r' */
54 long startpos; /* start of compressed data in file (header skipped) */
58 local gzFile gz_open OF((const char *path, const char *mode, int fd));
59 local int do_flush OF((gzFile file, int flush));
60 local int get_byte OF((gz_stream *s));
61 local void check_header OF((gz_stream *s));
62 local int destroy OF((gz_stream *s));
63 local void putLong OF((FILE *file, uLong x));
64 local uLong getLong OF((gz_stream *s));
66 /* ===========================================================================
67 Opens a gzip (.gz) file for reading or writing. The mode parameter
68 is as in fopen ("rb" or "wb"). The file is given either by file descriptor
69 or path name (if fd == -1).
70 gz_open return NULL if the file could not be opened or if there was
71 insufficient memory to allocate the (de)compression state; errno
72 can be checked to distinguish the two cases (if errno is zero, the
73 zlib error is Z_MEM_ERROR).
75 local gzFile gz_open (
81 int level = Z_DEFAULT_COMPRESSION; /* compression level */
82 int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */
83 char *p = (char*)mode;
85 char fmode[80]; /* copy of mode, without the compression level */
88 if (!path || !mode) return Z_NULL;
90 s = (gz_stream *)ALLOC(sizeof(gz_stream));
91 if (!s) return Z_NULL;
93 s->stream.zalloc = (alloc_func)0;
94 s->stream.zfree = (free_func)0;
95 s->stream.opaque = (voidpf)0;
96 s->stream.next_in = s->inbuf = Z_NULL;
97 s->stream.next_out = s->outbuf = Z_NULL;
98 s->stream.avail_in = s->stream.avail_out = 0;
102 s->crc = crc32(0L, Z_NULL, 0);
106 s->path = (char*)ALLOC(strlen(path)+1);
107 if (s->path == NULL) {
108 return destroy(s), (gzFile)Z_NULL;
110 strcpy(s->path, path); /* do this early for debugging */
114 if (*p == 'r') s->mode = 'r';
115 if (*p == 'w' || *p == 'a') s->mode = 'w';
116 if (*p >= '0' && *p <= '9') {
118 } else if (*p == 'f') {
119 strategy = Z_FILTERED;
120 } else if (*p == 'h') {
121 strategy = Z_HUFFMAN_ONLY;
123 *m++ = *p; /* copy the mode */
125 } while (*p++ && m != fmode + sizeof(fmode));
126 if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL;
128 if (s->mode == 'w') {
130 err = Z_STREAM_ERROR;
132 err = deflateInit2(&(s->stream), level,
133 Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
134 /* windowBits is passed < 0 to suppress zlib header */
136 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
138 if (err != Z_OK || s->outbuf == Z_NULL) {
139 return destroy(s), (gzFile)Z_NULL;
142 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
144 err = inflateInit2(&(s->stream), -MAX_WBITS);
145 /* windowBits is passed < 0 to tell that there is no zlib header.
146 * Note that in this case inflate *requires* an extra "dummy" byte
147 * after the compressed stream in order to complete decompression and
148 * return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
149 * present after the compressed stream.
151 if (err != Z_OK || s->inbuf == Z_NULL) {
152 return destroy(s), (gzFile)Z_NULL;
155 s->stream.avail_out = Z_BUFSIZE;
158 s->file = fd < 0 ? F_OPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
160 if (s->file == NULL) {
161 return destroy(s), (gzFile)Z_NULL;
163 if (s->mode == 'w') {
164 /* Write a very simple .gz header:
166 fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1],
167 Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE);
169 /* We use 10L instead of ftell(s->file) to because ftell causes an
170 * fflush on some systems. This version of the library doesn't use
171 * startpos anyway in write mode, so this initialization is not
175 check_header(s); /* skip the .gz header */
176 s->startpos = (ftell(s->file) - s->stream.avail_in);
182 /* ===========================================================================
183 Opens a gzip (.gz) file for reading or writing.
185 EXPORT_C gzFile ZEXPORT gzopen (
189 return gz_open (path, mode, -1);
192 /* ===========================================================================
193 Associate a gzFile with the file descriptor fd. fd is not dup'ed here
194 to mimic the behavio(u)r of fdopen.
196 EXPORT_C gzFile ZEXPORT gzdopen (
202 if (fd < 0) return (gzFile)Z_NULL;
203 sprintf(name, "<fd:%d>", fd); /* for debugging */
205 return gz_open (name, mode, fd);
208 /* ===========================================================================
209 * Update the compression level and strategy
211 EXPORT_C int ZEXPORT gzsetparams (
216 gz_stream *s = (gz_stream*)file;
218 if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
220 /* Make room to allow flushing */
221 if (s->stream.avail_out == 0) {
223 s->stream.next_out = s->outbuf;
224 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
227 s->stream.avail_out = Z_BUFSIZE;
230 return deflateParams (&(s->stream), level, strategy);
233 /* ===========================================================================
234 Read a byte from a gz_stream; update next_in and avail_in. Return EOF
236 IN assertion: the stream s has been sucessfully opened for reading.
241 if (s->z_eof) return EOF;
242 if (s->stream.avail_in == 0) {
244 s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
245 if (s->stream.avail_in == 0) {
247 if (ferror(s->file)) s->z_err = Z_ERRNO;
250 s->stream.next_in = s->inbuf;
252 s->stream.avail_in--;
253 return *(s->stream.next_in)++;
256 /* ===========================================================================
257 Check the gzip header of a gz_stream opened for reading. Set the stream
258 mode to transparent if the gzip magic header is not present; set s->err
259 to Z_DATA_ERROR if the magic header is present but the rest of the header
261 IN assertion: the stream s has already been created sucessfully;
262 s->stream.avail_in is zero for the first time, but may be non-zero
263 for concatenated .gz files.
265 local void check_header(
268 int method; /* method byte */
269 int flags; /* flags byte */
273 /* Check the gzip magic header */
274 for (len = 0; len < 2; len++) {
276 if (c != gz_magic[len]) {
277 if (len != 0) s->stream.avail_in++, s->stream.next_in--;
279 s->stream.avail_in++, s->stream.next_in--;
282 s->z_err = s->stream.avail_in != 0 ? Z_OK : Z_STREAM_END;
286 method = get_byte(s);
288 if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
289 s->z_err = Z_DATA_ERROR;
293 /* Discard time, xflags and OS code: */
294 for (len = 0; len < 6; len++) (void)get_byte(s);
296 if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
297 len = (uInt)get_byte(s);
298 len += ((uInt)get_byte(s))<<8;
299 /* len is garbage if EOF but the loop below will quit anyway */
300 while (len-- != 0 && get_byte(s) != EOF) ;
302 if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
303 while ((c = get_byte(s)) != 0 && c != EOF) ;
305 if ((flags & COMMENT) != 0) { /* skip the .gz file comment */
306 while ((c = get_byte(s)) != 0 && c != EOF) ;
308 if ((flags & HEAD_CRC) != 0) { /* skip the header crc */
309 for (len = 0; len < 2; len++) (void)get_byte(s);
311 s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
314 /* ===========================================================================
315 * Cleanup then free the given gz_stream. Return a zlib error code.
316 Try freeing in the reverse order of allocations.
323 if (!s) return Z_STREAM_ERROR;
327 if (s->stream.state != NULL) {
328 if (s->mode == 'w') {
330 err = Z_STREAM_ERROR;
332 err = deflateEnd(&(s->stream));
334 } else if (s->mode == 'r') {
335 err = inflateEnd(&(s->stream));
338 if (s->file != NULL && fclose(s->file)) {
340 if (errno != ESPIPE) /* fclose is broken for pipes in HP/UX */
344 if (s->z_err < 0) err = s->z_err;
353 /* ===========================================================================
354 Reads the given number of uncompressed bytes from the compressed file.
355 gzread returns the number of bytes actually read (0 for end of file).
357 EXPORT_C int ZEXPORT gzread (
362 gz_stream *s = (gz_stream*)file;
363 Bytef *start = (Bytef*)buf; /* starting point for crc computation */
364 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */
366 if (s == NULL || s->mode != 'r') return Z_STREAM_ERROR;
368 if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) return -1;
369 if (s->z_err == Z_STREAM_END) return 0; /* EOF */
371 next_out = (Byte*)buf;
372 s->stream.next_out = (Bytef*)buf;
373 s->stream.avail_out = len;
375 while (s->stream.avail_out != 0) {
377 if (s->transparent) {
378 /* Copy first the lookahead bytes: */
379 uInt n = s->stream.avail_in;
380 if (n > s->stream.avail_out) n = s->stream.avail_out;
382 zmemcpy(s->stream.next_out, s->stream.next_in, n);
384 s->stream.next_out = next_out;
385 s->stream.next_in += n;
386 s->stream.avail_out -= n;
387 s->stream.avail_in -= n;
389 if (s->stream.avail_out > 0) {
390 s->stream.avail_out -= fread(next_out, 1, s->stream.avail_out,
393 len -= s->stream.avail_out;
394 s->stream.total_in += (uLong)len;
395 s->stream.total_out += (uLong)len;
396 if (len == 0) s->z_eof = 1;
399 if (s->stream.avail_in == 0 && !s->z_eof) {
402 s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
403 if (s->stream.avail_in == 0) {
405 if (ferror(s->file)) {
410 s->stream.next_in = s->inbuf;
412 s->z_err = inflate(&(s->stream), Z_NO_FLUSH);
414 if (s->z_err == Z_STREAM_END) {
415 /* Check CRC and original size */
416 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
417 start = s->stream.next_out;
419 if (getLong(s) != s->crc) {
420 s->z_err = Z_DATA_ERROR;
423 /* The uncompressed length returned by above getlong() may
424 * be different from s->stream.total_out) in case of
425 * concatenated .gz files. Check for such files:
428 if (s->z_err == Z_OK) {
429 uLong total_in = s->stream.total_in;
430 uLong total_out = s->stream.total_out;
432 inflateReset(&(s->stream));
433 s->stream.total_in = total_in;
434 s->stream.total_out = total_out;
435 s->crc = crc32(0L, Z_NULL, 0);
439 if (s->z_err != Z_OK || s->z_eof) break;
441 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
443 return (int)(len - s->stream.avail_out);
447 /* ===========================================================================
448 Reads one byte from the compressed file. gzgetc returns this byte
449 or -1 in case of end of file or error.
451 EXPORT_C int ZEXPORT gzgetc(
456 return gzread(file, &c, 1) == 1 ? c : -1;
460 /* ===========================================================================
461 Reads bytes from the compressed file until len-1 characters are
462 read, or a newline character is read and transferred to buf, or an
463 end-of-file condition is encountered. The string is then terminated
464 with a null character.
465 gzgets returns buf, or Z_NULL in case of error.
467 The current implementation is not optimized at all.
469 EXPORT_C char * ZEXPORT gzgets(
475 if (buf == Z_NULL || len <= 0) return Z_NULL;
477 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
479 return b == buf && len > 0 ? Z_NULL : b;
484 /* ===========================================================================
485 Writes the given number of uncompressed bytes into the compressed file.
486 gzwrite returns the number of bytes actually written (0 in case of error).
488 EXPORT_C int ZEXPORT gzwrite (
493 gz_stream *s = (gz_stream*)file;
495 if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
497 s->stream.next_in = (Bytef*)buf;
498 s->stream.avail_in = len;
500 while (s->stream.avail_in != 0) {
502 if (s->stream.avail_out == 0) {
504 s->stream.next_out = s->outbuf;
505 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
509 s->stream.avail_out = Z_BUFSIZE;
511 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
512 if (s->z_err != Z_OK) break;
514 s->crc = crc32(s->crc, (const Bytef *)buf, len);
516 return (int)(len - s->stream.avail_in);
519 /* ===========================================================================
520 Converts, formats, and writes the args to the compressed file under
521 control of the format string, as in fprintf. gzprintf returns the number of
522 uncompressed bytes actually written (0 in case of error).
525 // This function has been modified to use heap memory instead of the stack for the buffer.
526 // Markr 6/9/99 Symbian.
531 EXPORT_C int ZEXPORTVA gzprintf (gzFile file, const char *format, /* args */ ...)
533 char *buf = (char*) ALLOC(Z_PRINTF_BUFSIZE);
538 va_start(va, format);
540 (void)vsnprintf(buf, sizeof(buf), format, va);
542 (void)vsprintf(buf, format, va);
545 len = strlen(buf); /* some *sprintf don't return the nb of bytes written */
548 retval = gzwrite(file, buf, (unsigned)len);
553 #else /* not ANSI C */
555 int ZEXPORTVA gzprintf (file, format, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
556 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20)
559 int a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
560 a11, a12, a13, a14, a15, a16, a17, a18, a19, a20;
562 char buf[Z_PRINTF_BUFSIZE];
566 snprintf(buf, sizeof(buf), format, a1, a2, a3, a4, a5, a6, a7, a8,
567 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
569 sprintf(buf, format, a1, a2, a3, a4, a5, a6, a7, a8,
570 a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20);
572 len = strlen(buf); /* old sprintf doesn't return the nb of bytes written */
573 if (len <= 0) return 0;
575 return gzwrite(file, buf, len);
579 /* ===========================================================================
580 Writes c, converted to an unsigned char, into the compressed file.
581 gzputc returns the value that was written, or -1 in case of error.
583 EXPORT_C int ZEXPORT gzputc(
587 unsigned char cc = (unsigned char) c; /* required for big endian systems */
589 return gzwrite(file, &cc, 1) == 1 ? (int)cc : -1;
593 /* ===========================================================================
594 Writes the given null-terminated string to the compressed file, excluding
595 the terminating null character.
596 gzputs returns the number of characters written, or -1 in case of error.
598 EXPORT_C int ZEXPORT gzputs(
602 return gzwrite(file, (char*)s, (unsigned)strlen(s));
606 /* ===========================================================================
607 Flushes all pending output into the compressed file. The parameter
608 flush is as in the deflate() function.
616 gz_stream *s = (gz_stream*)file;
618 if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
620 s->stream.avail_in = 0; /* should be zero already anyway */
623 len = Z_BUFSIZE - s->stream.avail_out;
626 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
630 s->stream.next_out = s->outbuf;
631 s->stream.avail_out = Z_BUFSIZE;
634 s->z_err = deflate(&(s->stream), flush);
636 /* Ignore the second of two consecutive flushes: */
637 if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
639 /* deflate has finished flushing only when it hasn't used up
640 * all the available space in the output buffer:
642 done = (s->stream.avail_out != 0 || s->z_err == Z_STREAM_END);
644 if (s->z_err != Z_OK && s->z_err != Z_STREAM_END) break;
646 return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
649 EXPORT_C int ZEXPORT gzflush (
653 gz_stream *s = (gz_stream*)file;
654 int err = do_flush (file, flush);
658 return s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
660 #endif /* NO_DEFLATE */
662 /* ===========================================================================
663 Sets the starting position for the next gzread or gzwrite on the given
664 compressed file. The offset represents a number of bytes in the
665 gzseek returns the resulting offset location as measured in bytes from
666 the beginning of the uncompressed stream, or -1 in case of error.
667 SEEK_END is not implemented, returns error.
668 In this version of the library, gzseek can be extremely slow.
670 EXPORT_C z_off_t ZEXPORT gzseek (
675 gz_stream *s = (gz_stream*)file;
677 if (s == NULL || whence == SEEK_END ||
678 s->z_err == Z_ERRNO || s->z_err == Z_DATA_ERROR) {
682 if (s->mode == 'w') {
686 if (whence == SEEK_SET) {
687 offset -= s->stream.total_in;
689 if (offset < 0) return -1L;
691 /* At this point, offset is the number of zero bytes to write. */
692 if (s->inbuf == Z_NULL) {
693 s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
694 zmemzero(s->inbuf, Z_BUFSIZE);
697 uInt size = Z_BUFSIZE;
698 if (offset < Z_BUFSIZE) size = (uInt)offset;
700 size = gzwrite(file, s->inbuf, size);
701 if (size == 0) return -1L;
705 return (z_off_t)s->stream.total_in;
708 /* Rest of function is for reading only */
710 /* compute absolute position */
711 if (whence == SEEK_CUR) {
712 offset += s->stream.total_out;
714 if (offset < 0) return -1L;
716 if (s->transparent) {
718 s->stream.avail_in = 0;
719 s->stream.next_in = s->inbuf;
720 if (fseek(s->file, offset, SEEK_SET) < 0) return -1L;
722 s->stream.total_in = s->stream.total_out = (uLong)offset;
726 /* For a negative seek, rewind and use positive seek */
727 if ((uLong)offset >= s->stream.total_out) {
728 offset -= s->stream.total_out;
729 } else if (gzrewind(file) < 0) {
732 /* offset is now the number of bytes to skip. */
734 if (offset != 0 && s->outbuf == Z_NULL) {
735 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
738 int size = Z_BUFSIZE;
739 if (offset < Z_BUFSIZE) size = (int)offset;
741 size = gzread(file, s->outbuf, (uInt)size);
742 if (size <= 0) return -1L;
745 return (z_off_t)s->stream.total_out;
748 /* ===========================================================================
751 EXPORT_C int ZEXPORT gzrewind (
754 gz_stream *s = (gz_stream*)file;
756 if (s == NULL || s->mode != 'r') return -1;
760 s->stream.avail_in = 0;
761 s->stream.next_in = s->inbuf;
762 s->crc = crc32(0L, Z_NULL, 0);
764 if (s->startpos == 0) { /* not a compressed file */
769 (void) inflateReset(&s->stream);
770 return fseek(s->file, s->startpos, SEEK_SET);
773 /* ===========================================================================
774 Returns the starting position for the next gzread or gzwrite on the
775 given compressed file. This position represents a number of bytes in the
776 uncompressed data stream.
778 EXPORT_C z_off_t ZEXPORT gztell (
781 return gzseek(file, 0L, SEEK_CUR);
784 /* ===========================================================================
785 Returns 1 when EOF has previously been detected reading the given
786 input stream, otherwise zero.
788 EXPORT_C int ZEXPORT gzeof (
791 gz_stream *s = (gz_stream*)file;
793 return (s == NULL || s->mode != 'r') ? 0 : s->z_eof;
796 /* ===========================================================================
797 Outputs a long in LSB order to the given file
804 for (n = 0; n < 4; n++) {
805 fputc((int)(x & 0xff), file);
810 /* ===========================================================================
811 Reads a long in LSB order from the given gz_stream. Sets z_err in case
814 local uLong getLong (
817 uLong x = (uLong)get_byte(s);
820 x += ((uLong)get_byte(s))<<8;
821 x += ((uLong)get_byte(s))<<16;
823 if (c == EOF) s->z_err = Z_DATA_ERROR;
828 /* ===========================================================================
829 Flushes all pending output if necessary, closes the compressed file
830 and deallocates all the (de)compression state.
832 EXPORT_C int ZEXPORT gzclose (
836 gz_stream *s = (gz_stream*)file;
838 if (s == NULL) return Z_STREAM_ERROR;
840 if (s->mode == 'w') {
842 return Z_STREAM_ERROR;
844 err = do_flush (file, Z_FINISH);
845 if (err != Z_OK) return destroy((gz_stream*)file);
847 putLong (s->file, s->crc);
848 putLong (s->file, s->stream.total_in);
851 return destroy((gz_stream*)file);
854 /* ===========================================================================
855 Returns the error message for the last error which occured on the
856 given compressed file. errnum is set to zlib error number. If an
857 error occured in the file system and not in the compression library,
858 errnum is set to Z_ERRNO and the application may consult errno
859 to get the exact error code.
861 EXPORT_C const char* ZEXPORT gzerror (
866 gz_stream *s = (gz_stream*)file;
869 *errnum = Z_STREAM_ERROR;
870 return (const char*)ERR_MSG(Z_STREAM_ERROR);
873 if (*errnum == Z_OK) return (const char*)"";
875 m = (char*)(*errnum == Z_ERRNO ? zstrerror(errno) : s->stream.msg);
877 if (m == NULL || *m == '\0') m = (char*)ERR_MSG(s->z_err);
880 s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);
881 strcpy(s->msg, s->path);
882 strcat(s->msg, ": ");
884 return (const char*)s->msg;