minigzip.c 6.1 KB
Newer Older
M
Mark Adler 已提交
1
/* minigzip.c -- simulate gzip using the zlib compression library
M
Mark Adler 已提交
2
 * Copyright (C) 1995-1998 Jean-loup Gailly.
M
Mark Adler 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15
 * For conditions of distribution and use, see copyright notice in zlib.h 
 */

/*
 * minigzip is a minimal implementation of the gzip utility. This is
 * only an example of using zlib and isn't meant to replace the
 * full-featured gzip. No attempt is made to deal with file systems
 * limiting names to 14 or 8+3 characters, etc... Error checking is
 * very limited. So use minigzip only for testing; use gzip for the
 * real thing. On MSDOS, use only on file names without extension
 * or in pipe mode.
 */

M
Mark Adler 已提交
16
/* @(#) $Id$ */
M
Mark Adler 已提交
17 18 19 20

#include <stdio.h>
#include "zlib.h"

M
Mark Adler 已提交
21 22
#ifdef STDC
#  include <string.h>
M
Mark Adler 已提交
23 24 25
#  include <stdlib.h>
#else
   extern void exit  OF((int));
M
Mark Adler 已提交
26
#endif
M
Mark Adler 已提交
27

M
Mark Adler 已提交
28

M
Mark Adler 已提交
29
#if defined(MSDOS) || defined(OS2) || defined(WIN32)
M
Mark Adler 已提交
30 31
#  include <fcntl.h>
#  include <io.h>
M
Mark Adler 已提交
32 33 34 35 36
#  define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
#else
#  define SET_BINARY_MODE(file)
#endif

M
Mark Adler 已提交
37
#ifdef VMS
M
Mark Adler 已提交
38
#  define unlink delete
M
Mark Adler 已提交
39
#  define GZ_SUFFIX "-gz"
M
Mark Adler 已提交
40 41 42 43 44 45 46 47
#endif
#ifdef RISCOS
#  define unlink remove
#  define GZ_SUFFIX "-gz"
#  define fileno(file) file->__file
#endif

#ifndef GZ_SUFFIX
M
Mark Adler 已提交
48 49
#  define GZ_SUFFIX ".gz"
#endif
M
Mark Adler 已提交
50
#define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
M
Mark Adler 已提交
51

M
Mark Adler 已提交
52 53
extern int unlink OF((const char *));

M
Mark Adler 已提交
54 55 56
#define BUFLEN 4096
#define MAX_NAME_LEN 1024

M
Mark Adler 已提交
57 58 59 60 61 62
#ifdef MAXSEG_64K
#  define local static
   /* Needed for systems with limitation on stack size. */
#else
#  define local
#endif
M
Mark Adler 已提交
63 64 65

char *prog;

M
Mark Adler 已提交
66
void error           OF((const char *msg));
M
Mark Adler 已提交
67 68 69 70 71
void gz_compress     OF((FILE   *in, gzFile out));
void gz_uncompress   OF((gzFile in, FILE   *out));
void file_compress   OF((char  *file));
void file_uncompress OF((char  *file));
int  main            OF((int argc, char *argv[]));
M
Mark Adler 已提交
72

M
Mark Adler 已提交
73 74 75 76
/* ===========================================================================
 * Display error message and exit
 */
void error(msg)
M
Mark Adler 已提交
77
    const char *msg;
M
Mark Adler 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
{
    fprintf(stderr, "%s: %s\n", prog, msg);
    exit(1);
}

/* ===========================================================================
 * Compress input to output then close both files.
 */
void gz_compress(in, out)
    FILE   *in;
    gzFile out;
{
    local char buf[BUFLEN];
    int len;
    int err;

    for (;;) {
M
Mark Adler 已提交
95 96 97 98 99 100 101
        len = fread(buf, 1, sizeof(buf), in);
        if (ferror(in)) {
            perror("fread");
            exit(1);
        }
        if (len == 0) break;

M
Mark Adler 已提交
102
        if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
M
Mark Adler 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    }
    fclose(in);
    if (gzclose(out) != Z_OK) error("failed gzclose");
}

/* ===========================================================================
 * Uncompress input to output then close both files.
 */
void gz_uncompress(in, out)
    gzFile in;
    FILE   *out;
{
    local char buf[BUFLEN];
    int len;
    int err;

    for (;;) {
M
Mark Adler 已提交
120 121 122
        len = gzread(in, buf, sizeof(buf));
        if (len < 0) error (gzerror(in, &err));
        if (len == 0) break;
M
Mark Adler 已提交
123

M
Mark Adler 已提交
124 125 126
        if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
	    error("failed fwrite");
	}
M
Mark Adler 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
    }
    if (fclose(out)) error("failed fclose");

    if (gzclose(in) != Z_OK) error("failed gzclose");
}


