gzio.c
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:31k
源码类别:

对话框与窗口

开发平台:

Visual C++

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