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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: infutil.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:50:06  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* infutil.h -- types and macros 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. /* WARNING: this file should *not* be used by applications. It is
  14.    part of the implementation of the compression library and is
  15.    subject to change. Applications should only use zlib.h.
  16.  */
  17. #ifndef _INFUTIL_H
  18. #define _INFUTIL_H
  19. typedef enum {
  20.       TYPE,     /* get type bits (3, including end bit) */
  21.       LENS,     /* get lengths for stored */
  22.       STORED,   /* processing stored block */
  23.       TABLE,    /* get table lengths */
  24.       BTREE,    /* get bit lengths tree for a dynamic block */
  25.       DTREE,    /* get length, distance trees for a dynamic block */
  26.       CODES,    /* processing fixed or dynamic block */
  27.       DRY,      /* output remaining window bytes */
  28.       DONE,     /* finished last block, done */
  29.       BAD}      /* got a data error--stuck here */
  30. inflate_block_mode;
  31. /* inflate blocks semi-private state */
  32. struct inflate_blocks_state {
  33.   /* mode */
  34.   inflate_block_mode  mode;     /* current inflate_block mode */
  35.   /* mode dependent information */
  36.   union {
  37.     uInt left;          /* if STORED, bytes left to copy */
  38.     struct {
  39.       uInt table;               /* table lengths (14 bits) */
  40.       uInt index;               /* index into blens (or border) */
  41.       uIntf *blens;             /* bit lengths of codes */
  42.       uInt bb;                  /* bit length tree depth */
  43.       inflate_huft *tb;         /* bit length decoding tree */
  44.     } trees;            /* if DTREE, decoding info for trees */
  45.     struct {
  46.       inflate_codes_statef 
  47.          *codes;
  48.     } decode;           /* if CODES, current state */
  49.   } sub;                /* submode */
  50.   uInt last;            /* true if this block is the last block */
  51.   /* mode independent information */
  52.   uInt bitk;            /* bits in bit buffer */
  53.   uLong bitb;           /* bit buffer */
  54.   inflate_huft *hufts;  /* single malloc for tree space */
  55.   Bytef *window;        /* sliding window */
  56.   Bytef *end;           /* one byte after sliding window */
  57.   Bytef *read;          /* window read pointer */
  58.   Bytef *write;         /* window write pointer */
  59.   check_func checkfn;   /* check function */
  60.   uLong check;          /* check on output */
  61. };
  62. /* defines for inflate input/output */
  63. /*   update pointers and return */
  64. #define UPDBITS {s->bitb=b;s->bitk=k;}
  65. #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
  66. #define UPDOUT {s->write=q;}
  67. #define UPDATE {UPDBITS UPDIN UPDOUT}
  68. #define LEAVE {UPDATE return inflate_flush(s,z,r);}
  69. /*   get bytes and bits */
  70. #define LOADIN {p=z->next_in;n=z->avail_in;b=s->bitb;k=s->bitk;}
  71. #define NEEDBYTE {if(n)r=Z_OK;else LEAVE}
  72. #define NEXTBYTE (n--,*p++)
  73. #define NEEDBITS(j) {while(k<(j)){NEEDBYTE;b|=((uLong)NEXTBYTE)<<k;k+=8;}}
  74. #define DUMPBITS(j) {b>>=(j);k-=(j);}
  75. /*   output bytes */
  76. #define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q)
  77. #define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
  78. #define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}}
  79. #define FLUSH {UPDOUT r=inflate_flush(s,z,r); LOADOUT}
  80. #define NEEDOUT {if(m==0){WRAP if(m==0){FLUSH WRAP if(m==0) LEAVE}}r=Z_OK;}
  81. #define OUTBYTE(a) {*q++=(Byte)(a);m--;}
  82. /*   load local pointers */
  83. #define LOAD {LOADIN LOADOUT}
  84. /* masks for lower bits (size given to avoid silly warnings with Visual C++) */
  85. extern uInt inflate_mask[17];
  86. /* copy as much as possible from the sliding window to the output area */
  87. extern int inflate_flush OF((
  88.     inflate_blocks_statef *,
  89.     z_streamp ,
  90.     int));
  91. struct internal_state      {int dummy;}; /* for buggy compilers */
  92. #endif