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

CA认证

开发平台:

WINDOWS

  1. /* minigzip.c -- simulate gzip using the zlib compression library
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /*
  6.  * minigzip is a minimal implementation of the gzip utility. This is
  7.  * only an example of using zlib and isn't meant to replace the
  8.  * full-featured gzip. No attempt is made to deal with file systems
  9.  * limiting names to 14 or 8+3 characters, etc... Error checking is
  10.  * very limited. So use minigzip only for testing; use gzip for the
  11.  * real thing. On MSDOS, use only on file names without extension
  12.  * or in pipe mode.
  13.  */
  14. /* $Id: minigzip.c,v 1.1 2000/03/31 20:13:15 relyea%netscape.com Exp $ */
  15. #include <stdio.h>
  16. #include "zlib.h"
  17. #ifdef STDC
  18. #  include <string.h>
  19. #  include <stdlib.h>
  20. #else
  21.    extern void exit  OF((int));
  22. #endif
  23. #if defined(MSDOS) || defined(OS2) || defined(WIN32)
  24. #  include <fcntl.h>
  25. #  include <io.h>
  26. #  define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  27. #else
  28. #  define SET_BINARY_MODE(file)
  29. #endif
  30. #ifdef VMS
  31. #  define unlink delete
  32. #  define GZ_SUFFIX "-gz"
  33. #endif
  34. #ifdef RISCOS
  35. #  define unlink remove
  36. #  define GZ_SUFFIX "-gz"
  37. #  define fileno(file) file->__file
  38. #endif
  39. #ifndef GZ_SUFFIX
  40. #  define GZ_SUFFIX ".gz"
  41. #endif
  42. #define SUFFIX_LEN sizeof(GZ_SUFFIX)
  43. extern int unlink OF((const char *));
  44. #define BUFLEN 4096
  45. #define MAX_NAME_LEN 1024
  46. #define local static
  47. /* For MSDOS and other systems with limitation on stack size. For Unix,
  48.     #define local
  49.    works also.
  50.  */
  51. char *prog;
  52. void error           OF((const char *msg));
  53. void gz_compress     OF((FILE   *in, gzFile out));
  54. void gz_uncompress   OF((gzFile in, FILE   *out));
  55. void file_compress   OF((char  *file));
  56. void file_uncompress OF((char  *file));
  57. int  main            OF((int argc, char *argv[]));
  58. /* ===========================================================================
  59.  * Display error message and exit
  60.  */
  61. void error(msg)
  62.     const char *msg;
  63. {
  64.     fprintf(stderr, "%s: %sn", prog, msg);
  65.     exit(1);
  66. }
  67. /* ===========================================================================
  68.  * Compress input to output then close both files.
  69.  */
  70. void gz_compress(in, out)
  71.     FILE   *in;
  72.     gzFile out;
  73. {
  74.     local char buf[BUFLEN];
  75.     int len;
  76.     int err;
  77.     for (;;) {
  78.         len = fread(buf, 1, sizeof(buf), in);
  79.         if (ferror(in)) {
  80.             perror("fread");
  81.             exit(1);
  82.         }
  83.         if (len == 0) break;
  84.         if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
  85.     }
  86.     fclose(in);
  87.     if (gzclose(out) != Z_OK) error("failed gzclose");
  88. }
  89. /* ===========================================================================
  90.  * Uncompress input to output then close both files.
  91.  */
  92. void gz_uncompress(in, out)
  93.     gzFile in;
  94.     FILE   *out;
  95. {
  96.     local char buf[BUFLEN];
  97.     int len;
  98.     int err;
  99.     for (;;) {
  100.         len = gzread(in, buf, sizeof(buf));
  101.         if (len < 0) error (gzerror(in, &err));
  102.         if (len == 0) break;
  103.         if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
  104.     error("failed fwrite");
  105. }
  106.     }
  107.     if (fclose(out)) error("failed fclose");
  108.     if (gzclose(in) != Z_OK) error("failed gzclose");
  109. }
  110. /* ===========================================================================
  111.  * Compress the given file: create a corresponding .gz file and remove the
  112.  * original.
  113.  */
  114. void file_compress(file)
  115.     char  *file;
  116. {
  117.     local char outfile[MAX_NAME_LEN];
  118.     FILE  *in;
  119.     gzFile out;
  120.     strcpy(outfile, file);
  121.     strcat(outfile, GZ_SUFFIX);
  122.     in = fopen(file, "rb");
  123.     if (in == NULL) {
  124.         perror(file);
  125.         exit(1);
  126.     }
  127.     out = gzopen(outfile, "wb"); /* use "wb9" for maximal compression */
  128.     if (out == NULL) {
  129.         fprintf(stderr, "%s: can't gzopen %sn", prog, outfile);
  130.         exit(1);
  131.     }
  132.     gz_compress(in, out);
  133.     unlink(file);
  134. }
  135. /* ===========================================================================
  136.  * Uncompress the given file and remove the original.
  137.  */
  138. void file_uncompress(file)
  139.     char  *file;
  140. {
  141.     local char buf[MAX_NAME_LEN];
  142.     char *infile, *outfile;
  143.     FILE  *out;
  144.     gzFile in;
  145.     int len = strlen(file);
  146.     strcpy(buf, file);
  147.     if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
  148.         infile = file;
  149.         outfile = buf;
  150.         outfile[len-3] = '';
  151.     } else {
  152.         outfile = file;
  153.         infile = buf;
  154.         strcat(infile, GZ_SUFFIX);
  155.     }
  156.     in = gzopen(infile, "rb");
  157.     if (in == NULL) {
  158.         fprintf(stderr, "%s: can't gzopen %sn", prog, infile);
  159.         exit(1);
  160.     }
  161.     out = fopen(outfile, "wb");
  162.     if (out == NULL) {
  163.         perror(file);
  164.         exit(1);
  165.     }
  166.     gz_uncompress(in, out);
  167.     unlink(infile);
  168. }
  169. /* ===========================================================================
  170.  * Usage:  minigzip [-d] [files...]
  171.  */
  172. int main(argc, argv)
  173.     int argc;
  174.     char *argv[];
  175. {
  176.     int uncompr = 0;
  177.     gzFile file;
  178.     prog = argv[0];
  179.     argc--, argv++;
  180.     if (argc > 0) {
  181.         uncompr = (strcmp(*argv, "-d") == 0);
  182.         if (uncompr) {
  183.             argc--, argv++;
  184.         }
  185.     }
  186.     if (argc == 0) {
  187.         SET_BINARY_MODE(stdin);
  188.         SET_BINARY_MODE(stdout);
  189.         if (uncompr) {
  190.             file = gzdopen(fileno(stdin), "rb");
  191.             if (file == NULL) error("can't gzdopen stdin");
  192.             gz_uncompress(file, stdout);
  193.         } else {
  194.             file = gzdopen(fileno(stdout), "wb"); /* "wb9" for max compr. */
  195.             if (file == NULL) error("can't gzdopen stdout");
  196.             gz_compress(stdin, file);
  197.         }
  198.     } else {
  199.         do {
  200.             if (uncompr) {
  201.                 file_uncompress(*argv);
  202.             } else {
  203.                 file_compress(*argv);
  204.             }
  205.         } while (argv++, --argc);
  206.     }
  207.     exit(0);
  208.     return 0; /* to avoid warning */
  209. }