example.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:16k
源码类别:

生物技术

开发平台:

C/C++

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