zlib/minigzip.c

387 lines
9.4 KiB
C
Raw Normal View History

2011-09-10 09:36:31 +04:00
/* minigzip.c -- simulate gzip using the zlib compression library
2011-09-10 10:26:49 +04:00
* Copyright (C) 1995-2006, 2010 Jean-loup Gailly.
2011-09-10 10:21:57 +04:00
* For conditions of distribution and use, see copyright notice in zlib.h
2011-09-10 09:36:31 +04:00
*/
/*
* 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.
*/
2011-09-10 10:17:33 +04:00
/* @(#) $Id$ */
2011-09-10 09:36:31 +04:00
#include "zlib.h"
2011-09-10 10:25:27 +04:00
#include <stdio.h>
2011-09-10 09:36:31 +04:00
2011-09-10 10:03:14 +04:00
#ifdef STDC
# include <string.h>
2011-09-10 10:11:37 +04:00
# include <stdlib.h>
2011-09-10 10:03:14 +04:00
#endif
2011-09-10 10:14:39 +04:00
2011-09-10 10:19:55 +04:00
#ifdef USE_MMAP
# include <sys/types.h>
# include <sys/mman.h>
# include <sys/stat.h>
#endif
2011-09-10 09:52:17 +04:00
2011-09-10 10:23:14 +04:00
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(__CYGWIN__)
2011-09-10 10:03:14 +04:00
# include <fcntl.h>
# include <io.h>
2011-09-10 09:36:31 +04:00
# define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
#else
# define SET_BINARY_MODE(file)
#endif
2011-09-10 10:09:18 +04:00
#ifdef VMS
2011-09-10 10:14:39 +04:00
# define unlink delete
2011-09-10 10:09:18 +04:00
# define GZ_SUFFIX "-gz"
2011-09-10 10:17:02 +04:00
#endif
#ifdef RISCOS
# define unlink remove
# define GZ_SUFFIX "-gz"
# define fileno(file) file->__file
#endif
2011-09-10 10:20:29 +04:00
#if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os
# include <unix.h> /* for fileno */
#endif
2011-09-10 10:17:02 +04:00
2011-09-10 10:19:21 +04:00
#ifndef WIN32 /* unlink already in stdio.h for WIN32 */
extern int unlink OF((const char *));
#endif
2011-09-10 10:26:49 +04:00
#if defined(UNDER_CE) && defined(NO_ERRNO_H)
# include <windows.h>
# define perror(s) pwinerror(s)
/* Map the Windows error number in ERROR to a locale-dependent error
message string and return a pointer to it. Typically, the values
for ERROR come from GetLastError.
The string pointed to shall not be modified by the application,
but may be overwritten by a subsequent call to strwinerror
The strwinerror function does not change the current setting
of GetLastError. */
static char *strwinerror (error)
DWORD error;
{
static char buf[1024];
wchar_t *msgbuf;
DWORD lasterr = GetLastError();
DWORD chars = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM
2011-09-10 10:27:17 +04:00
| FORMAT_MESSAGE_ALLOCATE_BUFFER,
NULL,
error,
0, /* Default language */
(LPVOID)&msgbuf,
0,
NULL);
2011-09-10 10:26:49 +04:00
if (chars != 0) {
/* If there is an \r\n appended, zap it. */
if (chars >= 2
&& msgbuf[chars - 2] == '\r' && msgbuf[chars - 1] == '\n') {
chars -= 2;
msgbuf[chars] = 0;
}
if (chars > sizeof (buf) - 1) {
chars = sizeof (buf) - 1;
msgbuf[chars] = 0;
}
wcstombs(buf, msgbuf, chars + 1);
LocalFree(msgbuf);
}
else {
sprintf(buf, "unknown win32 error (%ld)", error);
}
SetLastError(lasterr);
return buf;
}
static void pwinerror (s)
const char *s;
{
if (s && *s)
fprintf(stderr, "%s: %s\n", s, strwinerror(GetLastError ()));
else
fprintf(stderr, "%s\n", strwinerror(GetLastError ()));
}
#endif /* UNDER_CE && NO_ERRNO_H */
2011-09-10 10:17:02 +04:00
#ifndef GZ_SUFFIX
2011-09-10 10:09:18 +04:00
# define GZ_SUFFIX ".gz"
#endif
2011-09-10 10:22:37 +04:00
#define SUFFIX_LEN (sizeof(GZ_SUFFIX)-1)
2011-09-10 10:09:18 +04:00
2011-09-10 10:19:55 +04:00
#define BUFLEN 16384
2011-09-10 09:36:31 +04:00
#define MAX_NAME_LEN 1024
2011-09-10 10:17:33 +04:00
#ifdef MAXSEG_64K
# define local static
/* Needed for systems with limitation on stack size. */
#else
# define local
#endif
2011-09-10 09:36:31 +04:00
char *prog;
2011-09-10 10:19:55 +04:00
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[]));
2011-09-10 10:03:14 +04:00
2011-09-10 09:36:31 +04:00
/* ===========================================================================
* Display error message and exit
*/
void error(msg)
2011-09-10 10:14:39 +04:00
const char *msg;
2011-09-10 09:36:31 +04:00
{
fprintf(stderr, "%s: %s\n", prog, msg);
exit(1);
}
/* ===========================================================================
* Compress input to output then close both files.
*/
2011-09-10 10:19:55 +04:00
2011-09-10 09:36:31 +04:00
void gz_compress(in, out)
FILE *in;
gzFile out;
{
local char buf[BUFLEN];
int len;
int err;
2011-09-10 10:19:55 +04:00
#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
2011-09-10 09:36:31 +04:00
for (;;) {
2011-09-10 10:22:10 +04:00
len = (int)fread(buf, 1, sizeof(buf), in);
2011-09-10 10:08:07 +04:00
if (ferror(in)) {
perror("fread");
exit(1);
}
if (len == 0) break;
2011-09-10 10:14:39 +04:00
if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
2011-09-10 09:36:31 +04:00
}
fclose(in);
if (gzclose(out) != Z_OK) error("failed gzclose");
}
2011-09-10 10:19:55 +04:00
#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: */
2011-09-10 10:21:57 +04:00
buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
2011-09-10 10:19:55 +04:00
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 */
2011-09-10 09:36:31 +04:00
/* ===========================================================================
* 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 (;;) {
2011-09-10 10:08:07 +04:00
len = gzread(in, buf, sizeof(buf));
if (len < 0) error (gzerror(in, &err));
if (len == 0) break;
2011-09-10 09:36:31 +04:00
2011-09-10 10:14:39 +04:00
if ((int)fwrite(buf, 1, (unsigned)len, out) != len) {
2011-09-10 10:21:57 +04:00
error("failed fwrite");
}
2011-09-10 09:36:31 +04:00
}
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.
*/
2011-09-10 10:18:57 +04:00
void file_compress(file, mode)
2011-09-10 09:36:31 +04:00
char *file;
2011-09-10 10:18:57 +04:00
char *mode;
2011-09-10 09:36:31 +04:00
{
local char outfile[MAX_NAME_LEN];
FILE *in;
gzFile out;
strcpy(outfile, file);
2011-09-10 10:09:18 +04:00
strcat(outfile, GZ_SUFFIX);
2011-09-10 09:36:31 +04:00
in = fopen(file, "rb");
if (in == NULL) {
2011-09-10 10:08:07 +04:00
perror(file);
exit(1);
2011-09-10 09:36:31 +04:00
}
2011-09-10 10:18:57 +04:00
out = gzopen(outfile, mode);
2011-09-10 09:36:31 +04:00
if (out == NULL) {
2011-09-10 10:08:07 +04:00
fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
exit(1);
2011-09-10 09:36:31 +04:00
}
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;
2011-09-10 10:22:37 +04:00
uInt len = (uInt)strlen(file);
2011-09-10 09:36:31 +04:00
strcpy(buf, file);
2011-09-10 10:09:18 +04:00
if (len > SUFFIX_LEN && strcmp(file+len-SUFFIX_LEN, GZ_SUFFIX) == 0) {
2011-09-10 10:08:07 +04:00
infile = file;
outfile = buf;
outfile[len-3] = '\0';
2011-09-10 09:36:31 +04:00
} else {
2011-09-10 10:08:07 +04:00
outfile = file;
infile = buf;
2011-09-10 10:09:18 +04:00
strcat(infile, GZ_SUFFIX);
2011-09-10 09:36:31 +04:00
}
in = gzopen(infile, "rb");
if (in == NULL) {
2011-09-10 10:08:07 +04:00
fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
exit(1);
2011-09-10 09:36:31 +04:00
}
out = fopen(outfile, "wb");
if (out == NULL) {
2011-09-10 10:08:07 +04:00
perror(file);
exit(1);
2011-09-10 09:36:31 +04:00
}
gz_uncompress(in, out);
unlink(infile);
}
/* ===========================================================================
2011-09-10 10:21:57 +04:00
* Usage: minigzip [-d] [-f] [-h] [-r] [-1 to -9] [files...]
2011-09-10 10:17:33 +04:00
* -d : decompress
* -f : compress with Z_FILTERED
* -h : compress with Z_HUFFMAN_ONLY
2011-09-10 10:21:57 +04:00
* -r : compress with Z_RLE
2011-09-10 10:17:33 +04:00
* -1 to -9 : compression level
2011-09-10 09:36:31 +04:00
*/
2011-09-10 10:09:18 +04:00
int main(argc, argv)
2011-09-10 09:36:31 +04:00
int argc;
char *argv[];
{
int uncompr = 0;
gzFile file;
2011-09-10 10:17:33 +04:00
char outmode[20];
strcpy(outmode, "wb6 ");
2011-09-10 09:36:31 +04:00
prog = argv[0];
argc--, argv++;
2011-09-10 10:17:33 +04:00
while (argc > 0) {
if (strcmp(*argv, "-d") == 0)
2011-09-10 10:21:57 +04:00
uncompr = 1;
2011-09-10 10:17:33 +04:00
else if (strcmp(*argv, "-f") == 0)
2011-09-10 10:21:57 +04:00
outmode[3] = 'f';
2011-09-10 10:17:33 +04:00
else if (strcmp(*argv, "-h") == 0)
2011-09-10 10:21:57 +04:00
outmode[3] = 'h';
else if (strcmp(*argv, "-r") == 0)
outmode[3] = 'R';
2011-09-10 10:17:33 +04:00
else if ((*argv)[0] == '-' && (*argv)[1] >= '1' && (*argv)[1] <= '9' &&
2011-09-10 10:21:57 +04:00
(*argv)[2] == 0)
outmode[2] = (*argv)[1];
2011-09-10 10:17:33 +04:00
else
2011-09-10 10:21:57 +04:00
break;
2011-09-10 10:17:33 +04:00
argc--, argv++;
2011-09-10 09:36:31 +04:00
}
2011-09-10 10:24:43 +04:00
if (outmode[3] == ' ')
outmode[3] = 0;
2011-09-10 09:36:31 +04:00
if (argc == 0) {
SET_BINARY_MODE(stdin);
SET_BINARY_MODE(stdout);
2011-09-10 10:08:07 +04:00
if (uncompr) {
file = gzdopen(fileno(stdin), "rb");
2011-09-10 09:36:31 +04:00
if (file == NULL) error("can't gzdopen stdin");
2011-09-10 10:08:07 +04:00
gz_uncompress(file, stdout);
} else {
2011-09-10 10:17:33 +04:00
file = gzdopen(fileno(stdout), outmode);
2011-09-10 09:36:31 +04:00
if (file == NULL) error("can't gzdopen stdout");
2011-09-10 10:08:07 +04:00
gz_compress(stdin, file);
}
2011-09-10 09:36:31 +04:00
} else {
2011-09-10 10:08:07 +04:00
do {
if (uncompr) {
file_uncompress(*argv);
} else {
2011-09-10 10:18:57 +04:00
file_compress(*argv, outmode);
2011-09-10 10:08:07 +04:00
}
} while (argv++, --argc);
2011-09-10 09:36:31 +04:00
}
2011-09-10 10:21:57 +04:00
return 0;
2011-09-10 09:36:31 +04:00
}