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.

291 lines
7.2 KiB

13 years ago
/* example.c -- usage example of the zlib compression library
* Copyright (C) 1995 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
13 years ago
/* $Id: example.c,v 1.9 1995/05/03 17:27:09 jloup Exp $ */
13 years ago
#include <stdio.h>
#include "zlib.h"
13 years ago
#ifdef STDC
# include <string.h>
#endif
13 years ago
#ifndef __GO32__
13 years ago
extern void exit __P((int));
13 years ago
#endif
13 years ago
13 years ago
#define BUFLEN 4096
#define local static
/* For MSDOS and other systems with limitation on stack size. For Unix,
#define local
works also.
*/
#define CHECK_ERR(err, msg) { \
if (err != Z_OK) { \
fprintf(stderr, "%s error: %d\n", msg, err); \
13 years ago
exit(1); \
13 years ago
} \
}
char *hello = "hello world";
13 years ago
void test_compress __P((void));
void test_gzio __P((char *out, char *in));
void test_deflate __P((Byte compr[]));
void test_inflate __P((Byte compr[]));
void main __P((int argc, char *argv[]));
13 years ago
/* ===========================================================================
* Test compress() and uncompress()
*/
void test_compress()
{
local Byte compr[BUFLEN];
uLong comprLen = sizeof(compr);
local Byte uncompr[BUFLEN];
uLong uncomprLen = sizeof(uncompr);
int err;
uLong len = strlen(hello)+1;
13 years ago
err = compress(compr, &comprLen, (Byte*)hello, len);
13 years ago
CHECK_ERR(err, "compress");
13 years ago
strcpy((char*)uncompr, "garbage");
13 years ago
err = uncompress(uncompr, &uncomprLen, compr, comprLen);
CHECK_ERR(err, "uncompress");
13 years ago
if (strcmp((char*)uncompr, hello)) {
13 years ago
fprintf(stderr, "bad uncompress\n");
13 years ago
} else {
13 years ago
printf("uncompress(): %s\n", uncompr);
13 years ago
}
}
/* ===========================================================================
* Test read/write of .gz files
*/
void test_gzio(out, in)
char *out; /* output file */
char *in; /* input file */
{
local Byte uncompr[BUFLEN];
13 years ago
int uncomprLen = sizeof(uncompr);
13 years ago
int err;
int len = strlen(hello)+1;
gzFile file;
file = gzopen(out, "wb");
if (file == NULL) {
13 years ago
fprintf(stderr, "gzopen error\n");
exit(1);
13 years ago
}
if (gzwrite(file, hello, len) != len) {
13 years ago
fprintf(stderr, "gzwrite err: %s\n", gzerror(file, &err));
13 years ago
}
gzclose(file);
file = gzopen(in, "rb");
if (file == NULL) {
13 years ago
fprintf(stderr, "gzopen error\n");
13 years ago
}
13 years ago
strcpy((char*)uncompr, "garbage");
13 years ago
uncomprLen = gzread(file, uncompr, uncomprLen);
if (uncomprLen != len) {
13 years ago
fprintf(stderr, "gzread err: %s\n", gzerror(file, &err));
13 years ago
}
gzclose(file);
13 years ago
if (strcmp((char*)uncompr, hello)) {
13 years ago
fprintf(stderr, "bad gzread\n");
13 years ago
} else {
13 years ago
printf("gzread(): %s\n", uncompr);
13 years ago
}
}
/* ===========================================================================
13 years ago
* Test deflate() with small buffers
13 years ago
*/
13 years ago
void test_deflate(compr)
13 years ago
Byte compr[];
{
z_stream c_stream; /* compression stream */
int err;
int len = strlen(hello)+1;
c_stream.zalloc = (alloc_func)0;
c_stream.zfree = (free_func)0;
err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
CHECK_ERR(err, "deflateInit");
c_stream.next_in = (Byte*)hello;
c_stream.next_out = compr;
13 years ago
while (c_stream.total_in != (uLong)len) {
13 years ago
c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
err = deflate(&c_stream, Z_NO_FLUSH);
CHECK_ERR(err, "deflate");
13 years ago
}
/* Finish the stream, still forcing small buffers: */
13 years ago
for (;;) {
13 years ago
c_stream.avail_out = 1;
err = deflate(&c_stream, Z_FINISH);
if (err == Z_STREAM_END) break;
CHECK_ERR(err, "deflate");
13 years ago
}
13 years ago
err = deflateEnd(&c_stream);
CHECK_ERR(err, "deflateEnd");
}
/* ===========================================================================
* Test inflate() with small buffers
*/
void test_inflate(compr)
Byte compr[];
{
local Byte uncompr[BUFLEN];
int err;
z_stream d_stream; /* decompression stream */
13 years ago
strcpy((char*)uncompr, "garbage");
13 years ago
d_stream.zalloc = (alloc_func)0;
d_stream.zfree = (free_func)0;
err = inflateInit(&d_stream);
CHECK_ERR(err, "inflateInit");
d_stream.next_in = compr;
d_stream.next_out = uncompr;
for (;;) {
13 years ago
d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
err = inflate(&d_stream, Z_NO_FLUSH);
if (err == Z_STREAM_END) break;
CHECK_ERR(err, "inflate");
13 years ago
}
err = inflateEnd(&d_stream);
CHECK_ERR(err, "inflateEnd");
13 years ago
if (strcmp((char*)uncompr, hello)) {
13 years ago
fprintf(stderr, "bad inflate\n");
13 years ago
} else {
13 years ago
printf("inflate(): %s\n", uncompr);
13 years ago
}
}
13 years ago
/* ===========================================================================
* Test deflate() with full flush
*/
void test_flush(compr)
Byte compr[];
{
z_stream c_stream; /* compression stream */
int err;
int len = strlen(hello)+1;
c_stream.zalloc = (alloc_func)0;
c_stream.zfree = (free_func)0;
err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
CHECK_ERR(err, "deflateInit");
c_stream.next_in = (Byte*)hello;
c_stream.next_out = compr;
c_stream.avail_in = 3;
c_stream.avail_out = BUFLEN;
err = deflate(&c_stream, Z_FULL_FLUSH);
CHECK_ERR(err, "deflate");
compr[3]++; /* force an error in first compressed block */
c_stream.avail_in = len - 3;
err = deflate(&c_stream, Z_FINISH);
if (err != Z_STREAM_END) {
13 years ago
CHECK_ERR(err, "deflate");
13 years ago
}
err = deflateEnd(&c_stream);
CHECK_ERR(err, "deflateEnd");
}
/* ===========================================================================
* Test inflateSync()
*/
void test_sync(compr)
Byte compr[];
{
local Byte uncompr[BUFLEN];
int err;
z_stream d_stream; /* decompression stream */
strcpy((char*)uncompr, "garbage");
d_stream.zalloc = (alloc_func)0;
d_stream.zfree = (free_func)0;
err = inflateInit(&d_stream);
CHECK_ERR(err, "inflateInit");
d_stream.next_in = compr;
d_stream.next_out = uncompr;
d_stream.avail_in = 2; /* just read the zlib header */
d_stream.avail_out = sizeof(uncompr);
inflate(&d_stream, Z_NO_FLUSH);
CHECK_ERR(err, "inflate");
d_stream.avail_in = BUFLEN-2; /* let inflate read all compressed data */
err = inflateSync(&d_stream); /* skip the damaged part */
CHECK_ERR(err, "inflateSync");
err = inflate(&d_stream, Z_FINISH);
if (err != Z_DATA_ERROR) {
fprintf(stderr, "inflate should report DATA_ERROR\n");
13 years ago
/* Because of incorrect adler32 */
13 years ago
}
err = inflateEnd(&d_stream);
CHECK_ERR(err, "inflateEnd");
13 years ago
printf("after inflateSync(): hel%s\n", uncompr);
13 years ago
}
13 years ago
/* ===========================================================================
* Usage: example [output.gz [input.gz]]
*/
void main(argc, argv)
int argc;
char *argv[];
{
local Byte compr[BUFLEN];
if (zlib_version[0] != ZLIB_VERSION[0]) {
13 years ago
fprintf(stderr, "incompatible zlib version\n");
exit(1);
13 years ago
} else if (strcmp(zlib_version, ZLIB_VERSION) != 0) {
13 years ago
fprintf(stderr, "warning: different zlib version\n");
13 years ago
}
test_compress();
test_gzio((argc > 1 ? argv[1] : "foo.gz"),
13 years ago
(argc > 2 ? argv[2] : "foo.gz"));
13 years ago
13 years ago
test_deflate(compr);
13 years ago
test_inflate(compr);
13 years ago
test_flush(compr);
test_sync(compr);
13 years ago
exit(0);
}