/* ===========================================================================
 * Compress the given file: create a corresponding .gz file and remove the
 * original.
 */
void file_compress(file)
    char  *file;
{
    local char outfile[MAX_NAME_LEN];
    FILE  *in;
    gzFile out;

    strcpy(outfile, file);
M
Mark Adler 已提交
146
    strcat(outfile, GZ_SUFFIX);
M
Mark Adler 已提交
147 148 149

    in = fopen(file, "rb");
    if (in == NULL) {
M
Mark Adler 已提交
150 151
        perror(file);
        exit(1);
M
Mark Adler 已提交
152
    }
M
Mark Adler 已提交
153
    out = gzopen(outfile, "wb"); /* use "wb9" for maximal compression */
M
Mark Adler 已提交
154
    if (out == NULL) {
M
Mark Adler 已提交
155 156
        fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
        exit(1);
M
Mark Adler 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
    }
    gz_compress(in, out);

    unlink(file);
}


/* ===========================================================================
 * Uncompress the given file and remove the original.
 */
void file_uncompress(file)
    char  *file;
{
    local char buf[MAX_NAME_LEN];
    char *infile, *outfile;
    FILE  *out;
    gzFile in;
    int len = strlen(file);

    strcpy(buf, file);

M
Mark Adler 已提交
178
    if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
M
Mark Adler 已提交
179 180 181
        infile = file;
        outfile = buf;
        outfile[len-3] = '\0';
M
Mark Adler 已提交
182
    } else {
M
Mark Adler 已提交
183 184
        outfile = file;
        infile = buf;
M
Mark Adler 已提交
185
        strcat(infile, GZ_SUFFIX);
M
Mark Adler 已提交
186 187 188
    }
    in = gzopen(infile, "rb");
    if (in == NULL) {
M
Mark Adler 已提交
189 190
        fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
        exit(1);
M
Mark Adler 已提交
191 192 193
    }
    out = fopen(outfile, "wb");
    if (out == NULL) {
M
Mark Adler 已提交
194 195
        perror(file);
        exit(1);
M
Mark Adler 已提交
196 197 198 199 200 201 202 203 204
    }

    gz_uncompress(in, out);

    unlink(infile);
}


/* ===========================================================================
M
Mark Adler 已提交
205 206 207 208 209
 * Usage:  minigzip [-d] [-f] [-h] [-1 to -9] [files...]
 *   -d : decompress
 *   -f : compress with Z_FILTERED
 *   -h : compress with Z_HUFFMAN_ONLY
 *   -1 to -9 : compression level
M
Mark Adler 已提交
210 211
 */

M
Mark Adler 已提交
212
int main(argc, argv)
M
Mark Adler 已提交
213 214 215 216 217
    int argc;
    char *argv[];
{
    int uncompr = 0;
    gzFile file;
M
Mark Adler 已提交
218 219 220
    char outmode[20];

    strcpy(outmode, "wb6 ");
M
Mark Adler 已提交
221 222 223 224

    prog = argv[0];
    argc--, argv++;

M
Mark Adler 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237
    while (argc > 0) {
      if (strcmp(*argv, "-d") == 0)
	uncompr = 1;
      else if (strcmp(*argv, "-f") == 0)
	outmode[3] = 'f';
      else if (strcmp(*argv, "-h") == 0)
	outmode[3] = 'h';
      else if ((*argv)[0] == '-' && (*argv)[1] >= '1' && (*argv)[1] <= '9' &&
	       (*argv)[2] == 0)
	outmode[2] = (*argv)[1];
      else
	break;
      argc--, argv++;
M
Mark Adler 已提交
238 239 240 241
    }
    if (argc == 0) {
        SET_BINARY_MODE(stdin);
        SET_BINARY_MODE(stdout);
M
Mark Adler 已提交
242 243
        if (uncompr) {
            file = gzdopen(fileno(stdin), "rb");
M
Mark Adler 已提交
244
            if (file == NULL) error("can't gzdopen stdin");
M
Mark Adler 已提交
245 246
            gz_uncompress(file, stdout);
        } else {
M
Mark Adler 已提交
247
            file = gzdopen(fileno(stdout), outmode);
M
Mark Adler 已提交
248
            if (file == NULL) error("can't gzdopen stdout");
M
Mark Adler 已提交
249 250
            gz_compress(stdin, file);
        }
M
Mark Adler 已提交
251
    } else {
M
Mark Adler 已提交
252 253 254 255 256 257 258
        do {
            if (uncompr) {
                file_uncompress(*argv);
            } else {
                file_compress(*argv);
            }
        } while (argv++, --argc);
M
Mark Adler 已提交
259 260
    }
    exit(0);
M
Mark Adler 已提交
261
    return 0; /* to avoid warning */
M
Mark Adler 已提交
262
}