gzio.c
上传用户:jnfxsk
上传日期:2022-06-16
资源大小:3675k
文件大小:31k
源码类别:

游戏引擎

开发平台:

Visual C++

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