minigzip.c 5.5 KB
Newer Older
M
Mark Adler 已提交
1
/* minigzip.c -- simulate gzip using the zlib compression library
M
Mark Adler 已提交
2
 * Copyright (C) 1995 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: minigzip.c,v 1.5 1995/05/03 17:27:11 jloup Exp $ */
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
extern int unlink OF((const char *));
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 38 39 40 41 42 43
#ifdef VMS
#  define GZ_SUFFIX "-gz"
#else
#  define GZ_SUFFIX ".gz"
#endif
#define SUFFIX_LEN sizeof(GZ_SUFFIX)

M
Mark Adler 已提交
44 45 46 47 48 49 50 51 52 53 54
#define BUFLEN 4096
#define MAX_NAME_LEN 1024

#define local static
/* For MSDOS and other systems with limitation on stack size. For Unix,
    #define local
   works also.
 */

char *prog;

M
Mark Adler 已提交
55
void error           OF((char *msg));
M
Mark Adler 已提交
56 57 58 59 60
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 已提交
61

M
Mark Adler 已提交
62 63 64 65
/* ===========================================================================
 * Display error message and exit
 */
void error(msg)
M
Mark Adler 已提交
66
    char *msg;
M
Mark Adler 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
{
    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 已提交
84 85 86 87 88 89 90
        len = fread(buf, 1, sizeof(buf), in);
        if (ferror(in)) {
            perror("fread");
            exit(1);
        }
        if (len == 0) break;

M
Mark Adler 已提交
91
        if (gzwrite(out, buf, len) != len) error(gzerror(out, &err));
M
Mark Adler 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    }
    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 已提交
109 110 111
        len = gzread(in, buf, sizeof(buf));
        if (len < 0) error (gzerror(in, &err));
        if (len == 0) break;
M
Mark Adler 已提交
112

M
Mark Adler 已提交
113
        if (fwrite(buf, 1, len, out) != (uInt)len) error("failed fwrite");
M
Mark Adler 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    }
    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 已提交
133
    strcat(outfile, GZ_SUFFIX);
M
Mark Adler 已提交
134 135 136

    in = fopen(file, "rb");
    if (in == NULL) {
M
Mark Adler 已提交
137 138
        perror(file);
        exit(1);
M
Mark Adler 已提交
139
    }
M
Mark Adler 已提交
140
    out = gzopen(outfile, "wb"); /* use "wb9" for maximal compression */
M
Mark Adler 已提交
141
    if (out == NULL) {
M
Mark Adler 已提交
142 143
        fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
        exit(1);
M
Mark Adler 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
    }
    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 已提交
165
    if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
M
Mark Adler 已提交
166 167 168
        infile = file;
        outfile = buf;
        outfile[len-3] = '\0';
M
Mark Adler 已提交
169
    } else {
M
Mark Adler 已提交
170 171
        outfile = file;
        infile = buf;
M
Mark Adler 已提交
172
        strcat(infile, GZ_SUFFIX);
M
Mark Adler 已提交
173 174 175
    }
    in = gzopen(infile, "rb");
    if (in == NULL) {
M
Mark Adler 已提交
176 177
        fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
        exit(1);
M
Mark Adler 已提交
178 179 180
    }
    out = fopen(outfile, "wb");
    if (out == NULL) {
M
Mark Adler 已提交
181 182
        perror(file);
        exit(1);
M
Mark Adler 已提交
183 184 185 186 187 188 189 190 191 192 193 194
    }

    gz_uncompress(in, out);

    unlink(infile);
}


/* ===========================================================================
 * Usage:  minigzip [-d] [files...]
 */

M
Mark Adler 已提交
195
int main(argc, argv)
M
Mark Adler 已提交
196 197 198 199 200 201 202 203 204 205
    int argc;
    char *argv[];
{
    int uncompr = 0;
    gzFile file;

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

    if (argc > 0) {
M
Mark Adler 已提交
206 207 208 209
        uncompr = (strcmp(*argv, "-d") == 0);
        if (uncompr) {
            argc--, argv++;
        }
M
Mark Adler 已提交
210 211 212 213
    }
    if (argc == 0) {
        SET_BINARY_MODE(stdin);
        SET_BINARY_MODE(stdout);
M
Mark Adler 已提交
214 215
        if (uncompr) {
            file = gzdopen(fileno(stdin), "rb");
M
Mark Adler 已提交
216
            if (file == NULL) error("can't gzdopen stdin");
M
Mark Adler 已提交
217 218
            gz_uncompress(file, stdout);
        } else {
M
Mark Adler 已提交
219
            file = gzdopen(fileno(stdout), "wb"); /* "wb9" for max compr. */
M
Mark Adler 已提交
220
            if (file == NULL) error("can't gzdopen stdout");
M
Mark Adler 已提交
221 222
            gz_compress(stdin, file);
        }
M
Mark Adler 已提交
223
    } else {
M
Mark Adler 已提交
224 225 226 227 228 229 230
        do {
            if (uncompr) {
                file_uncompress(*argv);
            } else {
                file_compress(*argv);
            }
        } while (argv++, --argc);
M
Mark Adler 已提交
231 232
    }
    exit(0);
M
Mark Adler 已提交
233
    return 0; /* to avoid warning */
M
Mark Adler 已提交
234
}