A massively spiffy yet delicately unobtrusive compression library. (grpc依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

324 lines
7.8 KiB

13 years ago
/* minigzip.c -- simulate gzip using the zlib compression library
13 years ago
* Copyright (C) 1995-2002 Jean-loup Gailly.
13 years ago
* Adapted for Z_RLE by Cosmin Truta, 2003.
* For conditions of distribution and use, see copyright notice in zlib.h
13 years ago
*/
/*
* 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.
*/
13 years ago
/* @(#) $Id$ */
13 years ago
#include <stdio.h>
#include "zlib.h"
13 years ago
#ifdef STDC
# include <string.h>
13 years ago
# include <stdlib.h>
#else
extern void exit OF((int));
13 years ago
#endif
13 years ago
13 years ago
#ifdef USE_MMAP
# include <sys/types.h>
# include <sys/mman.h>
# include <sys/stat.h>
#endif
13 years ago
13 years ago
#if defined(MSDOS) || defined(OS2) || defined(WIN32)
13 years ago
# include <fcntl.h>
# include <io.h>
13 years ago
# define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
#else
# define SET_BINARY_MODE(file)
#endif
13 years ago
#ifdef VMS
13 years ago
# define unlink delete
13 years ago
# define GZ_SUFFIX "-gz"
13 years ago
#endif
#ifdef RISCOS
# define unlink remove
# define GZ_SUFFIX "-gz"
# define fileno(file) file->__file
#endif
13 years ago
#if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
# include <unix.h> /* for fileno */
#endif
13 years ago
13 years ago
#ifndef WIN32 /* unlink already in stdio.h for WIN32 */
extern int unlink OF((const char *));
#endif
13 years ago
#ifndef GZ_SUFFIX
13 years ago
# define GZ_SUFFIX ".gz"
#endif
13 years ago
#define SUFFIX_LEN ((int)sizeof(GZ_SUFFIX)-1)
13 years ago
13 years ago
#define BUFLEN 16384
13 years ago
#define MAX_NAME_LEN 1024
13 years ago
#ifdef MAXSEG_64K
# define local static
/* Needed for systems with limitation on stack size. */
#else
# define local
#endif
13 years ago
char *prog;
13 years ago
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[]));
13 years ago
13 years ago
/* ===========================================================================
* Display error message and exit
*/
void error(msg)
13 years ago
const char *msg;
13 years ago
{
fprintf(stderr, "%s: %s\n", prog, msg);
exit(1);
}
/* ===========================================================================
* Compress input to output then close both files.
*/
13 years ago
13 years ago
void gz_compress(in, out)
FILE *in;
gzFile out;
{
local char buf[BUFLEN];
int len;
int err;
13 years ago
#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
13 years ago
for (;;) {
13 years ago
len = (int)fread(buf, 1, sizeof(buf), in);
13 years ago
if (ferror(in)) {
perror("fread");
exit(1);
}
if (len == 0) break;
13 years ago
if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
13 years ago
}
fclose(in);
if (gzclose(out) != Z_OK) error("failed gzclose");
}
13 years ago
#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: */
13 years ago
buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
13 years ago
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 */
13 years ago
/* ===========================================================================
* 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 (;;) {
13 years ago
len = gzread(in, buf, sizeof(buf));
if (len < 0) error (gzerror(in, &err));
if (len == 0) break;
13 years ago
13 years ago
if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
13 years ago
error("failed fwrite");
}
13 years ago
}
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.
*/
13 years ago
void file_compress(file, mode)
13 years ago
char *file;
13 years ago
char *mode;
13 years ago
{
local char outfile[MAX_NAME_LEN];
FILE *in;
gzFile out;
strcpy(outfile, file);
13 years ago
strcat(outfile, GZ_SUFFIX);
13 years ago
in = fopen(file, "rb");
if (in == NULL) {
13 years ago
perror(file);
exit(1);
13 years ago
}
13 years ago
out = gzopen(outfile, mode);
13 years ago
if (out == NULL) {
13 years ago
fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
exit(1);
13 years ago
}
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;
13 years ago
int len = (int)strlen(file);
13 years ago
strcpy(buf, file);
13 years ago
if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
13 years ago
infile = file;
outfile = buf;
outfile[len-3] = '\0';
13 years ago
} else {
13 years ago
outfile = file;
infile = buf;
13 years ago
strcat(infile, GZ_SUFFIX);
13 years ago
}
in = gzopen(infile, "rb");
if (in == NULL) {
13 years ago
fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
exit(1);
13 years ago
}
out = fopen(outfile, "wb");
if (out == NULL) {
13 years ago
perror(file);
exit(1);
13 years ago
}
gz_uncompress(in, out);
unlink(infile);
}
/* ===========================================================================
13 years ago
* Usage: minigzip [-d] [-f] [-h] [-r] [-1 to -9] [files...]
13 years ago
* -d : decompress
* -f : compress with Z_FILTERED
* -h : compress with Z_HUFFMAN_ONLY
13 years ago
* -r : compress with Z_RLE
13 years ago
* -1 to -9 : compression level
13 years ago
*/
13 years ago
int main(argc, argv)
13 years ago
int argc;
char *argv[];
{
int uncompr = 0;
gzFile file;
13 years ago
char outmode[20];
strcpy(outmode, "wb6 ");
13 years ago
prog = argv[0];
argc--, argv++;
13 years ago
while (argc > 0) {
if (strcmp(*argv, "-d") == 0)
13 years ago
uncompr = 1;
13 years ago
else if (strcmp(*argv, "-f") == 0)
13 years ago
outmode[3] = 'f';
13 years ago
else if (strcmp(*argv, "-h") == 0)
13 years ago
outmode[3] = 'h';
else if (strcmp(*argv, "-r") == 0)
outmode[3] = 'R';
13 years ago
else if ((*argv)[0] == '-' && (*argv)[1] >= '1' && (*argv)[1] <= '9' &&
13 years ago
(*argv)[2] == 0)
outmode[2] = (*argv)[1];
13 years ago
else
13 years ago
break;
13 years ago
argc--, argv++;
13 years ago
}
if (argc == 0) {
SET_BINARY_MODE(stdin);
SET_BINARY_MODE(stdout);
13 years ago
if (uncompr) {
file = gzdopen(fileno(stdin), "rb");
13 years ago
if (file == NULL) error("can't gzdopen stdin");
13 years ago
gz_uncompress(file, stdout);
} else {
13 years ago
file = gzdopen(fileno(stdout), outmode);
13 years ago
if (file == NULL) error("can't gzdopen stdout");
13 years ago
gz_compress(stdin, file);
}
13 years ago
} else {
13 years ago
do {
if (uncompr) {
file_uncompress(*argv);
} else {
13 years ago
file_compress(*argv, outmode);
13 years ago
}
} while (argv++, --argc);
13 years ago
}
13 years ago
return 0;
13 years ago
}