gzio.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:26k
源码类别:

生物技术

开发平台:

C/C++

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