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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bzlib_private.h,v $
  4.  * PRODUCTION Revision 1000.1  2004/02/12 21:59:57  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_001] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*-------------------------------------------------------------*/
  10. /*--- Private header file for the library.                  ---*/
  11. /*---                                       bzlib_private.h ---*/
  12. /*-------------------------------------------------------------*/
  13. /*--
  14.   This file is a part of bzip2 and/or libbzip2, a program and
  15.   library for lossless, block-sorting data compression.
  16.   Copyright (C) 1996-2002 Julian R Seward.  All rights reserved.
  17.   Redistribution and use in source and binary forms, with or without
  18.   modification, are permitted provided that the following conditions
  19.   are met:
  20.   1. Redistributions of source code must retain the above copyright
  21.      notice, this list of conditions and the following disclaimer.
  22.   2. The origin of this software must not be misrepresented; you must 
  23.      not claim that you wrote the original software.  If you use this 
  24.      software in a product, an acknowledgment in the product 
  25.      documentation would be appreciated but is not required.
  26.   3. Altered source versions must be plainly marked as such, and must
  27.      not be misrepresented as being the original software.
  28.   4. The name of the author may not be used to endorse or promote 
  29.      products derived from this software without specific prior written 
  30.      permission.
  31.   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  32.   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  33.   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  34.   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  35.   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  36.   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  37.   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  38.   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  39.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  40.   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  41.   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42.   Julian Seward, Cambridge, UK.
  43.   jseward@acm.org
  44.   bzip2/libbzip2 version 1.0 of 21 March 2000
  45.   This program is based on (at least) the work of:
  46.      Mike Burrows
  47.      David Wheeler
  48.      Peter Fenwick
  49.      Alistair Moffat
  50.      Radford Neal
  51.      Ian H. Witten
  52.      Robert Sedgewick
  53.      Jon L. Bentley
  54.   For more information on these sources, see the manual.
  55. --*/
  56. #ifndef _BZLIB_PRIVATE_H
  57. #define _BZLIB_PRIVATE_H
  58. #include <stdlib.h>
  59. #ifndef BZ_NO_STDIO
  60. #include <stdio.h>
  61. #include <ctype.h>
  62. #include <string.h>
  63. #endif
  64. #include "bzlib.h"
  65. /*-- General stuff. --*/
  66. #define BZ_VERSION  "1.0.2, 30-Dec-2001"
  67. typedef char            Char;
  68. typedef unsigned char   Bool;
  69. typedef unsigned char   UChar;
  70. typedef int             Int32;
  71. typedef unsigned int    UInt32;
  72. typedef short           Int16;
  73. typedef unsigned short  UInt16;
  74. #define True  ((Bool)1)
  75. #define False ((Bool)0)
  76. #ifndef __GNUC__
  77. #define __inline__  /* */
  78. #endif 
  79. #ifndef BZ_NO_STDIO
  80. extern void BZ2_bz__AssertH__fail ( int errcode );
  81. #define AssertH(cond,errcode) 
  82.    { if (!(cond)) BZ2_bz__AssertH__fail ( errcode ); }
  83. #if BZ_DEBUG
  84. #define AssertD(cond,msg) 
  85.    { if (!(cond)) {       
  86.       fprintf ( stderr,   
  87.         "nnlibbzip2(debug build): internal errornt%sn", msg );
  88.       exit(1); 
  89.    }}
  90. #else
  91. #define AssertD(cond,msg) /* */
  92. #endif
  93. #define VPrintf0(zf) 
  94.    fprintf(stderr,zf)
  95. #define VPrintf1(zf,za1) 
  96.    fprintf(stderr,zf,za1)
  97. #define VPrintf2(zf,za1,za2) 
  98.    fprintf(stderr,zf,za1,za2)
  99. #define VPrintf3(zf,za1,za2,za3) 
  100.    fprintf(stderr,zf,za1,za2,za3)
  101. #define VPrintf4(zf,za1,za2,za3,za4) 
  102.    fprintf(stderr,zf,za1,za2,za3,za4)
  103. #define VPrintf5(zf,za1,za2,za3,za4,za5) 
  104.    fprintf(stderr,zf,za1,za2,za3,za4,za5)
  105. #else
  106. extern void bz_internal_error ( int errcode );
  107. #define AssertH(cond,errcode) 
  108.    { if (!(cond)) bz_internal_error ( errcode ); }
  109. #define AssertD(cond,msg) /* */
  110. #define VPrintf0(zf) /* */
  111. #define VPrintf1(zf,za1) /* */
  112. #define VPrintf2(zf,za1,za2) /* */
  113. #define VPrintf3(zf,za1,za2,za3) /* */
  114. #define VPrintf4(zf,za1,za2,za3,za4) /* */
  115. #define VPrintf5(zf,za1,za2,za3,za4,za5) /* */
  116. #endif
  117. #define BZALLOC(nnn) (strm->bzalloc)(strm->opaque,(nnn),1)
  118. #define BZFREE(ppp)  (strm->bzfree)(strm->opaque,(ppp))
  119. /*-- Header bytes. --*/
  120. #define BZ_HDR_B 0x42   /* 'B' */
  121. #define BZ_HDR_Z 0x5a   /* 'Z' */
  122. #define BZ_HDR_h 0x68   /* 'h' */
  123. #define BZ_HDR_0 0x30   /* '0' */
  124.   
  125. /*-- Constants for the back end. --*/
  126. #define BZ_MAX_ALPHA_SIZE 258
  127. #define BZ_MAX_CODE_LEN    23
  128. #define BZ_RUNA 0
  129. #define BZ_RUNB 1
  130. #define BZ_N_GROUPS 6
  131. #define BZ_G_SIZE   50
  132. #define BZ_N_ITERS  4
  133. #define BZ_MAX_SELECTORS (2 + (900000 / BZ_G_SIZE))
  134. /*-- Stuff for randomising repetitive blocks. --*/
  135. extern Int32 BZ2_rNums[512];
  136. #define BZ_RAND_DECLS                          
  137.    Int32 rNToGo;                               
  138.    Int32 rTPos                                 
  139. #define BZ_RAND_INIT_MASK                      
  140.    s->rNToGo = 0;                              
  141.    s->rTPos  = 0                               
  142. #define BZ_RAND_MASK ((s->rNToGo == 1) ? 1 : 0)
  143. #define BZ_RAND_UPD_MASK                       
  144.    if (s->rNToGo == 0) {                       
  145.       s->rNToGo = BZ2_rNums[s->rTPos];         
  146.       s->rTPos++;                              
  147.       if (s->rTPos == 512) s->rTPos = 0;       
  148.    }                                           
  149.    s->rNToGo--;
  150. /*-- Stuff for doing CRCs. --*/
  151. extern UInt32 BZ2_crc32Table[256];
  152. #define BZ_INITIALISE_CRC(crcVar)              
  153. {                                              
  154.    crcVar = 0xffffffffL;                       
  155. }
  156. #define BZ_FINALISE_CRC(crcVar)                
  157. {                                              
  158.    crcVar = ~(crcVar);                         
  159. }
  160. #define BZ_UPDATE_CRC(crcVar,cha)              
  161. {                                              
  162.    crcVar = (crcVar << 8) ^                    
  163.             BZ2_crc32Table[(crcVar >> 24) ^    
  164.                            ((UChar)cha)];      
  165. }
  166. /*-- States and modes for compression. --*/
  167. #define BZ_M_IDLE      1
  168. #define BZ_M_RUNNING   2
  169. #define BZ_M_FLUSHING  3
  170. #define BZ_M_FINISHING 4
  171. #define BZ_S_OUTPUT    1
  172. #define BZ_S_INPUT     2
  173. #define BZ_N_RADIX 2
  174. #define BZ_N_QSORT 12
  175. #define BZ_N_SHELL 18
  176. #define BZ_N_OVERSHOOT (BZ_N_RADIX + BZ_N_QSORT + BZ_N_SHELL + 2)
  177. /*-- Structure holding all the compression-side stuff. --*/
  178. typedef
  179.    struct {
  180.       /* pointer back to the struct bz_stream */
  181.       bz_stream* strm;
  182.       /* mode this stream is in, and whether inputting */
  183.       /* or outputting data */
  184.       Int32    mode;
  185.       Int32    state;
  186.       /* remembers avail_in when flush/finish requested */
  187.       UInt32   avail_in_expect;
  188.       /* for doing the block sorting */
  189.       UInt32*  arr1;
  190.       UInt32*  arr2;
  191.       UInt32*  ftab;
  192.       Int32    origPtr;
  193.       /* aliases for arr1 and arr2 */
  194.       UInt32*  ptr;
  195.       UChar*   block;
  196.       UInt16*  mtfv;
  197.       UChar*   zbits;
  198.       /* for deciding when to use the fallback sorting algorithm */
  199.       Int32    workFactor;
  200.       /* run-length-encoding of the input */
  201.       UInt32   state_in_ch;
  202.       Int32    state_in_len;
  203.       BZ_RAND_DECLS;
  204.       /* input and output limits and current posns */
  205.       Int32    nblock;
  206.       Int32    nblockMAX;
  207.       Int32    numZ;
  208.       Int32    state_out_pos;
  209.       /* map of bytes used in block */
  210.       Int32    nInUse;
  211.       Bool     inUse[256];
  212.       UChar    unseqToSeq[256];
  213.       /* the buffer for bit stream creation */
  214.       UInt32   bsBuff;
  215.       Int32    bsLive;
  216.       /* block and combined CRCs */
  217.       UInt32   blockCRC;
  218.       UInt32   combinedCRC;
  219.       /* misc administratium */
  220.       Int32    verbosity;
  221.       Int32    blockNo;
  222.       Int32    blockSize100k;
  223.       /* stuff for coding the MTF values */
  224.       Int32    nMTF;
  225.       Int32    mtfFreq    [BZ_MAX_ALPHA_SIZE];
  226.       UChar    selector   [BZ_MAX_SELECTORS];
  227.       UChar    selectorMtf[BZ_MAX_SELECTORS];
  228.       UChar    len     [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  229.       Int32    code    [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  230.       Int32    rfreq   [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  231.       /* second dimension: only 3 needed; 4 makes index calculations faster */
  232.       UInt32   len_pack[BZ_MAX_ALPHA_SIZE][4];
  233.    }
  234.    EState;
  235. /*-- externs for compression. --*/
  236. extern void 
  237. BZ2_blockSort ( EState* );
  238. extern void 
  239. BZ2_compressBlock ( EState*, Bool );
  240. extern void 
  241. BZ2_bsInitWrite ( EState* );
  242. extern void 
  243. BZ2_hbAssignCodes ( Int32*, UChar*, Int32, Int32, Int32 );
  244. extern void 
  245. BZ2_hbMakeCodeLengths ( UChar*, Int32*, Int32, Int32 );
  246. /*-- states for decompression. --*/
  247. #define BZ_X_IDLE        1
  248. #define BZ_X_OUTPUT      2
  249. #define BZ_X_MAGIC_1     10
  250. #define BZ_X_MAGIC_2     11
  251. #define BZ_X_MAGIC_3     12
  252. #define BZ_X_MAGIC_4     13
  253. #define BZ_X_BLKHDR_1    14
  254. #define BZ_X_BLKHDR_2    15
  255. #define BZ_X_BLKHDR_3    16
  256. #define BZ_X_BLKHDR_4    17
  257. #define BZ_X_BLKHDR_5    18
  258. #define BZ_X_BLKHDR_6    19
  259. #define BZ_X_BCRC_1      20
  260. #define BZ_X_BCRC_2      21
  261. #define BZ_X_BCRC_3      22
  262. #define BZ_X_BCRC_4      23
  263. #define BZ_X_RANDBIT     24
  264. #define BZ_X_ORIGPTR_1   25
  265. #define BZ_X_ORIGPTR_2   26
  266. #define BZ_X_ORIGPTR_3   27
  267. #define BZ_X_MAPPING_1   28
  268. #define BZ_X_MAPPING_2   29
  269. #define BZ_X_SELECTOR_1  30
  270. #define BZ_X_SELECTOR_2  31
  271. #define BZ_X_SELECTOR_3  32
  272. #define BZ_X_CODING_1    33
  273. #define BZ_X_CODING_2    34
  274. #define BZ_X_CODING_3    35
  275. #define BZ_X_MTF_1       36
  276. #define BZ_X_MTF_2       37
  277. #define BZ_X_MTF_3       38
  278. #define BZ_X_MTF_4       39
  279. #define BZ_X_MTF_5       40
  280. #define BZ_X_MTF_6       41
  281. #define BZ_X_ENDHDR_2    42
  282. #define BZ_X_ENDHDR_3    43
  283. #define BZ_X_ENDHDR_4    44
  284. #define BZ_X_ENDHDR_5    45
  285. #define BZ_X_ENDHDR_6    46
  286. #define BZ_X_CCRC_1      47
  287. #define BZ_X_CCRC_2      48
  288. #define BZ_X_CCRC_3      49
  289. #define BZ_X_CCRC_4      50
  290. /*-- Constants for the fast MTF decoder. --*/
  291. #define MTFA_SIZE 4096
  292. #define MTFL_SIZE 16
  293. /*-- Structure holding all the decompression-side stuff. --*/
  294. typedef
  295.    struct {
  296.       /* pointer back to the struct bz_stream */
  297.       bz_stream* strm;
  298.       /* state indicator for this stream */
  299.       Int32    state;
  300.       /* for doing the final run-length decoding */
  301.       UChar    state_out_ch;
  302.       Int32    state_out_len;
  303.       Bool     blockRandomised;
  304.       BZ_RAND_DECLS;
  305.       /* the buffer for bit stream reading */
  306.       UInt32   bsBuff;
  307.       Int32    bsLive;
  308.       /* misc administratium */
  309.       Int32    blockSize100k;
  310.       Bool     smallDecompress;
  311.       Int32    currBlockNo;
  312.       Int32    verbosity;
  313.       /* for undoing the Burrows-Wheeler transform */
  314.       Int32    origPtr;
  315.       UInt32   tPos;
  316.       Int32    k0;
  317.       Int32    unzftab[256];
  318.       Int32    nblock_used;
  319.       Int32    cftab[257];
  320.       Int32    cftabCopy[257];
  321.       /* for undoing the Burrows-Wheeler transform (FAST) */
  322.       UInt32   *tt;
  323.       /* for undoing the Burrows-Wheeler transform (SMALL) */
  324.       UInt16   *ll16;
  325.       UChar    *ll4;
  326.       /* stored and calculated CRCs */
  327.       UInt32   storedBlockCRC;
  328.       UInt32   storedCombinedCRC;
  329.       UInt32   calculatedBlockCRC;
  330.       UInt32   calculatedCombinedCRC;
  331.       /* map of bytes used in block */
  332.       Int32    nInUse;
  333.       Bool     inUse[256];
  334.       Bool     inUse16[16];
  335.       UChar    seqToUnseq[256];
  336.       /* for decoding the MTF values */
  337.       UChar    mtfa   [MTFA_SIZE];
  338.       Int32    mtfbase[256 / MTFL_SIZE];
  339.       UChar    selector   [BZ_MAX_SELECTORS];
  340.       UChar    selectorMtf[BZ_MAX_SELECTORS];
  341.       UChar    len  [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  342.       Int32    limit  [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  343.       Int32    base   [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  344.       Int32    perm   [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE];
  345.       Int32    minLens[BZ_N_GROUPS];
  346.       /* save area for scalars in the main decompress code */
  347.       Int32    save_i;
  348.       Int32    save_j;
  349.       Int32    save_t;
  350.       Int32    save_alphaSize;
  351.       Int32    save_nGroups;
  352.       Int32    save_nSelectors;
  353.       Int32    save_EOB;
  354.       Int32    save_groupNo;
  355.       Int32    save_groupPos;
  356.       Int32    save_nextSym;
  357.       Int32    save_nblockMAX;
  358.       Int32    save_nblock;
  359.       Int32    save_es;
  360.       Int32    save_N;
  361.       Int32    save_curr;
  362.       Int32    save_zt;
  363.       Int32    save_zn; 
  364.       Int32    save_zvec;
  365.       Int32    save_zj;
  366.       Int32    save_gSel;
  367.       Int32    save_gMinlen;
  368.       Int32*   save_gLimit;
  369.       Int32*   save_gBase;
  370.       Int32*   save_gPerm;
  371.    }
  372.    DState;
  373. /*-- Macros for decompression. --*/
  374. #define BZ_GET_FAST(cccc)                     
  375.     s->tPos = s->tt[s->tPos];                 
  376.     cccc = (UChar)(s->tPos & 0xff);           
  377.     s->tPos >>= 8;
  378. #define BZ_GET_FAST_C(cccc)                   
  379.     c_tPos = c_tt[c_tPos];                    
  380.     cccc = (UChar)(c_tPos & 0xff);            
  381.     c_tPos >>= 8;
  382. #define SET_LL4(i,n)                                          
  383.    { if (((i) & 0x1) == 0)                                    
  384.         s->ll4[(i) >> 1] = (s->ll4[(i) >> 1] & 0xf0) | (n); else    
  385.         s->ll4[(i) >> 1] = (s->ll4[(i) >> 1] & 0x0f) | ((n) << 4);  
  386.    }
  387. #define GET_LL4(i)                             
  388.    ((((UInt32)(s->ll4[(i) >> 1])) >> (((i) << 2) & 0x4)) & 0xF)
  389. #define SET_LL(i,n)                          
  390.    { s->ll16[i] = (UInt16)(n & 0x0000ffff);  
  391.      SET_LL4(i, n >> 16);                    
  392.    }
  393. #define GET_LL(i) 
  394.    (((UInt32)s->ll16[i]) | (GET_LL4(i) << 16))
  395. #define BZ_GET_SMALL(cccc)                            
  396.       cccc = BZ2_indexIntoF ( s->tPos, s->cftab );    
  397.       s->tPos = GET_LL(s->tPos);
  398. /*-- externs for decompression. --*/
  399. extern Int32 
  400. BZ2_indexIntoF ( Int32, Int32* );
  401. extern Int32 
  402. BZ2_decompress ( DState* );
  403. extern void 
  404. BZ2_hbCreateDecodeTables ( Int32*, Int32*, Int32*, UChar*,
  405.                            Int32,  Int32, Int32 );
  406. #endif
  407. /*-- BZ_NO_STDIO seems to make NULL disappear on some platforms. --*/
  408. #ifdef BZ_NO_STDIO
  409. #ifndef NULL
  410. #define NULL 0
  411. #endif
  412. #endif
  413. /*-------------------------------------------------------------*/
  414. /*--- end                                   bzlib_private.h ---*/
  415. /*-------------------------------------------------------------*/