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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: infblock.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:48:31  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* infblock.c -- interpret and process block types to last block
  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. /* simplify the use of the inflate_huft type with some defines */
  20. #define exop word.what.Exop
  21. #define bits word.what.Bits
  22. /* Table for deflate from PKZIP's appnote.txt. */
  23. local const uInt border[] = { /* Order of the bit length code lengths */
  24.         16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};
  25. /*
  26.    Notes beyond the 1.93a appnote.txt:
  27.    1. Distance pointers never point before the beginning of the output
  28.       stream.
  29.    2. Distance pointers can point back across blocks, up to 32k away.
  30.    3. There is an implied maximum of 7 bits for the bit length table and
  31.       15 bits for the actual data.
  32.    4. If only one code exists, then it is encoded using one bit.  (Zero
  33.       would be more efficient, but perhaps a little confusing.)  If two
  34.       codes exist, they are coded using one bit each (0 and 1).
  35.    5. There is no way of sending zero distance codes--a dummy must be
  36.       sent if there are none.  (History: a pre 2.0 version of PKZIP would
  37.       store blocks with no distance codes, but this was discovered to be
  38.       too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
  39.       zero distance codes, which is sent as one code of zero bits in
  40.       length.
  41.    6. There are up to 286 literal/length codes.  Code 256 represents the
  42.       end-of-block.  Note however that the static length tree defines
  43.       288 codes just to fill out the Huffman codes.  Codes 286 and 287
  44.       cannot be used though, since there is no length base or extra bits
  45.       defined for them.  Similarily, there are up to 30 distance codes.
  46.       However, static trees define 32 codes (all 5 bits) to fill out the
  47.       Huffman codes, but the last two had better not show up in the data.
  48.    7. Unzip can check dynamic Huffman blocks for complete code sets.
  49.       The exception is that a single code would not be complete (see #4).
  50.    8. The five bits following the block type is really the number of
  51.       literal codes sent minus 257.
  52.    9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
  53.       (1+6+6).  Therefore, to output three times the length, you output
  54.       three codes (1+1+1), whereas to output four times the same length,
  55.       you only need two codes (1+3).  Hmm.
  56.   10. In the tree reconstruction algorithm, Code = Code + Increment
  57.       only if BitLength(i) is not zero.  (Pretty obvious.)
  58.   11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  59.   12. Note: length code 284 can represent 227-258, but length code 285
  60.       really is 258.  The last length deserves its own, short code
  61.       since it gets used a lot in very redundant files.  The length
  62.       258 is special since 258 - 3 (the min match length) is 255.
  63.   13. The literal/length and distance code bit lengths are read as a
  64.       single stream of lengths.  It is possible (and advantageous) for
  65.       a repeat code (16, 17, or 18) to go across the boundary between
  66.       the two sets of lengths.
  67.  */
  68. void inflate_blocks_reset(s, z, c)
  69. inflate_blocks_statef *s;
  70. z_streamp z;
  71. uLongf *c;
  72. {
  73.   if (c != Z_NULL)
  74.     *c = s->check;
  75.   if (s->mode == BTREE || s->mode == DTREE)
  76.     ZFREE(z, s->sub.trees.blens);
  77.   if (s->mode == CODES)
  78.     inflate_codes_free(s->sub.decode.codes, z);
  79.   s->mode = TYPE;
  80.   s->bitk = 0;
  81.   s->bitb = 0;
  82.   s->read = s->write = s->window;
  83.   if (s->checkfn != Z_NULL)
  84.     z->adler = s->check = (*s->checkfn)(0L, (const Bytef *)Z_NULL, 0);
  85.   Tracev((stderr, "inflate:   blocks resetn"));
  86. }
  87. inflate_blocks_statef *inflate_blocks_new(z, c, w)
  88. z_streamp z;
  89. check_func c;
  90. uInt w;
  91. {
  92.   inflate_blocks_statef *s;
  93.   if ((s = (inflate_blocks_statef *)ZALLOC
  94.        (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
  95.     return s;
  96.   if ((s->hufts =
  97.        (inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL)
  98.   {
  99.     ZFREE(z, s);
  100.     return Z_NULL;
  101.   }
  102.   if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
  103.   {
  104.     ZFREE(z, s->hufts);
  105.     ZFREE(z, s);
  106.     return Z_NULL;
  107.   }
  108.   s->end = s->window + w;
  109.   s->checkfn = c;
  110.   s->mode = TYPE;
  111.   Tracev((stderr, "inflate:   blocks allocatedn"));
  112.   inflate_blocks_reset(s, z, Z_NULL);
  113.   return s;
  114. }
  115. int inflate_blocks(s, z, r)
  116. inflate_blocks_statef *s;
  117. z_streamp z;
  118. int r;
  119. {
  120.   uInt t;               /* temporary storage */
  121.   uLong b;              /* bit buffer */
  122.   uInt k;               /* bits in bit buffer */
  123.   Bytef *p;             /* input data pointer */
  124.   uInt n;               /* bytes available there */
  125.   Bytef *q;             /* output window write pointer */
  126.   uInt m;               /* bytes to end of window or read pointer */
  127.   /* copy input/output information to locals (UPDATE macro restores) */
  128.   LOAD
  129.   /* process input based on current state */
  130.   while (1) switch (s->mode)
  131.   {
  132.     case TYPE:
  133.       NEEDBITS(3)
  134.       t = (uInt)b & 7;
  135.       s->last = t & 1;
  136.       switch (t >> 1)
  137.       {
  138.         case 0:                         /* stored */
  139.           Tracev((stderr, "inflate:     stored block%sn",
  140.                  s->last ? " (last)" : ""));
  141.           DUMPBITS(3)
  142.           t = k & 7;                    /* go to byte boundary */
  143.           DUMPBITS(t)
  144.           s->mode = LENS;               /* get length of stored block */
  145.           break;
  146.         case 1:                         /* fixed */
  147.           Tracev((stderr, "inflate:     fixed codes block%sn",
  148.                  s->last ? " (last)" : ""));
  149.           {
  150.             uInt bl, bd;
  151.             inflate_huft *tl, *td;
  152.             inflate_trees_fixed(&bl, &bd, &tl, &td, z);
  153.             s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
  154.             if (s->sub.decode.codes == Z_NULL)
  155.             {
  156.               r = Z_MEM_ERROR;
  157.               LEAVE
  158.             }
  159.           }
  160.           DUMPBITS(3)
  161.           s->mode = CODES;
  162.           break;
  163.         case 2:                         /* dynamic */
  164.           Tracev((stderr, "inflate:     dynamic codes block%sn",
  165.                  s->last ? " (last)" : ""));
  166.           DUMPBITS(3)
  167.           s->mode = TABLE;
  168.           break;
  169.         case 3:                         /* illegal */
  170.           DUMPBITS(3)
  171.           s->mode = BAD;
  172.           z->msg = (char*)"invalid block type";
  173.           r = Z_DATA_ERROR;
  174.           LEAVE
  175.       }
  176.       break;
  177.     case LENS:
  178.       NEEDBITS(32)
  179.       if ((((~b) >> 16) & 0xffff) != (b & 0xffff))
  180.       {
  181.         s->mode = BAD;
  182.         z->msg = (char*)"invalid stored block lengths";
  183.         r = Z_DATA_ERROR;
  184.         LEAVE
  185.       }
  186.       s->sub.left = (uInt)b & 0xffff;
  187.       b = k = 0;                      /* dump bits */
  188.       Tracev((stderr, "inflate:       stored length %un", s->sub.left));
  189.       s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
  190.       break;
  191.     case STORED:
  192.       if (n == 0)
  193.         LEAVE
  194.       NEEDOUT
  195.       t = s->sub.left;
  196.       if (t > n) t = n;
  197.       if (t > m) t = m;
  198.       zmemcpy(q, p, t);
  199.       p += t;  n -= t;
  200.       q += t;  m -= t;
  201.       if ((s->sub.left -= t) != 0)
  202.         break;
  203.       Tracev((stderr, "inflate:       stored end, %lu total outn",
  204.               z->total_out + (q >= s->read ? q - s->read :
  205.               (s->end - s->read) + (q - s->window))));
  206.       s->mode = s->last ? DRY : TYPE;
  207.       break;
  208.     case TABLE:
  209.       NEEDBITS(14)
  210.       s->sub.trees.table = t = (uInt)b & 0x3fff;
  211. #ifndef PKZIP_BUG_WORKAROUND
  212.       if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
  213.       {
  214.         s->mode = BAD;
  215.         z->msg = (char*)"too many length or distance symbols";
  216.         r = Z_DATA_ERROR;
  217.         LEAVE
  218.       }
  219. #endif
  220.       t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
  221.       if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
  222.       {
  223.         r = Z_MEM_ERROR;
  224.         LEAVE
  225.       }
  226.       DUMPBITS(14)
  227.       s->sub.trees.index = 0;
  228.       Tracev((stderr, "inflate:       table sizes okn"));
  229.       s->mode = BTREE;
  230.     case BTREE:
  231.       while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
  232.       {
  233.         NEEDBITS(3)
  234.         s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
  235.         DUMPBITS(3)
  236.       }
  237.       while (s->sub.trees.index < 19)
  238.         s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
  239.       s->sub.trees.bb = 7;
  240.       t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
  241.                              &s->sub.trees.tb, s->hufts, z);
  242.       if (t != Z_OK)
  243.       {
  244.         r = t;
  245.         if (r == Z_DATA_ERROR)
  246.         {
  247.           ZFREE(z, s->sub.trees.blens);
  248.           s->mode = BAD;
  249.         }
  250.         LEAVE
  251.       }
  252.       s->sub.trees.index = 0;
  253.       Tracev((stderr, "inflate:       bits tree okn"));
  254.       s->mode = DTREE;
  255.     case DTREE:
  256.       while (t = s->sub.trees.table,
  257.              s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f))
  258.       {
  259.         inflate_huft *h;
  260.         uInt i, j, c;
  261.         t = s->sub.trees.bb;
  262.         NEEDBITS(t)
  263.         h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
  264.         t = h->bits;
  265.         c = h->base;
  266.         if (c < 16)
  267.         {
  268.           DUMPBITS(t)
  269.           s->sub.trees.blens[s->sub.trees.index++] = c;
  270.         }
  271.         else /* c == 16..18 */
  272.         {
  273.           i = c == 18 ? 7 : c - 14;
  274.           j = c == 18 ? 11 : 3;
  275.           NEEDBITS(t + i)
  276.           DUMPBITS(t)
  277.           j += (uInt)b & inflate_mask[i];
  278.           DUMPBITS(i)
  279.           i = s->sub.trees.index;
  280.           t = s->sub.trees.table;
  281.           if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) ||
  282.               (c == 16 && i < 1))
  283.           {
  284.             ZFREE(z, s->sub.trees.blens);
  285.             s->mode = BAD;
  286.             z->msg = (char*)"invalid bit length repeat";
  287.             r = Z_DATA_ERROR;
  288.             LEAVE
  289.           }
  290.           c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
  291.           do {
  292.             s->sub.trees.blens[i++] = c;
  293.           } while (--j);
  294.           s->sub.trees.index = i;
  295.         }
  296.       }
  297.       s->sub.trees.tb = Z_NULL;
  298.       {
  299.         uInt bl, bd;
  300.         inflate_huft *tl, *td;
  301.         inflate_codes_statef *c;
  302.         bl = 9;         /* must be <= 9 for lookahead assumptions */
  303.         bd = 6;         /* must be <= 9 for lookahead assumptions */
  304.         t = s->sub.trees.table;
  305.         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
  306.                                   s->sub.trees.blens, &bl, &bd, &tl, &td,
  307.                                   s->hufts, z);
  308.         if (t != Z_OK)
  309.         {
  310.           if (t == (uInt)Z_DATA_ERROR)
  311.           {
  312.             ZFREE(z, s->sub.trees.blens);
  313.             s->mode = BAD;
  314.           }
  315.           r = t;
  316.           LEAVE
  317.         }
  318.         Tracev((stderr, "inflate:       trees okn"));
  319.         if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
  320.         {
  321.           r = Z_MEM_ERROR;
  322.           LEAVE
  323.         }
  324.         s->sub.decode.codes = c;
  325.       }
  326.       ZFREE(z, s->sub.trees.blens);
  327.       s->mode = CODES;
  328.     case CODES:
  329.       UPDATE
  330.       if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
  331.         return inflate_flush(s, z, r);
  332.       r = Z_OK;
  333.       inflate_codes_free(s->sub.decode.codes, z);
  334.       LOAD
  335.       Tracev((stderr, "inflate:       codes end, %lu total outn",
  336.               z->total_out + (q >= s->read ? q - s->read :
  337.               (s->end - s->read) + (q - s->window))));
  338.       if (!s->last)
  339.       {
  340.         s->mode = TYPE;
  341.         break;
  342.       }
  343.       s->mode = DRY;
  344.     case DRY:
  345.       FLUSH
  346.       if (s->read != s->write)
  347.         LEAVE
  348.       s->mode = DONE;
  349.     case DONE:
  350.       r = Z_STREAM_END;
  351.       LEAVE
  352.     case BAD:
  353.       r = Z_DATA_ERROR;
  354.       LEAVE
  355.     default:
  356.       r = Z_STREAM_ERROR;
  357.       LEAVE
  358.   }
  359. }
  360. int inflate_blocks_free(s, z)
  361. inflate_blocks_statef *s;
  362. z_streamp z;
  363. {
  364.   inflate_blocks_reset(s, z, Z_NULL);
  365.   ZFREE(z, s->window);
  366.   ZFREE(z, s->hufts);
  367.   ZFREE(z, s);
  368.   Tracev((stderr, "inflate:   blocks freedn"));
  369.   return Z_OK;
  370. }
  371. void inflate_set_dictionary(s, d, n)
  372. inflate_blocks_statef *s;
  373. const Bytef *d;
  374. uInt  n;
  375. {
  376.   zmemcpy(s->window, d, n);
  377.   s->read = s->write = s->window + n;
  378. }
  379. /* Returns true if inflate is currently at the end of a block generated
  380.  * by Z_SYNC_FLUSH or Z_FULL_FLUSH. 
  381.  * IN assertion: s != Z_NULL
  382.  */
  383. int inflate_blocks_sync_point(s)
  384. inflate_blocks_statef *s;
  385. {
  386.   return s->mode == LENS;
  387. }