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