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

/*
 * 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
#  include <stdlib.h>
M
Mark Adler 已提交
24
#endif
M
Mark Adler 已提交
25

M
Mark Adler 已提交
26 27 28 29 30
#ifdef USE_MMAP
#  include <sys/types.h>
#  include <sys/mman.h>
#  include <sys/stat.h>
#endif
M
Mark Adler 已提交
31

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

M
Mark Adler 已提交
40
#ifdef VMS
M
Mark Adler 已提交
41
#  define unlink delete
M
Mark Adler 已提交
42
#  define GZ_SUFFIX "-gz"
M
Mark Adler 已提交
43 44 45 46 47 48
#endif
#ifdef RISCOS
#  define unlink remove
#  define GZ_SUFFIX "-gz"
#  define fileno(file) file->__file
#endif
M
Mark Adler 已提交
49 50 51
#if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
#  include <unix.h> /* for fileno */
#endif
M
Mark Adler 已提交
52

M
Mark Adler 已提交
53 54 55 56
#ifndef WIN32 /* unlink already in stdio.h for WIN32 */
  extern int unlink OF((const char *));
#endif

M
Mark Adler 已提交
57
#ifndef GZ_SUFFIX
M
Mark Adler 已提交
58 59
#  define GZ_SUFFIX ".gz"
#endif
M
Mark Adler 已提交
60
#define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
M
Mark Adler 已提交
61

M
Mark Adler 已提交
62
#define BUFLEN      16384
M
Mark Adler 已提交
63 64
#define MAX_NAME_LEN 1024

M
Mark Adler 已提交
65 66 67 68 69 70
#ifdef MAXSEG_64K
#  define local static
   /* Needed for systems with limitation on stack size. */
#else
#  define local
#endif
M
Mark Adler 已提交
71 72 73

char *prog;

M
Mark Adler 已提交
74 75 76 77 78 79 80 81 82
void error            OF((const char *msg));
void gz_compress      OF((FILE   *in, gzFile out));
#ifdef USE_MMAP
int  gz_compress_mmap OF((FILE   *in, gzFile out));
#endif
void gz_uncompress    OF((gzFile in, FILE   *out));
void file_compress    OF((char  *file, char *mode));
void file_uncompress  OF((char  *file));
int  main             OF((int argc, char *argv[]));
M
Mark Adler 已提交
83

M
Mark Adler 已提交
84 85 86 87
/* ===========================================================================
 * Display error message and exit
 */
void error(msg)
M
Mark Adler 已提交
88
    const char *msg;
M
Mark Adler 已提交
89 90 91 92 93 94 95 96
{
    fprintf(stderr, "%s: %s\n", prog, msg);
    exit(1);
}

/* ===========================================================================
 * Compress input to output then close both files.
 */
M
Mark Adler 已提交
97

M
Mark Adler 已提交
98 99 100 101 102 103 104 105
void gz_compress(in, out)
    FILE   *in;
    gzFile out;
{
    local char buf[BUFLEN];
    int len;
    int err;

M
Mark Adler 已提交
106 107 108 109 110 111
#ifdef USE_MMAP
    /* Try first compressing with mmap. If mmap fails (minigzip used in a
     * pipe), use the normal fread loop.
     */
    if (gz_compress_mmap(in, out) == Z_OK) return;
#endif
M
Mark Adler 已提交
112
    for (;;) {
M
Mark Adler 已提交
113
        len = (int)fread(buf, 1, sizeof(buf), in);
M
Mark Adler 已提交
114 115 116 117 118 119
        if (ferror(in)) {
            perror("fread");
            exit(1);
        }
        if (len == 0) break;

M
Mark Adler 已提交
120
        if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
M
Mark Adler 已提交
121 122 123 124 125
    }
    fclose(in);
    if (gzclose(out) != Z_OK) error("failed gzclose");
}

M
Mark Adler 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
#ifdef USE_MMAP /* MMAP version, Miguel Albrecht <malbrech@eso.org> */

/* Try compressing the input file at once using mmap. Return Z_OK if
 * if success, Z_ERRNO otherwise.
 */
int gz_compress_mmap(in, out)
    FILE   *in;
    gzFile out;
{
    int len;
    int err;
    int ifd = fileno(in);
    caddr_t buf;    /* mmap'ed buffer for the entire input file */
    off_t buf_len;  /* length of the input file */
    struct stat sb;

    /* Determine the size of the file, needed for mmap: */
    if (fstat(ifd, &sb) < 0) return Z_ERRNO;
    buf_len = sb.st_size;
    if (buf_len <= 0) return Z_ERRNO;

    /* Now do the actual mmap: */
M
Mark Adler 已提交
148
    buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
M
Mark Adler 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162
    if (buf == (caddr_t)(-1)) return Z_ERRNO;

    /* Compress the whole file at once: */
    len = gzwrite(out, (char *)buf, (unsigned)buf_len);

    if (len != (int)buf_len) error(gzerror(out, &err));

    munmap(buf, buf_len);
    fclose(in);
    if (gzclose(out) != Z_OK) error("failed gzclose");
    return Z_OK;
}
#endif /* USE_MMAP */

M
Mark Adler 已提交
163 164 165 166 167 168 169 170 171 172 173 174
/* ===========================================================================
 * 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 已提交
175 176 177
        len = gzread(in, buf, sizeof(buf));
        if (len < 0) error (gzerror(in, &err));
        if (len == 0) break;
M
Mark Adler 已提交
178

M
Mark Adler 已提交
179
        if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
M
Mark Adler 已提交
180 181
            error("failed fwrite");
        }
M
Mark Adler 已提交
182 183 184 185 186 187 188 189 190 191 192
    }
    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.
 */
