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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: infutil.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:49:55  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* inflate_util.c -- data and routines common to blocks and codes
  10.  * Copyright (C) 1995-2002 Mark Adler
  11.  * For conditions of distribution and use, see copyright notice in zlib.h 
  12.  */
  13. #include "zutil.h"
  14. #include "infblock.h"
  15. #include "inftrees.h"
  16. #include "infcodes.h"
  17. #include "infutil.h"
  18. struct inflate_codes_state {int dummy;}; /* for buggy compilers */
  19. /* And'ing with mask[n] masks the lower n bits */
  20. uInt inflate_mask[17] = {
  21.     0x0000,
  22.     0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff,
  23.     0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff
  24. };
  25. /* copy as much as possible from the sliding window to the output area */
  26. int inflate_flush(s, z, r)
  27. inflate_blocks_statef *s;
  28. z_streamp z;
  29. int r;
  30. {
  31.   uInt n;
  32.   Bytef *p;
  33.   Bytef *q;
  34.   /* local copies of source and destination pointers */
  35.   p = z->next_out;
  36.   q = s->read;
  37.   /* compute number of bytes to copy as far as end of window */
  38.   n = (uInt)((q <= s->write ? s->write : s->end) - q);
  39.   if (n > z->avail_out) n = z->avail_out;
  40.   if (n && r == Z_BUF_ERROR) r = Z_OK;
  41.   /* update counters */
  42.   z->avail_out -= n;
  43.   z->total_out += n;
  44.   /* update check information */
  45.   if (s->checkfn != Z_NULL)
  46.     z->adler = s->check = (*s->checkfn)(s->check, q, n);
  47.   /* copy as far as end of window */
  48.   zmemcpy(p, q, n);
  49.   p += n;
  50.   q += n;
  51.   /* see if more to copy at beginning of window */
  52.   if (q == s->end)
  53.   {
  54.     /* wrap pointers */
  55.     q = s->window;
  56.     if (s->write == s->end)
  57.       s->write = s->window;
  58.     /* compute bytes to copy */
  59.     n = (uInt)(s->write - q);
  60.     if (n > z->avail_out) n = z->avail_out;
  61.     if (n && r == Z_BUF_ERROR) r = Z_OK;
  62.     /* update counters */
  63.     z->avail_out -= n;
  64.     z->total_out += n;
  65.     /* update check information */
  66.     if (s->checkfn != Z_NULL)
  67.       z->adler = s->check = (*s->checkfn)(s->check, q, n);
  68.     /* copy */
  69.     zmemcpy(p, q, n);
  70.     p += n;
  71.     q += n;
  72.   }
  73.   /* update pointers */
  74.   z->next_out = p;
  75.   s->read = q;
  76.   /* done */
  77.   return r;
  78. }