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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: minigzip.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:50:22  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* minigzip.c -- simulate gzip using the zlib compression library
  10.  * Copyright (C) 1995-2002 Jean-loup Gailly.
  11.  * For conditions of distribution and use, see copyright notice in zlib.h 
  12.  */
  13. /*
  14.  * minigzip is a minimal implementation of the gzip utility. This is
  15.  * only an example of using zlib and isn't meant to replace the
  16.  * full-featured gzip. No attempt is made to deal with file systems
  17.  * limiting names to 14 or 8+3 characters, etc... Error checking is
  18.  * very limited. So use minigzip only for testing; use gzip for the
  19.  * real thing. On MSDOS, use only on file names without extension
  20.  * or in pipe mode.
  21.  */
  22. /* @(#) $Id: minigzip.c,v 1000.0 2003/10/29 15:50:22 gouriano Exp $ */
  23. #include <stdio.h>
  24. #include "zlib.h"
  25. #ifdef STDC
  26. #  include <string.h>
  27. #  include <stdlib.h>
  28. #else
  29.    extern void exit  OF((int));
  30. #endif
  31. #ifdef USE_MMAP
  32. #  include <sys/types.h>
  33. #  include <sys/mman.h>
  34. #  include <sys/stat.h>
  35. #endif
  36. #if defined(MSDOS) || defined(OS2) || defined(WIN32)
  37. #  include <fcntl.h>
  38. #  include <io.h>
  39. #  define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  40. #else
  41. #  define SET_BINARY_MODE(file)
  42. #endif
  43. #ifdef VMS
  44. #  define unlink delete
  45. #  define GZ_SUFFIX "-gz"
  46. #endif
  47. #ifdef RISCOS
  48. #  define unlink remove
  49. #  define GZ_SUFFIX "-gz"
  50. #  define fileno(file) file->__file
  51. #endif
  52. #if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
  53. #  include <unix.h> /* for fileno */
  54. #endif
  55. #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
  56.   extern int unlink OF((const char *));
  57. #endif
  58. #ifndef GZ_SUFFIX
  59. #  define GZ_SUFFIX ".gz"
  60. #endif
  61. #define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
  62. #define BUFLEN      16384
  63. #define MAX_NAME_LEN 1024
  64. #ifdef MAXSEG_64K
  65. #  define local static
  66.    /* Needed for systems with limitation on stack size. */
  67. #else
  68. #  define local
  69. #endif
  70. char *prog;
  71. void error            OF((const char *msg));
  72. void gz_compress      OF((FILE   *in, gzFile out));
  73. #ifdef USE_MMAP
  74. int  gz_compress_mmap OF((FILE   *in, gzFile out));
  75. #endif
  76. void gz_uncompress    OF((gzFile in, FILE   *out));
  77. void file_compress    OF((char  *file, char *mode));
  78. void file_uncompress  OF((char  *file));
  79. int  main             OF((int argc, char *argv[]));
  80. /* ===========================================================================
  81.  * Display error message and exit
  82.  */
  83. void error(msg)
  84.     const char *msg;
  85. {
  86.     fprintf(stderr, "%s: %sn", prog, msg);
  87.     exit(1);
  88. }
  89. /* ===========================================================================
  90.  * Compress input to output then close both files.
  91.  */
  92. void gz_compress(in, out)
  93.     FILE   *in;
  94.     gzFile out;
  95. {
  96.     local char buf[BUFLEN];
  97.     int len;
  98.     int err;
  99. #ifdef USE_MMAP
  100.     /* Try first compressing with mmap. If mmap fails (minigzip used in a
  101.      * pipe), use the normal fread loop.
  102.      */
  103.     if (gz_compress_mmap(in, out) == Z_OK) return;
  104. #endif
  105.     for (;;) {
  106.         len = fread(buf, 1, sizeof(buf), in);
  107.         if (ferror(in)) {
  108.             perror("fread");
  109.             exit(1);
  110.         }
  111.         if (len == 0) break;
  112.         if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
  113.     }
  114.     fclose(in);
  115.     if (gzclose(out) != Z_OK) error("failed gzclose");
  116. }
  117. #ifdef USE_MMAP /* MMAP version, Miguel Albrecht <malbrech@eso.org> */
  118. /* Try compressing the input file at once using mmap. Return Z_OK if
  119.  * if success, Z_ERRNO otherwise.
  120.  */
  121. int gz_compress_mmap(in, out)
  122.     FILE   *in;
  123.     gzFile out;
  124. {
  125.     int len;
  126.     int err;
  127.     int ifd = fileno(in);
  128.     caddr_t buf;    /* mmap'ed buffer for the entire input file */
  129.     off_t buf_len;  /* length of the input file */
  130.     struct stat sb;
  131.     /* Determine the size of the file, needed for mmap: */
  132.     if (fstat(ifd, &sb) < 0) return Z_ERRNO;
  133.     buf_len = sb.st_size;
  134.     if (buf_len <= 0) return Z_ERRNO;
  135.     /* Now do the actual mmap: */
  136.     buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0); 
  137.     if (buf == (caddr_t)(-1)) return Z_ERRNO;
  138.     /* Compress the whole file at once: */
  139.     len = gzwrite(out, (char *)buf, (unsigned)buf_len);
  140.     if (len != (int)buf_len) error(gzerror(out, &err));
  141.     munmap(buf, buf_len);
  142.     fclose(in);
  143.     if (gzclose(out) != Z_OK) error("failed gzclose");
  144.     return Z_OK;
  145. }
  146. #endif /* USE_MMAP */
  147. /* ===========================================================================
  148.  * Uncompress input to output then close both files.
  149.  */
  150. void gz_uncompress(in, out)
  151.     gzFile in;
  152.     FILE   *out;
  153. {
  154.     local char buf[BUFLEN];
  155.     int len;
  156.     int err;
  157.     for (;;) {
  158.         len = gzread(in, buf, sizeof(buf));
  159.         if (len < 0) error (gzerror(in, &err));
  160.         if (len == 0) break;
  161.         if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
  162.     error("failed fwrite");
  163. }
  164.     }
  165.     if (fclose(out)) error("failed fclose");
  166.     if (gzclose(in) != Z_OK) error("failed gzclose");
  167. }
  168. /* ===========================================================================
  169.  * Compress the given file: create a corresponding .gz file and remove the
  170.  * original.
  171.  */
  172. void file_compress(file, mode)
  173.     char  *file;
  174.     char  *mode;
  175. {
  176.     local char outfile[MAX_NAME_LEN];
  177.     FILE  *in;
  178.     gzFile out;
  179.     strcpy(outfile, file);
  180.     strcat(outfile, GZ_SUFFIX);
  181.     in = fopen(file, "rb");
  182.     if (in == NULL) {
  183.         perror(file);
  184.         exit(1);
  185.     }
  186.     out = gzopen(outfile, mode);
  187.     if (out == NULL) {
  188.         fprintf(stderr, "%s: can't gzopen %sn", prog, outfile);
  189.         exit(1);
  190.     }
  191.     gz_compress(in, out);
  192.     unlink(file);
  193. }
  194. /* ===========================================================================
  195.  * Uncompress the given file and remove the original.
  196.  */
  197. void file_uncompress(file)
  198.     char  *file;
  199. {
  200.     local char buf[MAX_NAME_LEN];
  201.     char *infile, *outfile;
  202.     FILE  *out;
  203.     gzFile in;
  204.     int len = strlen(file);
  205.     strcpy(buf, file);
  206.     if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
  207.         infile = file;
  208.         outfile = buf;
  209.         outfile[len-3] = '';
  210.     } else {
  211.         outfile = file;
  212.         infile = buf;
  213.         strcat(infile, GZ_SUFFIX);
  214.     }
  215.     in = gzopen(infile, "rb");
  216.     if (in == NULL) {
  217.         fprintf(stderr, "%s: can't gzopen %sn", prog, infile);
  218.         exit(1);
  219.     }
  220.     out = fopen(outfile, "wb");
  221.     if (out == NULL) {
  222.         perror(file);
  223.         exit(1);
  224.     }
  225.     gz_uncompress(in, out);
  226.     unlink(infile);
  227. }
  228. /* ===========================================================================
  229.  * Usage:  minigzip [-d] [-f] [-h] [-1 to -9] [files...]
  230.  *   -d : decompress
  231.  *   -f : compress with Z_FILTERED
  232.  *   -h : compress with Z_HUFFMAN_ONLY
  233.  *   -1 to -9 : compression level
  234.  */
  235. int main(argc, argv)
  236.     int argc;
  237.     char *argv[];
  238. {
  239.     int uncompr = 0;
  240.     gzFile file;
  241.     char outmode[20];
  242.     strcpy(outmode, "wb6 ");
  243.     prog = argv[0];
  244.     argc--, argv++;
  245.     while (argc > 0) {
  246.       if (strcmp(*argv, "-d") == 0)
  247. uncompr = 1;
  248.       else if (strcmp(*argv, "-f") == 0)
  249. outmode[3] = 'f';
  250.       else if (strcmp(*argv, "-h") == 0)
  251. outmode[3] = 'h';
  252.       else if ((*argv)[0] == '-' && (*argv)[1] >= '1' && (*argv)[1] <= '9' &&
  253.        (*argv)[2] == 0)
  254. outmode[2] = (*argv)[1];
  255.       else
  256. break;
  257.       argc--, argv++;
  258.     }
  259.     if (argc == 0) {
  260.         SET_BINARY_MODE(stdin);
  261.         SET_BINARY_MODE(stdout);
  262.         if (uncompr) {
  263.             file = gzdopen(fileno(stdin), "rb");
  264.             if (file == NULL) error("can't gzdopen stdin");
  265.             gz_uncompress(file, stdout);
  266.         } else {
  267.             file = gzdopen(fileno(stdout), outmode);
  268.             if (file == NULL) error("can't gzdopen stdout");
  269.             gz_compress(stdin, file);
  270.         }
  271.     } else {
  272.         do {
  273.             if (uncompr) {
  274.                 file_uncompress(*argv);
  275.             } else {
  276.                 file_compress(*argv, outmode);
  277.             }
  278.         } while (argv++, --argc);
  279.     }
  280.     exit(0);
  281.     return 0; /* to avoid warning */
  282. }