example.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:14k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* example.c -- usage example of the zlib compression library
  2.  * Copyright (C) 1995-1996 Jean-loup Gailly.
  3.  * For conditions of distribution and use, see copyright notice in zlib.h 
  4.  */
  5. /* $Id: example.c,v 1.1 2000/03/31 20:13:11 relyea%netscape.com Exp $ */
  6. #include <stdio.h>
  7. #include "zlib.h"
  8. #ifdef STDC
  9. #  include <string.h>
  10. #  include <stdlib.h>
  11. #else
  12.    extern void exit  OF((int));
  13. #endif
  14. #define CHECK_ERR(err, msg) { 
  15.     if (err != Z_OK) { 
  16.         fprintf(stderr, "%s error: %dn", msg, err); 
  17.         exit(1); 
  18.     } 
  19. }
  20. const char hello[] = "hello, hello!";
  21. /* "hello world" would be more standard, but the repeated "hello"
  22.  * stresses the compression code better, sorry...
  23.  */
  24. const char dictionary[] = "hello";
  25. uLong dictId; /* Adler32 value of the dictionary */
  26. void test_compress      OF((Byte *compr, uLong comprLen,
  27.             Byte *uncompr, uLong uncomprLen));
  28. void test_gzio          OF((const char *out, const char *in, 
  29.             Byte *uncompr, int uncomprLen));
  30. void test_deflate       OF((Byte *compr, uLong comprLen));
  31. void test_inflate       OF((Byte *compr, uLong comprLen,
  32.             Byte *uncompr, uLong uncomprLen));
  33. void test_large_deflate OF((Byte *compr, uLong comprLen,
  34.             Byte *uncompr, uLong uncomprLen));
  35. void test_large_inflate OF((Byte *compr, uLong comprLen,
  36.             Byte *uncompr, uLong uncomprLen));
  37. void test_flush         OF((Byte *compr, uLong comprLen));
  38. void test_sync          OF((Byte *compr, uLong comprLen,
  39.             Byte *uncompr, uLong uncomprLen));
  40. void test_dict_deflate  OF((Byte *compr, uLong comprLen));
  41. void test_dict_inflate  OF((Byte *compr, uLong comprLen,
  42.             Byte *uncompr, uLong uncomprLen));
  43. int  main               OF((int argc, char *argv[]));
  44. /* ===========================================================================
  45.  * Test compress() and uncompress()
  46.  */
  47. void test_compress(compr, comprLen, uncompr, uncomprLen)
  48.     Byte *compr, *uncompr;
  49.     uLong comprLen, uncomprLen;
  50. {
  51.     int err;
  52.     uLong len = strlen(hello)+1;
  53.     err = compress(compr, &comprLen, (const Bytef*)hello, len);
  54.     CHECK_ERR(err, "compress");
  55.     strcpy((char*)uncompr, "garbage");
  56.     err = uncompress(uncompr, &uncomprLen, compr, comprLen);
  57.     CHECK_ERR(err, "uncompress");
  58.     if (strcmp((char*)uncompr, hello)) {
  59.         fprintf(stderr, "bad uncompressn");
  60.     } else {
  61.         printf("uncompress(): %sn", uncompr);
  62.     }
  63. }
  64. /* ===========================================================================
  65.  * Test read/write of .gz files
  66.  */
  67. void test_gzio(out, in, uncompr, uncomprLen)
  68.     const char *out; /* output file */
  69.     const char *in;  /* input file */
  70.     Byte *uncompr;
  71.     int  uncomprLen;
  72. {
  73.     int err;
  74.     int len = strlen(hello)+1;
  75.     gzFile file;
  76.     file = gzopen(out, "wb");
  77.     if (file == NULL) {
  78.         fprintf(stderr, "gzopen errorn");
  79.         exit(1);
  80.     }
  81.     if (gzwrite(file, (const voidp)hello, (unsigned)len) != len) {
  82.         fprintf(stderr, "gzwrite err: %sn", gzerror(file, &err));
  83.     }
  84.     gzclose(file);
  85.     file = gzopen(in, "rb");
  86.     if (file == NULL) {
  87.         fprintf(stderr, "gzopen errorn");
  88.     }
  89.     strcpy((char*)uncompr, "garbage");
  90.     uncomprLen = gzread(file, uncompr, (unsigned)uncomprLen);
  91.     if (uncomprLen != len) {
  92.         fprintf(stderr, "gzread err: %sn", gzerror(file, &err));
  93.     }
  94.     gzclose(file);
  95.     if (strcmp((char*)uncompr, hello)) {
  96.         fprintf(stderr, "bad gzreadn");
  97.     } else {
  98.         printf("gzread(): %sn", uncompr);
  99.     }
  100. }
  101. /* ===========================================================================
  102.  * Test deflate() with small buffers
  103.  */
  104. void test_deflate(compr, comprLen)
  105.     Byte *compr;
  106.     uLong comprLen;
  107. {
  108.     z_stream c_stream; /* compression stream */
  109.     int err;
  110.     int len = strlen(hello)+1;
  111.     c_stream.zalloc = (alloc_func)0;
  112.     c_stream.zfree = (free_func)0;
  113.     c_stream.opaque = (voidpf)0;
  114.     err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
  115.     CHECK_ERR(err, "deflateInit");
  116.     c_stream.next_in  = (Bytef*)hello;
  117.     c_stream.next_out = compr;
  118.     while (c_stream.total_in != (uLong)len && c_stream.total_out < comprLen) {
  119.         c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers */
  120.         err = deflate(&c_stream, Z_NO_FLUSH);
  121.         CHECK_ERR(err, "deflate");
  122.     }
  123.     /* Finish the stream, still forcing small buffers: */
  124.     for (;;) {
  125.         c_stream.avail_out = 1;
  126.         err = deflate(&c_stream, Z_FINISH);
  127.         if (err == Z_STREAM_END) break;
  128.         CHECK_ERR(err, "deflate");
  129.     }
  130.     err = deflateEnd(&c_stream);
  131.     CHECK_ERR(err, "deflateEnd");
  132. }
  133. /* ===========================================================================
  134.  * Test inflate() with small buffers
  135.  */
  136. void test_inflate(compr, comprLen, uncompr, uncomprLen)
  137.     Byte *compr, *uncompr;
  138.     uLong comprLen, uncomprLen;
  139. {
  140.     int err;
  141.     z_stream d_stream; /* decompression stream */
  142.     strcpy((char*)uncompr, "garbage");
  143.     d_stream.zalloc = (alloc_func)0;
  144.     d_stream.zfree = (free_func)0;
  145.     d_stream.opaque = (voidpf)0;
  146.     err = inflateInit(&d_stream);
  147.     CHECK_ERR(err, "inflateInit");
  148.     d_stream.next_in  = compr;
  149.     d_stream.next_out = uncompr;
  150.     while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
  151.         d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */
  152.         err = inflate(&d_stream, Z_NO_FLUSH);
  153.         if (err == Z_STREAM_END) break;
  154.         CHECK_ERR(err, "inflate");
  155.     }
  156.     err = inflateEnd(&d_stream);
  157.     CHECK_ERR(err, "inflateEnd");
  158.     if (strcmp((char*)uncompr, hello)) {
  159.         fprintf(stderr, "bad inflaten");
  160.     } else {
  161.         printf("inflate(): %sn", uncompr);
  162.     }
  163. }
  164. /* ===========================================================================
  165.  * Test deflate() with large buffers and dynamic change of compression level
  166.  */
  167. void test_large_deflate(compr, comprLen, uncompr, uncomprLen)
  168.     Byte *compr, *uncompr;
  169.     uLong comprLen, uncomprLen;
  170. {
  171.     z_stream c_stream; /* compression stream */
  172.     int err;
  173.     c_stream.zalloc = (alloc_func)0;
  174.     c_stream.zfree = (free_func)0;
  175.     c_stream.opaque = (voidpf)0;
  176.     err = deflateInit(&c_stream, Z_BEST_SPEED);
  177.     CHECK_ERR(err, "deflateInit");
  178.     c_stream.next_out = compr;
  179.     c_stream.avail_out = (uInt)comprLen;
  180.     /* At this point, uncompr is still mostly zeroes, so it should compress
  181.      * very well:
  182.      */
  183.     c_stream.next_in = uncompr;
  184.     c_stream.avail_in = (uInt)uncomprLen;
  185.     err = deflate(&c_stream, Z_NO_FLUSH);
  186.     CHECK_ERR(err, "deflate");
  187.     if (c_stream.avail_in != 0) {
  188.         fprintf(stderr, "deflate not greedyn");
  189.     }
  190.     /* Feed in already compressed data and switch to no compression: */
  191.     deflateParams(&c_stream, Z_NO_COMPRESSION, Z_DEFAULT_STRATEGY);
  192.     c_stream.next_in = compr;
  193.     c_stream.avail_in = (uInt)comprLen/2;
  194.     err = deflate(&c_stream, Z_NO_FLUSH);
  195.     CHECK_ERR(err, "deflate");
  196.     /* Switch back to compressing mode: */
  197.     deflateParams(&c_stream, Z_BEST_COMPRESSION, Z_FILTERED);
  198.     c_stream.next_in = uncompr;
  199.     c_stream.avail_in = (uInt)uncomprLen;
  200.     err = deflate(&c_stream, Z_NO_FLUSH);
  201.     CHECK_ERR(err, "deflate");
  202.     err = deflate(&c_stream, Z_FINISH);
  203.     if (err != Z_STREAM_END) {
  204.         fprintf(stderr, "deflate should report Z_STREAM_ENDn");
  205.     }
  206.     err = deflateEnd(&c_stream);
  207.     CHECK_ERR(err, "deflateEnd");
  208. }
  209. /* ===========================================================================
  210.  * Test inflate() with large buffers
  211.  */
  212. void test_large_inflate(compr, comprLen, uncompr, uncomprLen)
  213.     Byte *compr, *uncompr;
  214.     uLong comprLen, uncomprLen;
  215. {
  216.     int err;
  217.     z_stream d_stream; /* decompression stream */
  218.     strcpy((char*)uncompr, "garbage");
  219.     d_stream.zalloc = (alloc_func)0;
  220.     d_stream.zfree = (free_func)0;
  221.     d_stream.opaque = (voidpf)0;
  222.     err = inflateInit(&d_stream);
  223.     CHECK_ERR(err, "inflateInit");
  224.     d_stream.next_in  = compr;
  225.     d_stream.avail_in = (uInt)comprLen;
  226.     for (;;) {
  227.         d_stream.next_out = uncompr;            /* discard the output */
  228. d_stream.avail_out = (uInt)uncomprLen;
  229.         err = inflate(&d_stream, Z_NO_FLUSH);
  230.         if (err == Z_STREAM_END) break;
  231.         CHECK_ERR(err, "large inflate");
  232.     }
  233.     err = inflateEnd(&d_stream);
  234.     CHECK_ERR(err, "inflateEnd");
  235.     if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
  236.         fprintf(stderr, "bad large inflate: %ldn", d_stream.total_out);
  237.     } else {
  238.         printf("large_inflate(): OKn");
  239.     }
  240. }
  241. /* ===========================================================================
  242.  * Test deflate() with full flush
  243.  */
  244. void test_flush(compr, comprLen)
  245.     Byte *compr;
  246.     uLong comprLen;
  247. {
  248.     z_stream c_stream; /* compression stream */
  249.     int err;
  250.     int len = strlen(hello)+1;
  251.     c_stream.zalloc = (alloc_func)0;
  252.     c_stream.zfree = (free_func)0;
  253.     c_stream.opaque = (voidpf)0;
  254.     err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
  255.     CHECK_ERR(err, "deflateInit");
  256.     c_stream.next_in  = (Bytef*)hello;
  257.     c_stream.next_out = compr;
  258.     c_stream.avail_in = 3;
  259.     c_stream.avail_out = (uInt)comprLen;
  260.     err = deflate(&c_stream, Z_FULL_FLUSH);
  261.     CHECK_ERR(err, "deflate");
  262.     compr[3]++; /* force an error in first compressed block */
  263.     c_stream.avail_in = len - 3;
  264.     err = deflate(&c_stream, Z_FINISH);
  265.     if (err != Z_STREAM_END) {
  266.         CHECK_ERR(err, "deflate");
  267.     }
  268.     err = deflateEnd(&c_stream);
  269.     CHECK_ERR(err, "deflateEnd");
  270. }
  271. /* ===========================================================================
  272.  * Test inflateSync()
  273.  */
  274. void test_sync(compr, comprLen, uncompr, uncomprLen)
  275.     Byte *compr, *uncompr;
  276.     uLong comprLen, uncomprLen;
  277. {
  278.     int err;
  279.     z_stream d_stream; /* decompression stream */
  280.     strcpy((char*)uncompr, "garbage");
  281.     d_stream.zalloc = (alloc_func)0;
  282.     d_stream.zfree = (free_func)0;
  283.     d_stream.opaque = (voidpf)0;
  284.     err = inflateInit(&d_stream);
  285.     CHECK_ERR(err, "inflateInit");
  286.     d_stream.next_in  = compr;
  287.     d_stream.next_out = uncompr;
  288.     d_stream.avail_in = 2; /* just read the zlib header */
  289.     d_stream.avail_out = (uInt)uncomprLen;
  290.     inflate(&d_stream, Z_NO_FLUSH);
  291.     CHECK_ERR(err, "inflate");
  292.     d_stream.avail_in = (uInt)comprLen-2;   /* read all compressed data */
  293.     err = inflateSync(&d_stream);           /* but skip the damaged part */
  294.     CHECK_ERR(err, "inflateSync");
  295.     err = inflate(&d_stream, Z_FINISH);
  296.     if (err != Z_DATA_ERROR) {
  297.         fprintf(stderr, "inflate should report DATA_ERRORn");
  298.         /* Because of incorrect adler32 */
  299.     }
  300.     err = inflateEnd(&d_stream);
  301.     CHECK_ERR(err, "inflateEnd");
  302.     printf("after inflateSync(): hel%sn", uncompr);
  303. }
  304. /* ===========================================================================
  305.  * Test deflate() with preset dictionary
  306.  */
  307. void test_dict_deflate(compr, comprLen)
  308.     Byte *compr;
  309.     uLong comprLen;
  310. {
  311.     z_stream c_stream; /* compression stream */
  312.     int err;
  313.     c_stream.zalloc = (alloc_func)0;
  314.     c_stream.zfree = (free_func)0;
  315.     c_stream.opaque = (voidpf)0;
  316.     err = deflateInit(&c_stream, Z_BEST_COMPRESSION);
  317.     CHECK_ERR(err, "deflateInit");
  318.     err = deflateSetDictionary(&c_stream,
  319.        (const Bytef*)dictionary, sizeof(dictionary));
  320.     CHECK_ERR(err, "deflateSetDictionary");
  321.     dictId = c_stream.adler;
  322.     c_stream.next_out = compr;
  323.     c_stream.avail_out = (uInt)comprLen;
  324.     c_stream.next_in = (Bytef*)hello;
  325.     c_stream.avail_in = (uInt)strlen(hello)+1;
  326.     err = deflate(&c_stream, Z_FINISH);
  327.     if (err != Z_STREAM_END) {
  328.         fprintf(stderr, "deflate should report Z_STREAM_ENDn");
  329.     }
  330.     err = deflateEnd(&c_stream);
  331.     CHECK_ERR(err, "deflateEnd");
  332. }
  333. /* ===========================================================================
  334.  * Test inflate() with a preset dictionary
  335.  */
  336. void test_dict_inflate(compr, comprLen, uncompr, uncomprLen)
  337.     Byte *compr, *uncompr;
  338.     uLong comprLen, uncomprLen;
  339. {
  340.     int err;
  341.     z_stream d_stream; /* decompression stream */
  342.     strcpy((char*)uncompr, "garbage");
  343.     d_stream.zalloc = (alloc_func)0;
  344.     d_stream.zfree = (free_func)0;
  345.     d_stream.opaque = (voidpf)0;
  346.     err = inflateInit(&d_stream);
  347.     CHECK_ERR(err, "inflateInit");
  348.     d_stream.next_in  = compr;
  349.     d_stream.avail_in = (uInt)comprLen;
  350.     d_stream.next_out = uncompr;
  351.     d_stream.avail_out = (uInt)uncomprLen;
  352.     for (;;) {
  353.         err = inflate(&d_stream, Z_NO_FLUSH);
  354.         if (err == Z_STREAM_END) break;
  355. if (err == Z_NEED_DICT) {
  356.     if (d_stream.adler != dictId) {
  357. fprintf(stderr, "unexpected dictionary");
  358. exit(1);
  359.     }
  360.     err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
  361.        sizeof(dictionary));
  362. }
  363.         CHECK_ERR(err, "inflate with dict");
  364.     }
  365.     err = inflateEnd(&d_stream);
  366.     CHECK_ERR(err, "inflateEnd");
  367.     if (strcmp((char*)uncompr, hello)) {
  368.         fprintf(stderr, "bad inflate with dictn");
  369.     } else {
  370.         printf("inflate with dictionary: %sn", uncompr);
  371.     }
  372. }
  373. /* ===========================================================================
  374.  * Usage:  example [output.gz  [input.gz]]
  375.  */
  376. int main(argc, argv)
  377.     int argc;
  378.     char *argv[];
  379. {
  380.     Byte *compr, *uncompr;
  381.     uLong comprLen = 10000*sizeof(int); /* don't overflow on MSDOS */
  382.     uLong uncomprLen = comprLen;
  383.     if (zlibVersion()[0] != ZLIB_VERSION[0]) {
  384.         fprintf(stderr, "incompatible zlib versionn");
  385.         exit(1);
  386.     } else if (strcmp(zlibVersion(), ZLIB_VERSION) != 0) {
  387.         fprintf(stderr, "warning: different zlib versionn");
  388.     }
  389.     compr    = (Byte*)calloc((uInt)comprLen, 1);
  390.     uncompr  = (Byte*)calloc((uInt)uncomprLen, 1);
  391.     /* compr and uncompr are cleared to avoid reading uninitialized
  392.      * data and to ensure that uncompr compresses well.
  393.      */
  394.     if (compr == Z_NULL || uncompr == Z_NULL) {
  395.         printf("out of memoryn");
  396. exit(1);
  397.     }
  398.     test_compress(compr, comprLen, uncompr, uncomprLen);
  399.     test_gzio((argc > 1 ? argv[1] : "foo.gz"),
  400.               (argc > 2 ? argv[2] : "foo.gz"),
  401.       uncompr, (int)uncomprLen);
  402.     test_deflate(compr, comprLen);
  403.     test_inflate(compr, comprLen, uncompr, uncomprLen);
  404.     test_large_deflate(compr, comprLen, uncompr, uncomprLen);
  405.     test_large_inflate(compr, comprLen, uncompr, uncomprLen);
  406.     test_flush(compr, comprLen);
  407.     test_sync(compr, comprLen, uncompr, uncomprLen);
  408.     test_dict_deflate(compr, comprLen);
  409.     test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
  410.     exit(0);
  411.     return 0; /* to avoid warning */
  412. }