M
Mark Adler 已提交
193
void file_compress(file, mode)
M
Mark Adler 已提交
194
    char  *file;
M
Mark Adler 已提交
195
    char  *mode;
M
Mark Adler 已提交
196 197 198 199 200 201
{
    local char outfile[MAX_NAME_LEN];
    FILE  *in;
    gzFile out;

    strcpy(outfile, file);
M
Mark Adler 已提交
202
    strcat(outfile, GZ_SUFFIX);
M
Mark Adler 已提交
203 204 205

    in = fopen(file, "rb");
    if (in == NULL) {
M
Mark Adler 已提交
206 207
        perror(file);
        exit(1);
M
Mark Adler 已提交
208
    }
M
Mark Adler 已提交
209
    out = gzopen(outfile, mode);
M
Mark Adler 已提交
210
    if (out == NULL) {
M
Mark Adler 已提交
211 212
        fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
        exit(1);
M
Mark Adler 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
    }
    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;
M
Mark Adler 已提交
230
    uInt len = (uInt)strlen(file);
M
Mark Adler 已提交
231 232 233

    strcpy(buf, file);

M
Mark Adler 已提交
234
    if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
M
Mark Adler 已提交
235 236 237
        infile = file;
        outfile = buf;
        outfile[len-3] = '\0';
M
Mark Adler 已提交
238
    } else {
M
Mark Adler 已提交
239 240
        outfile = file;
        infile = buf;
M
Mark Adler 已提交
241
        strcat(infile, GZ_SUFFIX);
M
Mark Adler 已提交
242 243 244
    }
    in = gzopen(infile, "rb");
    if (in == NULL) {
M
Mark Adler 已提交
245 246
        fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
        exit(1);
M
Mark Adler 已提交
247 248 249
    }
    out = fopen(outfile, "wb");
    if (out == NULL) {
M
Mark Adler 已提交
250 251
        perror(file);
        exit(1);
M
Mark Adler 已提交
252 253 254 255 256 257 258 259 260
    }

    gz_uncompress(in, out);

    unlink(infile);
}


/* ===========================================================================
M
Mark Adler 已提交
261
 * Usage:  minigzip [-d] [-f] [-h] [-r] [-1 to -9] [files...]
M
Mark Adler 已提交
262 263 264
 *   -d : decompress
 *   -f : compress with Z_FILTERED
 *   -h : compress with Z_HUFFMAN_ONLY
M
Mark Adler 已提交
265
 *   -r : compress with Z_RLE
M
Mark Adler 已提交
266
 *   -1 to -9 : compression level
M
Mark Adler 已提交
267 268
 */

M
Mark Adler 已提交
269
int main(argc, argv)
M
Mark Adler 已提交
270 271 272 273 274
    int argc;
    char *argv[];
{
    int uncompr = 0;
    gzFile file;
M
Mark Adler 已提交
275 276 277
    char outmode[20];

    strcpy(outmode, "wb6 ");
M
Mark Adler 已提交
278 279 280 281

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

M
Mark Adler 已提交
282 283
    while (argc > 0) {
      if (strcmp(*argv, "-d") == 0)
M
Mark Adler 已提交
284
        uncompr = 1;
M
Mark Adler 已提交
285
      else if (strcmp(*argv, "-f") == 0)
M
Mark Adler 已提交
286
        outmode[3] = 'f';
M
Mark Adler 已提交
287
      else if (strcmp(*argv, "-h") == 0)
M
Mark Adler 已提交
288 289 290
        outmode[3] = 'h';
      else if (strcmp(*argv, "-r") == 0)
        outmode[3] = 'R';
M
Mark Adler 已提交
291
      else if ((*argv)[0] == '-' && (*argv)[1] >= '1' && (*argv)[1] <= '9' &&
M
Mark Adler 已提交
292 293
               (*argv)[2] == 0)
        outmode[2] = (*argv)[1];
M
Mark Adler 已提交
294
      else
M
Mark Adler 已提交
295
        break;
M
Mark Adler 已提交
296
      argc--, argv++;
M
Mark Adler 已提交
297
    }
M
Mark Adler 已提交
298 299
    if (outmode[3] == ' ')
        outmode[3] = 0;
M
Mark Adler 已提交
300 301 302
    if (argc == 0) {
        SET_BINARY_MODE(stdin);
        SET_BINARY_MODE(stdout);
M
Mark Adler 已提交
303 304
        if (uncompr) {
            file = gzdopen(fileno(stdin), "rb");
M
Mark Adler 已提交
305
            if (file == NULL) error("can't gzdopen stdin");
M
Mark Adler 已提交
306 307
            gz_uncompress(file, stdout);
        } else {
M
Mark Adler 已提交
308
            file = gzdopen(fileno(stdout), outmode);
M
Mark Adler 已提交
309
            if (file == NULL) error("can't gzdopen stdout");
M
Mark Adler 已提交
310 311
            gz_compress(stdin, file);
        }
M
Mark Adler 已提交
312
    } else {
M
Mark Adler 已提交
313 314 315 316
        do {
            if (uncompr) {
                file_uncompress(*argv);
            } else {
M
Mark Adler 已提交
317
                file_compress(*argv, outmode);
M
Mark Adler 已提交
318 319
            }
        } while (argv++, --argc);
M
Mark Adler 已提交
320
    }
M
Mark Adler 已提交
321
    return 0;
M
Mark Adler 已提交
322
}