gzio.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:16k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* gzio.c -- IO on .gz files
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h
  4.  */
  5. /* This file was modified since it was taken from the zlib distribution */
  6. /* $Id: gzio.c,v 1.1 2000/03/31 20:13:11 relyea%netscape.com Exp $ */
  7. #include <stdio.h>
  8. #include "zutil.h"
  9. struct internal_state {int dummy;}; /* for buggy compilers */
  10. #define Z_BUFSIZE 4096
  11. #define ALLOC(size) malloc(size)
  12. #define TRYFREE(p) {if (p) free(p);}
  13. static int gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */
  14. /* gzip flag byte */
  15. #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */
  16. #define HEAD_CRC     0x02 /* bit 1 set: header CRC present */
  17. #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
  18. #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
  19. #define COMMENT      0x10 /* bit 4 set: file comment present */
  20. #define RESERVED     0xE0 /* bits 5..7: reserved */
  21. typedef struct gz_stream {
  22.     z_stream stream;
  23.     int      z_err;   /* error code for last stream operation */
  24.     int      z_eof;   /* set if end of input file */
  25.     FILE     *file;   /* .gz file */
  26.     Byte     *inbuf;  /* input buffer */
  27.     Byte     *outbuf; /* output buffer */
  28.     uLong    crc;     /* crc32 of uncompressed data */
  29.     char     *msg;    /* error message */
  30.     char     *path;   /* path name for debugging only */
  31.     int      transparent; /* 1 if input file is not a .gz file */
  32.     char     mode;    /* 'w' or 'r' */
  33. } gz_stream;
  34. local gzFile gz_open      OF((const char *path, const char *mode, int  fd));
  35. local int    get_byte     OF((gz_stream *s));
  36. local void   check_header OF((gz_stream *s));
  37. local int    destroy      OF((gz_stream *s));
  38. local void   putLong      OF((FILE *file, uLong x));
  39. local uLong  getLong      OF((gz_stream *s));
  40. /* ===========================================================================
  41.      Opens a gzip (.gz) file for reading or writing. The mode parameter
  42.    is as in fopen ("rb" or "wb"). The file is given either by file descriptor
  43.    or path name (if fd == -1).
  44.      gz_open return NULL if the file could not be opened or if there was
  45.    insufficient memory to allocate the (de)compression state; errno
  46.    can be checked to distinguish the two cases (if errno is zero, the
  47.    zlib error is Z_MEM_ERROR).
  48. */
  49. local gzFile gz_open (path, mode, fd)
  50.     const char *path;
  51.     const char *mode;
  52.     int  fd;
  53. {
  54.     int err;
  55.     int level = Z_DEFAULT_COMPRESSION; /* compression level */
  56.     char *p = (char*)mode;
  57.     gz_stream *s;
  58.     char fmode[80]; /* copy of mode, without the compression level */
  59.     char *m = fmode;
  60.     if (!path || !mode) return Z_NULL;
  61.     s = (gz_stream *)ALLOC(sizeof(gz_stream));
  62.     if (!s) return Z_NULL;
  63.     s->stream.zalloc = (alloc_func)0;
  64.     s->stream.zfree = (free_func)0;
  65.     s->stream.opaque = (voidpf)0;
  66.     s->stream.next_in = s->inbuf = Z_NULL;
  67.     s->stream.next_out = s->outbuf = Z_NULL;
  68.     s->stream.avail_in = s->stream.avail_out = 0;
  69.     s->file = NULL;
  70.     s->z_err = Z_OK;
  71.     s->z_eof = 0;
  72.     s->crc = crc32(0L, Z_NULL, 0);
  73.     s->msg = NULL;
  74.     s->transparent = 0;
  75.     s->path = (char*)ALLOC(strlen(path)+1);
  76.     if (s->path == NULL) {
  77.         return destroy(s), (gzFile)Z_NULL;
  78.     }
  79.     strcpy(s->path, path); /* do this early for debugging */
  80.     s->mode = '';
  81.     do {
  82.         if (*p == 'r') s->mode = 'r';
  83.         if (*p == 'w' || *p == 'a') s->mode = 'w';
  84.         if (*p >= '0' && *p <= '9') {
  85.     level = *p - '0';
  86. } else {
  87.     *m++ = *p; /* copy the mode */
  88. }
  89.     } while (*p++ && m != fmode + sizeof(fmode));
  90.     if (s->mode == '') return destroy(s), (gzFile)Z_NULL;
  91.     
  92.     if (s->mode == 'w') {
  93.         err = deflateInit2(&(s->stream), level,
  94.                            Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, 0);
  95.         /* windowBits is passed < 0 to suppress zlib header */
  96.         s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
  97.         if (err != Z_OK || s->outbuf == Z_NULL) {
  98.             return destroy(s), (gzFile)Z_NULL;
  99.         }
  100.     } else {
  101.         err = inflateInit2(&(s->stream), -MAX_WBITS);
  102.         s->stream.next_in  = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
  103.         if (err != Z_OK || s->inbuf == Z_NULL) {
  104.             return destroy(s), (gzFile)Z_NULL;
  105.         }
  106.     }
  107.     s->stream.avail_out = Z_BUFSIZE;
  108.     errno = 0;
  109.     s->file = fd < 0 ? FOPEN(path, fmode) : (FILE*)fdopen(fd, fmode);
  110.     if (s->file == NULL) {
  111.         return destroy(s), (gzFile)Z_NULL;
  112.     }
  113.     if (s->mode == 'w') {
  114.         /* Write a very simple .gz header:
  115.          */
  116.         fprintf(s->file, "%c%c%c%c%c%c%c%c%c%c", gz_magic[0], gz_magic[1],
  117.              Z_DEFLATED, 0 /*flags*/, 0,0,0,0 /*time*/, 0 /*xflags*/, OS_CODE);
  118.     } else {
  119. check_header(s); /* skip the .gz header */
  120.     }
  121.     return (gzFile)s;
  122. }
  123. /* ===========================================================================
  124.      Opens a gzip (.gz) file for reading or writing.
  125. */
  126. #ifdef MOZILLA_CLIENT
  127. PR_PUBLIC_API(extern gzFile) gzopen  (const char *path, const char *mode)
  128. #else
  129. extern gzFile EXPORT gzopen  OF((const char *path, const char *mode))
  130. #endif
  131. {
  132.     return gz_open (path, mode, -1);
  133. }
  134. /* ===========================================================================
  135.      Associate a gzFile with the file descriptor fd. fd is not dup'ed here
  136.    to mimic the behavio(u)r of fdopen.
  137. */
  138. #ifdef MOZILLA_CLIENT
  139. PR_PUBLIC_API(extern gzFile) gzdopen  (int fd, const char *mode)
  140. #else
  141. extern gzFile EXPORT gzdopen  OF((int fd, const char *mode))
  142. #endif
  143. {
  144.     char name[20];
  145.     if (fd < 0) return (gzFile)Z_NULL;
  146.     sprintf(name, "<fd:%d>", fd); /* for debugging */
  147.     return gz_open (name, mode, fd);
  148. }
  149. /* ===========================================================================
  150.      Read a byte from a gz_stream; update next_in and avail_in. Return EOF
  151.    for end of file.
  152.    IN assertion: the stream s has been sucessfully opened for reading.
  153. */
  154. local int get_byte(s)
  155.     gz_stream *s;
  156. {
  157.     if (s->z_eof) return EOF;
  158.     if (s->stream.avail_in == 0) {
  159. errno = 0;
  160. s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
  161. if (s->stream.avail_in == 0) {
  162.     s->z_eof = 1;
  163.     if (ferror(s->file)) s->z_err = Z_ERRNO;
  164.     return EOF;
  165. }
  166. s->stream.next_in = s->inbuf;
  167.     }
  168.     s->stream.avail_in--;
  169.     return *(s->stream.next_in)++;
  170. }
  171. /* ===========================================================================
  172.       Check the gzip header of a gz_stream opened for reading. Set the stream
  173.     mode to transparent if the gzip magic header is not present; set s->err
  174.     to Z_DATA_ERROR if the magic header is present but the rest of the header
  175.     is incorrect.
  176.     IN assertion: the stream s has already been created sucessfully;
  177.        s->stream.avail_in is zero for the first time, but may be non-zero
  178.        for concatenated .gz files.
  179. */
  180. local void check_header(s)
  181.     gz_stream *s;
  182. {
  183.     int method; /* method byte */
  184.     int flags;  /* flags byte */
  185.     uInt len;
  186.     int c;
  187.     /* Check the gzip magic header */
  188.     for (len = 0; len < 2; len++) {
  189. c = get_byte(s);
  190. if (c != gz_magic[len]) {
  191.     s->transparent = 1;
  192.     if (c != EOF) s->stream.avail_in++, s->stream.next_in--;
  193.     s->z_err = s->stream.avail_in != 0 ? Z_OK : Z_STREAM_END;
  194.     return;
  195. }
  196.     }
  197.     method = get_byte(s);
  198.     flags = get_byte(s);
  199.     if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
  200. s->z_err = Z_DATA_ERROR;
  201. return;
  202.     }
  203.     /* Discard time, xflags and OS code: */
  204.     for (len = 0; len < 6; len++) (void)get_byte(s);
  205.     if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
  206. len  =  (uInt)get_byte(s);
  207. len += ((uInt)get_byte(s))<<8;
  208. /* len is garbage if EOF but the loop below will quit anyway */
  209. while (len-- != 0 && get_byte(s) != EOF) ;
  210.     }
  211.     if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
  212. while ((c = get_byte(s)) != 0 && c != EOF) ;
  213.     }
  214.     if ((flags & COMMENT) != 0) {   /* skip the .gz file comment */
  215. while ((c = get_byte(s)) != 0 && c != EOF) ;
  216.     }
  217.     if ((flags & HEAD_CRC) != 0) {  /* skip the header crc */
  218. for (len = 0; len < 2; len++) (void)get_byte(s);
  219.     }
  220.     s->z_err = s->z_eof ? Z_DATA_ERROR : Z_OK;
  221. }
  222.  /* ===========================================================================
  223.  * Cleanup then free the given gz_stream. Return a zlib error code.
  224.    Try freeing in the reverse order of allocations.
  225.  */
  226. local int destroy (s)
  227.     gz_stream *s;
  228. {
  229.     int err = Z_OK;
  230.     if (!s) return Z_STREAM_ERROR;
  231.     TRYFREE(s->msg);
  232.     if (s->stream.state != NULL) {
  233.        if (s->mode == 'w') {
  234.            err = deflateEnd(&(s->stream));
  235.        } else if (s->mode == 'r') {
  236.            err = inflateEnd(&(s->stream));
  237.        }
  238.     }
  239.     if (s->file != NULL && fclose(s->file)) {
  240.         err = Z_ERRNO;
  241.     }
  242.     if (s->z_err < 0) err = s->z_err;
  243.     TRYFREE(s->inbuf);
  244.     TRYFREE(s->outbuf);
  245.     TRYFREE(s->path);
  246.     TRYFREE(s);
  247.     return err;
  248. }
  249. /* ===========================================================================
  250.      Reads the given number of uncompressed bytes from the compressed file.
  251.    gzread returns the number of bytes actually read (0 for end of file).
  252. */
  253. #ifdef MOZILLA_CLIENT
  254. PR_PUBLIC_API(extern int)    gzread  (gzFile file, voidp buf, unsigned len)
  255. #else
  256. extern int EXPORT    gzread  OF((gzFile file, voidp buf, unsigned len))
  257. #endif
  258. {
  259.     gz_stream *s = (gz_stream*)file;
  260.     Bytef *start = buf; /* starting point for crc computation */
  261.     Byte  *next_out; /* == stream.next_out but not forced far (for MSDOS) */
  262.     if (s == NULL || s->mode != 'r') return Z_STREAM_ERROR;
  263.     if (s->z_err == Z_DATA_ERROR || s->z_err == Z_ERRNO) return -1;
  264.     if (s->z_err == Z_STREAM_END) return 0;  /* EOF */
  265.     s->stream.next_out = next_out = buf;
  266.     s->stream.avail_out = len;
  267.     while (s->stream.avail_out != 0) {
  268. if (s->transparent) {
  269.     /* Copy first the lookahead bytes: */
  270.     uInt n = s->stream.avail_in;
  271.     if (n > s->stream.avail_out) n = s->stream.avail_out;
  272.     if (n > 0) {
  273. zmemcpy(s->stream.next_out, s->stream.next_in, n);
  274. next_out += n;
  275. s->stream.next_out = next_out;
  276. s->stream.next_in   += n;
  277. s->stream.avail_out -= n;
  278. s->stream.avail_in  -= n;
  279.     }
  280.     if (s->stream.avail_out > 0) {
  281. s->stream.avail_out -= fread(next_out, 1, s->stream.avail_out,
  282.      s->file);
  283.     }
  284.     return (int)(len - s->stream.avail_out);
  285. }
  286.         if (s->stream.avail_in == 0 && !s->z_eof) {
  287.             errno = 0;
  288.             s->stream.avail_in = fread(s->inbuf, 1, Z_BUFSIZE, s->file);
  289.             if (s->stream.avail_in == 0) {
  290.                 s->z_eof = 1;
  291. if (ferror(s->file)) {
  292.     s->z_err = Z_ERRNO;
  293.     break;
  294. }
  295.             }
  296.             s->stream.next_in = s->inbuf;
  297.         }
  298.         s->z_err = inflate(&(s->stream), Z_NO_FLUSH);
  299. if (s->z_err == Z_STREAM_END) {
  300.     /* Check CRC and original size */
  301.     s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
  302.     start = s->stream.next_out;
  303.     if (getLong(s) != s->crc || getLong(s) != s->stream.total_out) {
  304. s->z_err = Z_DATA_ERROR;
  305.     } else {
  306. /* Check for concatenated .gz files: */
  307. check_header(s);
  308. if (s->z_err == Z_OK) {
  309.     inflateReset(&(s->stream));
  310.     s->crc = crc32(0L, Z_NULL, 0);
  311. }
  312.     }
  313. }
  314. if (s->z_err != Z_OK || s->z_eof) break;
  315.     }
  316.     s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
  317.     return (int)(len - s->stream.avail_out);
  318. }
  319. /* ===========================================================================
  320.      Writes the given number of uncompressed bytes into the compressed file.
  321.    gzwrite returns the number of bytes actually written (0 in case of error).
  322. */
  323. #ifdef MOZILLA_CLIENT
  324. PR_PUBLIC_API(extern int)    gzwrite (gzFile file, const voidp buf, unsigned len)
  325. #else
  326. extern int EXPORT    gzwrite OF((gzFile file, const voidp buf, unsigned len))
  327. #endif
  328. {
  329.     gz_stream *s = (gz_stream*)file;
  330.     if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
  331.     s->stream.next_in = buf;
  332.     s->stream.avail_in = len;
  333.     while (s->stream.avail_in != 0) {
  334.         if (s->stream.avail_out == 0) {
  335.             s->stream.next_out = s->outbuf;
  336.             if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
  337.                 s->z_err = Z_ERRNO;
  338.                 break;
  339.             }
  340.             s->stream.avail_out = Z_BUFSIZE;
  341.         }
  342.         s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
  343.         if (s->z_err != Z_OK) break;
  344.     }
  345.     s->crc = crc32(s->crc, buf, len);
  346.     return (int)(len - s->stream.avail_in);
  347. }
  348. /* ===========================================================================
  349.      Flushes all pending output into the compressed file. The parameter
  350.    flush is as in the deflate() function.
  351.      gzflush should be called only when strictly necessary because it can
  352.    degrade compression.
  353. */
  354. #ifdef MOZILLA_CLIENT
  355. PR_PUBLIC_API(extern int)    gzflush (gzFile file, int flush)
  356. #else
  357. extern int EXPORT    gzflush OF((gzFile file, int flush))
  358. #endif
  359. {
  360.     uInt len;
  361.     int done = 0;
  362.     gz_stream *s = (gz_stream*)file;
  363.     if (s == NULL || s->mode != 'w') return Z_STREAM_ERROR;
  364.     s->stream.avail_in = 0; /* should be zero already anyway */
  365.     for (;;) {
  366.         len = Z_BUFSIZE - s->stream.avail_out;
  367.         if (len != 0) {
  368.             if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
  369.                 s->z_err = Z_ERRNO;
  370.                 return Z_ERRNO;
  371.             }
  372.             s->stream.next_out = s->outbuf;
  373.             s->stream.avail_out = Z_BUFSIZE;
  374.         }
  375.         if (done) break;
  376.         s->z_err = deflate(&(s->stream), flush);
  377.         /* deflate has finished flushing only when it hasn't used up
  378.          * all the available space in the output buffer: 
  379.          */
  380.         done = (s->stream.avail_out != 0 || s->z_err == Z_STREAM_END);
  381.  
  382.         if (s->z_err != Z_OK && s->z_err != Z_STREAM_END) break;
  383.     }
  384.     fflush(s->file);
  385.     return  s->z_err == Z_STREAM_END ? Z_OK : s->z_err;
  386. }
  387. /* ===========================================================================
  388.    Outputs a long in LSB order to the given file
  389. */
  390. local void putLong (file, x)
  391.     FILE *file;
  392.     uLong x;
  393. {
  394.     int n;
  395.     for (n = 0; n < 4; n++) {
  396.         fputc((int)(x & 0xff), file);
  397.         x >>= 8;
  398.     }
  399. }
  400. /* ===========================================================================
  401.    Reads a long in LSB order from the given gz_stream. Sets 
  402. */
  403. local uLong getLong (s)
  404.     gz_stream *s;
  405. {
  406.     uLong x = (uLong)get_byte(s);
  407.     int c;
  408.     x += ((uLong)get_byte(s))<<8;
  409.     x += ((uLong)get_byte(s))<<16;
  410.     c = get_byte(s);
  411.     if (c == EOF) s->z_err = Z_DATA_ERROR;
  412.     x += ((uLong)c)<<24;
  413.     return x;
  414. }
  415. /* ===========================================================================
  416.      Flushes all pending output if necessary, closes the compressed file
  417.    and deallocates all the (de)compression state.
  418. */
  419. #ifdef MOZILLA_CLIENT
  420. PR_PUBLIC_API(extern int)    gzclose (gzFile file)
  421. #else
  422. extern int EXPORT    gzclose OF((gzFile file))
  423. #endif
  424. {
  425.     int err;
  426.     gz_stream *s = (gz_stream*)file;
  427.     if (s == NULL) return Z_STREAM_ERROR;
  428.     if (s->mode == 'w') {
  429.         err = gzflush (file, Z_FINISH);
  430.         if (err != Z_OK) return destroy(file);
  431.         putLong (s->file, s->crc);
  432.         putLong (s->file, s->stream.total_in);
  433.     }
  434.     return destroy(file);
  435. }
  436. /* ===========================================================================
  437.      Returns the error message for the last error which occured on the
  438.    given compressed file. errnum is set to zlib error number. If an
  439.    error occured in the file system and not in the compression library,
  440.    errnum is set to Z_ERRNO and the application may consult errno
  441.    to get the exact error code.
  442. */
  443. #ifdef MOZILLA_CLIENT
  444. PR_PUBLIC_API(extern const char *) gzerror (gzFile file, int *errnum)
  445. #else
  446. extern const char * EXPORT gzerror OF((gzFile file, int *errnum))
  447. #endif
  448. {
  449.     char *m;
  450.     gz_stream *s = (gz_stream*)file;
  451.     if (s == NULL) {
  452.         *errnum = Z_STREAM_ERROR;
  453.         return (const char*)ERR_MSG(Z_STREAM_ERROR);
  454.     }
  455.     *errnum = s->z_err;
  456.     if (*errnum == Z_OK) return (const char*)"";
  457.     m =  (char*)(*errnum == Z_ERRNO ? zstrerror(errno) : s->stream.msg);
  458.     if (m == NULL || *m == '') m = (char*)ERR_MSG(s->z_err);
  459.     TRYFREE(s->msg);
  460.     s->msg = (char*)ALLOC(strlen(s->path) + strlen(m) + 3);
  461.     strcpy(s->msg, s->path);
  462.     strcat(s->msg, ": ");
  463.     strcat(s->msg, m);
  464.     return (const char*)s->msg;
  465. }