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

压缩解压

开发平台:

C/C++

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