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

压缩解压

开发平台:

C/C++

  1. /*-------------------------------------------------------------*/
  2. /*--- Library top-level functions.                          ---*/
  3. /*---                                               bzlib.c ---*/
  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. /*--
  49.    CHANGES
  50.    ~~~~~~~
  51.    0.9.0 -- original version.
  52.    0.9.0a/b -- no changes in this file.
  53.    0.9.0c
  54.       * made zero-length BZ_FLUSH work correctly in bzCompress().
  55.       * fixed bzWrite/bzRead to ignore zero-length requests.
  56.       * fixed bzread to correctly handle read requests after EOF.
  57.       * wrong parameter order in call to bzDecompressInit in
  58.         bzBuffToBuffDecompress.  Fixed.
  59. --*/
  60. #include "bzlib_private.h"
  61. /*---------------------------------------------------*/
  62. /*--- Compression stuff                           ---*/
  63. /*---------------------------------------------------*/
  64. /*---------------------------------------------------*/
  65. #ifndef BZ_NO_STDIO
  66. void bz__AssertH__fail ( int errcode )
  67. {
  68.    fprintf(stderr, 
  69.       "nnbzip2/libbzip2, v0.9.0c: internal error number %d.n"
  70.       "This is a bug in bzip2/libbzip2, v0.9.0c.  Please reportn"
  71.       "it to me at: jseward@acm.org.  If this happened whenn"
  72.       "you were using some program which uses libbzip2 as an"
  73.       "component, you should also report this bug to the author(s)n"
  74.       "of that program.  Please make an effort to report this bug;n"
  75.       "timely and accurate bug reports eventually lead to highern"
  76.       "quality software.  Thx.  Julian Seward, 18 October 1998.nn",
  77.       errcode
  78.    );
  79.    exit(3);
  80. }
  81. #endif
  82. /*---------------------------------------------------*/
  83. static
  84. void* default_bzalloc ( void* opaque, Int32 items, Int32 size )
  85. {
  86.    void* v = malloc ( items * size );
  87.    return v;
  88. }
  89. static
  90. void default_bzfree ( void* opaque, void* addr )
  91. {
  92.    if (addr != NULL) free ( addr );
  93. }
  94. /*---------------------------------------------------*/
  95. static
  96. void prepare_new_block ( EState* s )
  97. {
  98.    Int32 i;
  99.    s->nblock = 0;
  100.    s->numZ = 0;
  101.    s->state_out_pos = 0;
  102.    BZ_INITIALISE_CRC ( s->blockCRC );
  103.    for (i = 0; i < 256; i++) s->inUse[i] = False;
  104.    s->blockNo++;
  105. }
  106. /*---------------------------------------------------*/
  107. static
  108. void init_RL ( EState* s )
  109. {
  110.    s->state_in_ch  = 256;
  111.    s->state_in_len = 0;
  112. }
  113. static
  114. Bool isempty_RL ( EState* s )
  115. {
  116.    if (s->state_in_ch < 256 && s->state_in_len > 0)
  117.       return False; else
  118.       return True;
  119. }
  120. /*---------------------------------------------------*/
  121. int BZ_API(bzCompressInit) 
  122.                     ( bz_stream* strm, 
  123.                      int        blockSize100k,
  124.                      int        verbosity,
  125.                      int        workFactor )
  126. {
  127.    Int32   n;
  128.    EState* s;
  129.    if (strm == NULL || 
  130.        blockSize100k < 1 || blockSize100k > 9 ||
  131.        workFactor < 0 || workFactor > 250)
  132.      return BZ_PARAM_ERROR;
  133.    if (workFactor == 0) workFactor = 30;
  134.    if (strm->bzalloc == NULL) strm->bzalloc = default_bzalloc;
  135.    if (strm->bzfree == NULL) strm->bzfree = default_bzfree;
  136.    s = BZALLOC( sizeof(EState) );
  137.    if (s == NULL) return BZ_MEM_ERROR;
  138.    s->strm = strm;
  139.    s->block    = NULL;
  140.    s->quadrant = NULL;
  141.    s->zptr     = NULL;
  142.    s->ftab     = NULL;
  143.    n           = 100000 * blockSize100k;
  144.    s->block    = BZALLOC( (n + BZ_NUM_OVERSHOOT_BYTES) * sizeof(UChar) );
  145.    s->quadrant = BZALLOC( (n + BZ_NUM_OVERSHOOT_BYTES) * sizeof(Int16) );
  146.    s->zptr     = BZALLOC( n                            * sizeof(Int32) );
  147.    s->ftab     = BZALLOC( 65537                        * sizeof(Int32) );
  148.    if (s->block == NULL || s->quadrant == NULL ||
  149.        s->zptr == NULL  || s->ftab == NULL) {
  150.       if (s->block    != NULL) BZFREE(s->block);
  151.       if (s->quadrant != NULL) BZFREE(s->quadrant);
  152.       if (s->zptr     != NULL) BZFREE(s->zptr);
  153.       if (s->ftab     != NULL) BZFREE(s->ftab);
  154.       if (s           != NULL) BZFREE(s);
  155.       return BZ_MEM_ERROR;
  156.    }
  157.    s->szptr = (UInt16*)(s->zptr);
  158.    s->blockNo           = 0;
  159.    s->state             = BZ_S_INPUT;
  160.    s->mode              = BZ_M_RUNNING;
  161.    s->combinedCRC       = 0;
  162.    s->blockSize100k     = blockSize100k;
  163.    s->nblockMAX         = 100000 * blockSize100k - 19;
  164.    s->verbosity         = verbosity;
  165.    s->workFactor        = workFactor;
  166.    s->nBlocksRandomised = 0;
  167.    strm->state          = s;
  168.    strm->total_in       = 0;
  169.    strm->total_out      = 0;
  170.    init_RL ( s );
  171.    prepare_new_block ( s );
  172.    return BZ_OK;
  173. }
  174. /*---------------------------------------------------*/
  175. static
  176. void add_pair_to_block ( EState* s )
  177. {
  178.    Int32 i;
  179.    UChar ch = (UChar)(s->state_in_ch);
  180.    for (i = 0; i < s->state_in_len; i++) {
  181.       BZ_UPDATE_CRC( s->blockCRC, ch );
  182.    }
  183.    s->inUse[s->state_in_ch] = True;
  184.    switch (s->state_in_len) {
  185.       case 1:
  186.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  187.          break;
  188.       case 2:
  189.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  190.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  191.          break;
  192.       case 3:
  193.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  194.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  195.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  196.          break;
  197.       default:
  198.          s->inUse[s->state_in_len-4] = True;
  199.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  200.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  201.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  202.          s->block[s->nblock] = (UChar)ch; s->nblock++;
  203.          s->block[s->nblock] = (UChar)(s->state_in_len-4);
  204.          s->nblock++;
  205.          break;
  206.    }
  207. }
  208. /*---------------------------------------------------*/
  209. static
  210. void flush_RL ( EState* s )
  211. {
  212.    if (s->state_in_ch < 256) add_pair_to_block ( s );
  213.    init_RL ( s );
  214. }
  215. /*---------------------------------------------------*/
  216. #define ADD_CHAR_TO_BLOCK(zs,zchh0)               
  217. {                                                 
  218.    UInt32 zchh = (UInt32)(zchh0);                 
  219.    /*-- fast track the common case --*/           
  220.    if (zchh != zs->state_in_ch &&                 
  221.        zs->state_in_len == 1) {                   
  222.       UChar ch = (UChar)(zs->state_in_ch);        
  223.       BZ_UPDATE_CRC( zs->blockCRC, ch );          
  224.       zs->inUse[zs->state_in_ch] = True;          
  225.       zs->block[zs->nblock] = (UChar)ch;          
  226.       zs->nblock++;                               
  227.       zs->state_in_ch = zchh;                     
  228.    }                                              
  229.    else                                           
  230.    /*-- general, uncommon cases --*/              
  231.    if (zchh != zs->state_in_ch ||                 
  232.       zs->state_in_len == 255) {                  
  233.       if (zs->state_in_ch < 256)                  
  234.          add_pair_to_block ( zs );                
  235.       zs->state_in_ch = zchh;                     
  236.       zs->state_in_len = 1;                       
  237.    } else {                                       
  238.       zs->state_in_len++;                         
  239.    }                                              
  240. }
  241. /*---------------------------------------------------*/
  242. static
  243. Bool copy_input_until_stop ( EState* s )
  244. {
  245.    Bool progress_in = False;
  246.    if (s->mode == BZ_M_RUNNING) {
  247.       /*-- fast track the common case --*/
  248.       while (True) {
  249.          /*-- block full? --*/
  250.          if (s->nblock >= s->nblockMAX) break;
  251.          /*-- no input? --*/
  252.          if (s->strm->avail_in == 0) break;
  253.          progress_in = True;
  254.          ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); 
  255.          s->strm->next_in++;
  256.          s->strm->avail_in--;
  257.          s->strm->total_in++;
  258.       }
  259.    } else {
  260.       /*-- general, uncommon case --*/
  261.       while (True) {
  262.          /*-- block full? --*/
  263.          if (s->nblock >= s->nblockMAX) break;
  264.          /*-- no input? --*/
  265.          if (s->strm->avail_in == 0) break;
  266.          /*-- flush/finish end? --*/
  267.          if (s->avail_in_expect == 0) break;
  268.          progress_in = True;
  269.          ADD_CHAR_TO_BLOCK ( s, (UInt32)(*((UChar*)(s->strm->next_in))) ); 
  270.          s->strm->next_in++;
  271.          s->strm->avail_in--;
  272.          s->strm->total_in++;
  273.          s->avail_in_expect--;
  274.       }
  275.    }
  276.    return progress_in;
  277. }
  278. /*---------------------------------------------------*/
  279. static
  280. Bool copy_output_until_stop ( EState* s )
  281. {
  282.    Bool progress_out = False;
  283.    while (True) {
  284.       /*-- no output space? --*/
  285.       if (s->strm->avail_out == 0) break;
  286.       /*-- block done? --*/
  287.       if (s->state_out_pos >= s->numZ) break;
  288.       progress_out = True;
  289.       *(s->strm->next_out) = ((UChar*)(s->quadrant))[s->state_out_pos];
  290.       s->state_out_pos++;
  291.       s->strm->avail_out--;
  292.       s->strm->next_out++;
  293.       s->strm->total_out++;
  294.       
  295.    }
  296.    return progress_out;
  297. }
  298. /*---------------------------------------------------*/
  299. static
  300. Bool handle_compress ( bz_stream* strm )
  301. {
  302.    Bool progress_in  = False;
  303.    Bool progress_out = False;
  304.    EState* s = strm->state;
  305.    
  306.    while (True) {
  307.       if (s->state == BZ_S_OUTPUT) {
  308.          progress_out |= copy_output_until_stop ( s );
  309.          if (s->state_out_pos < s->numZ) break;
  310.          if (s->mode == BZ_M_FINISHING && 
  311.              s->avail_in_expect == 0 &&
  312.              isempty_RL(s)) break;
  313.          prepare_new_block ( s );
  314.          s->state = BZ_S_INPUT;
  315.          if (s->mode == BZ_M_FLUSHING && 
  316.              s->avail_in_expect == 0 &&
  317.              isempty_RL(s)) break;
  318.       }
  319.       if (s->state == BZ_S_INPUT) {
  320.          progress_in |= copy_input_until_stop ( s );
  321.          if (s->mode != BZ_M_RUNNING && s->avail_in_expect == 0) {
  322.             flush_RL ( s );
  323.             compressBlock ( s, s->mode == BZ_M_FINISHING );
  324.             s->state = BZ_S_OUTPUT;
  325.          }
  326.          else
  327.          if (s->nblock >= s->nblockMAX) {
  328.             compressBlock ( s, False );
  329.             s->state = BZ_S_OUTPUT;
  330.          }
  331.          else
  332.          if (s->strm->avail_in == 0) {
  333.             break;
  334.          }
  335.       }
  336.    }
  337.    return progress_in || progress_out;
  338. }
  339. /*---------------------------------------------------*/
  340. int BZ_API(bzCompress) ( bz_stream *strm, int action )
  341. {
  342.    Bool progress;
  343.    EState* s;
  344.    if (strm == NULL) return BZ_PARAM_ERROR;
  345.    s = strm->state;
  346.    if (s == NULL) return BZ_PARAM_ERROR;
  347.    if (s->strm != strm) return BZ_PARAM_ERROR;
  348.    preswitch:
  349.    switch (s->mode) {
  350.       case BZ_M_IDLE:
  351.          return BZ_SEQUENCE_ERROR;
  352.       case BZ_M_RUNNING:
  353.          if (action == BZ_RUN) {
  354.             progress = handle_compress ( strm );
  355.             return progress ? BZ_RUN_OK : BZ_PARAM_ERROR;
  356.          } 
  357.          else
  358.  if (action == BZ_FLUSH) {
  359.             s->avail_in_expect = strm->avail_in;
  360.             s->mode = BZ_M_FLUSHING;
  361.             goto preswitch;
  362.          }
  363.          else
  364.          if (action == BZ_FINISH) {
  365.             s->avail_in_expect = strm->avail_in;
  366.             s->mode = BZ_M_FINISHING;
  367.             goto preswitch;
  368.          }
  369.          else 
  370.             return BZ_PARAM_ERROR;
  371.       case BZ_M_FLUSHING:
  372.          if (action != BZ_FLUSH) return BZ_SEQUENCE_ERROR;
  373.          if (s->avail_in_expect != s->strm->avail_in) return BZ_SEQUENCE_ERROR;
  374.          progress = handle_compress ( strm );
  375.          if (s->avail_in_expect > 0 || !isempty_RL(s) ||
  376.              s->state_out_pos < s->numZ) return BZ_FLUSH_OK;
  377.          s->mode = BZ_M_RUNNING;
  378.          return BZ_RUN_OK;
  379.       case BZ_M_FINISHING:
  380.          if (action != BZ_FINISH) return BZ_SEQUENCE_ERROR;
  381.          if (s->avail_in_expect != s->strm->avail_in) return BZ_SEQUENCE_ERROR;
  382.          progress = handle_compress ( strm );
  383.          if (!progress) return BZ_SEQUENCE_ERROR;
  384.          if (s->avail_in_expect > 0 || !isempty_RL(s) ||
  385.              s->state_out_pos < s->numZ) return BZ_FINISH_OK;
  386.          s->mode = BZ_M_IDLE;
  387.          return BZ_STREAM_END;
  388.    }
  389.    return BZ_OK; /*--not reached--*/
  390. }
  391. /*---------------------------------------------------*/
  392. int BZ_API(bzCompressEnd)  ( bz_stream *strm )
  393. {
  394.    EState* s;
  395.    if (strm == NULL) return BZ_PARAM_ERROR;
  396.    s = strm->state;
  397.    if (s == NULL) return BZ_PARAM_ERROR;
  398.    if (s->strm != strm) return BZ_PARAM_ERROR;
  399.    if (s->block    != NULL) BZFREE(s->block);
  400.    if (s->quadrant != NULL) BZFREE(s->quadrant);
  401.    if (s->zptr     != NULL) BZFREE(s->zptr);
  402.    if (s->ftab     != NULL) BZFREE(s->ftab);
  403.    BZFREE(strm->state);
  404.    strm->state = NULL;   
  405.    return BZ_OK;
  406. }
  407. /*---------------------------------------------------*/
  408. /*--- Decompression stuff                         ---*/
  409. /*---------------------------------------------------*/
  410. /*---------------------------------------------------*/
  411. int BZ_API(bzDecompressInit) 
  412.                      ( bz_stream* strm, 
  413.                        int        verbosity,
  414.                        int        small )
  415. {
  416.    DState* s;
  417.    if (strm == NULL) return BZ_PARAM_ERROR;
  418.    if (small != 0 && small != 1) return BZ_PARAM_ERROR;
  419.    if (verbosity < 0 || verbosity > 4) return BZ_PARAM_ERROR;
  420.    if (strm->bzalloc == NULL) strm->bzalloc = default_bzalloc;
  421.    if (strm->bzfree == NULL) strm->bzfree = default_bzfree;
  422.    s = BZALLOC( sizeof(DState) );
  423.    if (s == NULL) return BZ_MEM_ERROR;
  424.    s->strm                  = strm;
  425.    strm->state              = s;
  426.    s->state                 = BZ_X_MAGIC_1;
  427.    s->bsLive                = 0;
  428.    s->bsBuff                = 0;
  429.    s->calculatedCombinedCRC = 0;
  430.    strm->total_in           = 0;
  431.    strm->total_out          = 0;
  432.    s->smallDecompress       = (Bool)small;
  433.    s->ll4                   = NULL;
  434.    s->ll16                  = NULL;
  435.    s->tt                    = NULL;
  436.    s->currBlockNo           = 0;
  437.    s->verbosity             = verbosity;
  438.    return BZ_OK;
  439. }
  440. /*---------------------------------------------------*/
  441. static
  442. void unRLE_obuf_to_output_FAST ( DState* s )
  443. {
  444.    UChar k1;
  445.    if (s->blockRandomised) {
  446.       while (True) {
  447.          /* try to finish existing run */
  448.          while (True) {
  449.             if (s->strm->avail_out == 0) return;
  450.             if (s->state_out_len == 0) break;
  451.             *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
  452.             BZ_UPDATE_CRC ( s->calculatedBlockCRC, s->state_out_ch );
  453.             s->state_out_len--;
  454.             s->strm->next_out++;
  455.             s->strm->avail_out--;
  456.             s->strm->total_out++;
  457.          }
  458.    
  459.          /* can a new run be started? */
  460.          if (s->nblock_used == s->save_nblock+1) return;
  461.                
  462.    
  463.          s->state_out_len = 1;
  464.          s->state_out_ch = s->k0;
  465.          BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
  466.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  467.          if (s->nblock_used == s->save_nblock+1) continue;
  468.          if (k1 != s->k0) { s->k0 = k1; continue; };
  469.    
  470.          s->state_out_len = 2;
  471.          BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
  472.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  473.          if (s->nblock_used == s->save_nblock+1) continue;
  474.          if (k1 != s->k0) { s->k0 = k1; continue; };
  475.    
  476.          s->state_out_len = 3;
  477.          BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
  478.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  479.          if (s->nblock_used == s->save_nblock+1) continue;
  480.          if (k1 != s->k0) { s->k0 = k1; continue; };
  481.    
  482.          BZ_GET_FAST(k1); BZ_RAND_UPD_MASK; 
  483.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  484.          s->state_out_len = ((Int32)k1) + 4;
  485.          BZ_GET_FAST(s->k0); BZ_RAND_UPD_MASK; 
  486.          s->k0 ^= BZ_RAND_MASK; s->nblock_used++;
  487.       }
  488.    } else {
  489.       /* restore */
  490.       UInt32        c_calculatedBlockCRC = s->calculatedBlockCRC;
  491.       UChar         c_state_out_ch       = s->state_out_ch;
  492.       Int32         c_state_out_len      = s->state_out_len;
  493.       Int32         c_nblock_used        = s->nblock_used;
  494.       Int32         c_k0                 = s->k0;
  495.       UInt32*       c_tt                 = s->tt;
  496.       UInt32        c_tPos               = s->tPos;
  497.       char*         cs_next_out          = s->strm->next_out;
  498.       unsigned int  cs_avail_out         = s->strm->avail_out;
  499.       /* end restore */
  500.       UInt32 avail_out_INIT = cs_avail_out;
  501.       Int32  s_save_nblockPP = s->save_nblock+1;
  502.       while (True) {
  503.          /* try to finish existing run */
  504.          if (c_state_out_len > 0) {
  505.             while (True) {
  506.                if (cs_avail_out == 0) goto return_notr;
  507.                if (c_state_out_len == 1) break;
  508.                *( (UChar*)(cs_next_out) ) = c_state_out_ch;
  509.                BZ_UPDATE_CRC ( c_calculatedBlockCRC, c_state_out_ch );
  510.                c_state_out_len--;
  511.                cs_next_out++;
  512.                cs_avail_out--;
  513.             }
  514.             s_state_out_len_eq_one:
  515.             {
  516.                if (cs_avail_out == 0) { 
  517.                   c_state_out_len = 1; goto return_notr;
  518.                };
  519.                *( (UChar*)(cs_next_out) ) = c_state_out_ch;
  520.                BZ_UPDATE_CRC ( c_calculatedBlockCRC, c_state_out_ch );
  521.                cs_next_out++;
  522.                cs_avail_out--;
  523.             }
  524.          }   
  525.          /* can a new run be started? */
  526.          if (c_nblock_used == s_save_nblockPP) {
  527.             c_state_out_len = 0; goto return_notr;
  528.          };   
  529.          c_state_out_ch = c_k0;
  530.          BZ_GET_FAST_C(k1); c_nblock_used++;
  531.          if (k1 != c_k0) { 
  532.             c_k0 = k1; goto s_state_out_len_eq_one; 
  533.          };
  534.          if (c_nblock_used == s_save_nblockPP) 
  535.             goto s_state_out_len_eq_one;
  536.    
  537.          c_state_out_len = 2;
  538.          BZ_GET_FAST_C(k1); c_nblock_used++;
  539.          if (c_nblock_used == s_save_nblockPP) continue;
  540.          if (k1 != c_k0) { c_k0 = k1; continue; };
  541.    
  542.          c_state_out_len = 3;
  543.          BZ_GET_FAST_C(k1); c_nblock_used++;
  544.          if (c_nblock_used == s_save_nblockPP) continue;
  545.          if (k1 != c_k0) { c_k0 = k1; continue; };
  546.    
  547.          BZ_GET_FAST_C(k1); c_nblock_used++;
  548.          c_state_out_len = ((Int32)k1) + 4;
  549.          BZ_GET_FAST_C(c_k0); c_nblock_used++;
  550.       }
  551.       return_notr:
  552.       s->strm->total_out += (avail_out_INIT - cs_avail_out);
  553.       /* save */
  554.       s->calculatedBlockCRC = c_calculatedBlockCRC;
  555.       s->state_out_ch       = c_state_out_ch;
  556.       s->state_out_len      = c_state_out_len;
  557.       s->nblock_used        = c_nblock_used;
  558.       s->k0                 = c_k0;
  559.       s->tt                 = c_tt;
  560.       s->tPos               = c_tPos;
  561.       s->strm->next_out     = cs_next_out;
  562.       s->strm->avail_out    = cs_avail_out;
  563.       /* end save */
  564.    }
  565. }
  566. /*---------------------------------------------------*/
  567. __inline__ Int32 indexIntoF ( Int32 indx, Int32 *cftab )
  568. {
  569.    Int32 nb, na, mid;
  570.    nb = 0;
  571.    na = 256;
  572.    do {
  573.       mid = (nb + na) >> 1;
  574.       if (indx >= cftab[mid]) nb = mid; else na = mid;
  575.    }
  576.    while (na - nb != 1);
  577.    return nb;
  578. }
  579. /*---------------------------------------------------*/
  580. static
  581. void unRLE_obuf_to_output_SMALL ( DState* s )
  582. {
  583.    UChar k1;
  584.    if (s->blockRandomised) {
  585.       while (True) {
  586.          /* try to finish existing run */
  587.          while (True) {
  588.             if (s->strm->avail_out == 0) return;
  589.             if (s->state_out_len == 0) break;
  590.             *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
  591.             BZ_UPDATE_CRC ( s->calculatedBlockCRC, s->state_out_ch );
  592.             s->state_out_len--;
  593.             s->strm->next_out++;
  594.             s->strm->avail_out--;
  595.             s->strm->total_out++;
  596.          }
  597.    
  598.          /* can a new run be started? */
  599.          if (s->nblock_used == s->save_nblock+1) return;
  600.                
  601.    
  602.          s->state_out_len = 1;
  603.          s->state_out_ch = s->k0;
  604.          BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
  605.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  606.          if (s->nblock_used == s->save_nblock+1) continue;
  607.          if (k1 != s->k0) { s->k0 = k1; continue; };
  608.    
  609.          s->state_out_len = 2;
  610.          BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
  611.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  612.          if (s->nblock_used == s->save_nblock+1) continue;
  613.          if (k1 != s->k0) { s->k0 = k1; continue; };
  614.    
  615.          s->state_out_len = 3;
  616.          BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
  617.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  618.          if (s->nblock_used == s->save_nblock+1) continue;
  619.          if (k1 != s->k0) { s->k0 = k1; continue; };
  620.    
  621.          BZ_GET_SMALL(k1); BZ_RAND_UPD_MASK; 
  622.          k1 ^= BZ_RAND_MASK; s->nblock_used++;
  623.          s->state_out_len = ((Int32)k1) + 4;
  624.          BZ_GET_SMALL(s->k0); BZ_RAND_UPD_MASK; 
  625.          s->k0 ^= BZ_RAND_MASK; s->nblock_used++;
  626.       }
  627.    } else {
  628.       while (True) {
  629.          /* try to finish existing run */
  630.          while (True) {
  631.             if (s->strm->avail_out == 0) return;
  632.             if (s->state_out_len == 0) break;
  633.             *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
  634.             BZ_UPDATE_CRC ( s->calculatedBlockCRC, s->state_out_ch );
  635.             s->state_out_len--;
  636.             s->strm->next_out++;
  637.             s->strm->avail_out--;
  638.             s->strm->total_out++;
  639.          }
  640.    
  641.          /* can a new run be started? */
  642.          if (s->nblock_used == s->save_nblock+1) return;
  643.    
  644.          s->state_out_len = 1;
  645.          s->state_out_ch = s->k0;
  646.          BZ_GET_SMALL(k1); s->nblock_used++;
  647.          if (s->nblock_used == s->save_nblock+1) continue;
  648.          if (k1 != s->k0) { s->k0 = k1; continue; };
  649.    
  650.          s->state_out_len = 2;
  651.          BZ_GET_SMALL(k1); s->nblock_used++;
  652.          if (s->nblock_used == s->save_nblock+1) continue;
  653.          if (k1 != s->k0) { s->k0 = k1; continue; };
  654.    
  655.          s->state_out_len = 3;
  656.          BZ_GET_SMALL(k1); s->nblock_used++;
  657.          if (s->nblock_used == s->save_nblock+1) continue;
  658.          if (k1 != s->k0) { s->k0 = k1; continue; };
  659.    
  660.          BZ_GET_SMALL(k1); s->nblock_used++;
  661.          s->state_out_len = ((Int32)k1) + 4;
  662.          BZ_GET_SMALL(s->k0); s->nblock_used++;
  663.       }
  664.    }
  665. }
  666. /*---------------------------------------------------*/
  667. int BZ_API(bzDecompress) ( bz_stream *strm )
  668. {
  669.    DState* s;
  670.    if (strm == NULL) return BZ_PARAM_ERROR;
  671.    s = strm->state;
  672.    if (s == NULL) return BZ_PARAM_ERROR;
  673.    if (s->strm != strm) return BZ_PARAM_ERROR;
  674.    while (True) {
  675.       if (s->state == BZ_X_IDLE) return BZ_SEQUENCE_ERROR;
  676.       if (s->state == BZ_X_OUTPUT) {
  677.          if (s->smallDecompress)
  678.             unRLE_obuf_to_output_SMALL ( s ); else
  679.             unRLE_obuf_to_output_FAST  ( s );
  680.          if (s->nblock_used == s->save_nblock+1 && s->state_out_len == 0) {
  681.             BZ_FINALISE_CRC ( s->calculatedBlockCRC );
  682.             if (s->verbosity >= 3) 
  683.                VPrintf2 ( " {0x%x, 0x%x}", s->storedBlockCRC, 
  684.                           s->calculatedBlockCRC );
  685.             if (s->verbosity >= 2) VPrintf0 ( "]" );
  686.             if (s->calculatedBlockCRC != s->storedBlockCRC)
  687.                return BZ_DATA_ERROR;
  688.             s->calculatedCombinedCRC 
  689.                = (s->calculatedCombinedCRC << 1) | 
  690.                     (s->calculatedCombinedCRC >> 31);
  691.             s->calculatedCombinedCRC ^= s->calculatedBlockCRC;
  692.             s->state = BZ_X_BLKHDR_1;
  693.          } else {
  694.             return BZ_OK;
  695.          }
  696.       }
  697.       if (s->state >= BZ_X_MAGIC_1) {
  698.          Int32 r = decompress ( s );
  699.          if (r == BZ_STREAM_END) {
  700.             if (s->verbosity >= 3)
  701.                VPrintf2 ( "n    combined CRCs: stored = 0x%x, computed = 0x%x", 
  702.                           s->storedCombinedCRC, s->calculatedCombinedCRC );
  703.             if (s->calculatedCombinedCRC != s->storedCombinedCRC)
  704.                return BZ_DATA_ERROR;
  705.             return r;
  706.          }
  707.          if (s->state != BZ_X_OUTPUT) return r;
  708.       }
  709.    }
  710.    AssertH ( 0, 6001 );
  711.    /*notreached*/
  712. }
  713. /*---------------------------------------------------*/
  714. int BZ_API(bzDecompressEnd)  ( bz_stream *strm )
  715. {
  716.    DState* s;
  717.    if (strm == NULL) return BZ_PARAM_ERROR;
  718.    s = strm->state;
  719.    if (s == NULL) return BZ_PARAM_ERROR;
  720.    if (s->strm != strm) return BZ_PARAM_ERROR;
  721.    if (s->tt   != NULL) BZFREE(s->tt);
  722.    if (s->ll16 != NULL) BZFREE(s->ll16);
  723.    if (s->ll4  != NULL) BZFREE(s->ll4);
  724.    BZFREE(strm->state);
  725.    strm->state = NULL;
  726.    return BZ_OK;
  727. }
  728. #ifndef BZ_NO_STDIO
  729. /*---------------------------------------------------*/
  730. /*--- File I/O stuff                              ---*/
  731. /*---------------------------------------------------*/
  732. #define BZ_SETERR(eee)                    
  733. {                                         
  734.    if (bzerror != NULL) *bzerror = eee;   
  735.    if (bzf != NULL) bzf->lastErr = eee;   
  736. }
  737. typedef 
  738.    struct {
  739.       FILE*     handle;
  740.       Char      buf[BZ_MAX_UNUSED];
  741.       Int32     bufN;
  742.       Bool      writing;
  743.       bz_stream strm;
  744.       Int32     lastErr;
  745.       Bool      initialisedOk;
  746.    }
  747.    bzFile;
  748. /*---------------------------------------------*/
  749. static Bool myfeof ( FILE* f )
  750. {
  751.    Int32 c = fgetc ( f );
  752.    if (c == EOF) return True;
  753.    ungetc ( c, f );
  754.    return False;
  755. }
  756. /*---------------------------------------------------*/
  757. BZFILE* BZ_API(bzWriteOpen) 
  758.                     ( int*  bzerror,      
  759.                       FILE* f, 
  760.                       int   blockSize100k, 
  761.                       int   verbosity,
  762.                       int   workFactor )
  763. {
  764.    Int32   ret;
  765.    bzFile* bzf = NULL;
  766.    BZ_SETERR(BZ_OK);
  767.    if (f == NULL ||
  768.        (blockSize100k < 1 || blockSize100k > 9) ||
  769.        (workFactor < 0 || workFactor > 250) ||
  770.        (verbosity < 0 || verbosity > 4))
  771.       { BZ_SETERR(BZ_PARAM_ERROR); return NULL; };
  772.    if (ferror(f))
  773.       { BZ_SETERR(BZ_IO_ERROR); return NULL; };
  774.    bzf = malloc ( sizeof(bzFile) );
  775.    if (bzf == NULL)
  776.       { BZ_SETERR(BZ_MEM_ERROR); return NULL; };
  777.    BZ_SETERR(BZ_OK);
  778.    bzf->initialisedOk = False;
  779.    bzf->bufN          = 0;
  780.    bzf->handle        = f;
  781.    bzf->writing       = True;
  782.    bzf->strm.bzalloc  = NULL;
  783.    bzf->strm.bzfree   = NULL;
  784.    bzf->strm.opaque   = NULL;
  785.    if (workFactor == 0) workFactor = 30;
  786.    ret = bzCompressInit ( &(bzf->strm), blockSize100k, 
  787.                           verbosity, workFactor );
  788.    if (ret != BZ_OK)
  789.       { BZ_SETERR(ret); free(bzf); return NULL; };
  790.    bzf->strm.avail_in = 0;
  791.    bzf->initialisedOk = True;
  792.    return bzf;   
  793. }
  794. /*---------------------------------------------------*/
  795. void BZ_API(bzWrite)
  796.              ( int*    bzerror, 
  797.                BZFILE* b, 
  798.                void*   buf, 
  799.                int     len )
  800. {
  801.    Int32 n, n2, ret;
  802.    bzFile* bzf = (bzFile*)b;
  803.    BZ_SETERR(BZ_OK);
  804.    if (bzf == NULL || buf == NULL || len < 0)
  805.       { BZ_SETERR(BZ_PARAM_ERROR); return; };
  806.    if (!(bzf->writing))
  807.       { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
  808.    if (ferror(bzf->handle))
  809.       { BZ_SETERR(BZ_IO_ERROR); return; };
  810.    if (len == 0)
  811.       { BZ_SETERR(BZ_OK); return; };
  812.    bzf->strm.avail_in = len;
  813.    bzf->strm.next_in  = buf;
  814.    while (True) {
  815.       bzf->strm.avail_out = BZ_MAX_UNUSED;
  816.       bzf->strm.next_out = bzf->buf;
  817.       ret = bzCompress ( &(bzf->strm), BZ_RUN );
  818.       if (ret != BZ_RUN_OK)
  819.          { BZ_SETERR(ret); return; };
  820.       if (bzf->strm.avail_out < BZ_MAX_UNUSED) {
  821.          n = BZ_MAX_UNUSED - bzf->strm.avail_out;
  822.          n2 = fwrite ( (void*)(bzf->buf), sizeof(UChar), 
  823.                        n, bzf->handle );
  824.          if (n != n2 || ferror(bzf->handle))
  825.             { BZ_SETERR(BZ_IO_ERROR); return; };
  826.       }
  827.       if (bzf->strm.avail_in == 0)
  828.          { BZ_SETERR(BZ_OK); return; };
  829.    }
  830. }
  831. /*---------------------------------------------------*/
  832. void BZ_API(bzWriteClose)
  833.                   ( int*          bzerror, 
  834.                     BZFILE*       b, 
  835.                     int           abandon,
  836.                     unsigned int* nbytes_in,
  837.                     unsigned int* nbytes_out )
  838. {
  839.    Int32   n, n2, ret;
  840.    bzFile* bzf = (bzFile*)b;
  841.    if (bzf == NULL)
  842.       { BZ_SETERR(BZ_OK); return; };
  843.    if (!(bzf->writing))
  844.       { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
  845.    if (ferror(bzf->handle))
  846.       { BZ_SETERR(BZ_IO_ERROR); return; };
  847.    if (nbytes_in != NULL) *nbytes_in = 0;
  848.    if (nbytes_out != NULL) *nbytes_out = 0;
  849.    if ((!abandon) && bzf->lastErr == BZ_OK) {
  850.       while (True) {
  851.          bzf->strm.avail_out = BZ_MAX_UNUSED;
  852.          bzf->strm.next_out = bzf->buf;
  853.          ret = bzCompress ( &(bzf->strm), BZ_FINISH );
  854.          if (ret != BZ_FINISH_OK && ret != BZ_STREAM_END)
  855.             { BZ_SETERR(ret); return; };
  856.          if (bzf->strm.avail_out < BZ_MAX_UNUSED) {
  857.             n = BZ_MAX_UNUSED - bzf->strm.avail_out;
  858.             n2 = fwrite ( (void*)(bzf->buf), sizeof(UChar), 
  859.                           n, bzf->handle );
  860.             if (n != n2 || ferror(bzf->handle))
  861.                { BZ_SETERR(BZ_IO_ERROR); return; };
  862.          }
  863.          if (ret == BZ_STREAM_END) break;
  864.       }
  865.    }
  866.    if ( !abandon && !ferror ( bzf->handle ) ) {
  867.       fflush ( bzf->handle );
  868.       if (ferror(bzf->handle))
  869.          { BZ_SETERR(BZ_IO_ERROR); return; };
  870.    }
  871.    if (nbytes_in != NULL) *nbytes_in = bzf->strm.total_in;
  872.    if (nbytes_out != NULL) *nbytes_out = bzf->strm.total_out;
  873.    BZ_SETERR(BZ_OK);
  874.    bzCompressEnd ( &(bzf->strm) );
  875.    free ( bzf );
  876. }
  877. /*---------------------------------------------------*/
  878. BZFILE* BZ_API(bzReadOpen) 
  879.                    ( int*  bzerror, 
  880.                      FILE* f, 
  881.                      int   verbosity,
  882.                      int   small,
  883.                      void* unused,
  884.                      int   nUnused )
  885. {
  886.    bzFile* bzf = NULL;
  887.    int     ret;
  888.    BZ_SETERR(BZ_OK);
  889.    if (f == NULL || 
  890.        (small != 0 && small != 1) ||
  891.        (verbosity < 0 || verbosity > 4) ||
  892.        (unused == NULL && nUnused != 0) ||
  893.        (unused != NULL && (nUnused < 0 || nUnused > BZ_MAX_UNUSED)))
  894.       { BZ_SETERR(BZ_PARAM_ERROR); return NULL; };
  895.    if (ferror(f))
  896.       { BZ_SETERR(BZ_IO_ERROR); return NULL; };
  897.    bzf = malloc ( sizeof(bzFile) );
  898.    if (bzf == NULL) 
  899.       { BZ_SETERR(BZ_MEM_ERROR); return NULL; };
  900.    BZ_SETERR(BZ_OK);
  901.    bzf->initialisedOk = False;
  902.    bzf->handle        = f;
  903.    bzf->bufN          = 0;
  904.    bzf->writing       = False;
  905.    bzf->strm.bzalloc  = NULL;
  906.    bzf->strm.bzfree   = NULL;
  907.    bzf->strm.opaque   = NULL;
  908.    
  909.    while (nUnused > 0) {
  910.       bzf->buf[bzf->bufN] = *((UChar*)(unused)); bzf->bufN++;
  911.       unused = ((void*)( 1 + ((UChar*)(unused))  ));
  912.       nUnused--;
  913.    }
  914.    ret = bzDecompressInit ( &(bzf->strm), verbosity, small );
  915.    if (ret != BZ_OK)
  916.       { BZ_SETERR(ret); free(bzf); return NULL; };
  917.    bzf->strm.avail_in = bzf->bufN;
  918.    bzf->strm.next_in  = bzf->buf;
  919.    bzf->initialisedOk = True;
  920.    return bzf;   
  921. }
  922. /*---------------------------------------------------*/
  923. void BZ_API(bzReadClose) ( int *bzerror, BZFILE *b )
  924. {
  925.    bzFile* bzf = (bzFile*)b;
  926.    BZ_SETERR(BZ_OK);
  927.    if (bzf == NULL)
  928.       { BZ_SETERR(BZ_OK); return; };
  929.    if (bzf->writing)
  930.       { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
  931.    if (bzf->initialisedOk)
  932.       (void)bzDecompressEnd ( &(bzf->strm) );
  933.    free ( bzf );
  934. }
  935. /*---------------------------------------------------*/
  936. int BZ_API(bzRead) 
  937.            ( int*    bzerror, 
  938.              BZFILE* b, 
  939.              void*   buf, 
  940.              int     len )
  941. {
  942.    Int32   n, ret;
  943.    bzFile* bzf = (bzFile*)b;
  944.    BZ_SETERR(BZ_OK);
  945.    if (bzf == NULL || buf == NULL || len < 0)
  946.       { BZ_SETERR(BZ_PARAM_ERROR); return 0; };
  947.    if (bzf->writing)
  948.       { BZ_SETERR(BZ_SEQUENCE_ERROR); return 0; };
  949.    if (len == 0)
  950.       { BZ_SETERR(BZ_OK); return 0; };
  951.    bzf->strm.avail_out = len;
  952.    bzf->strm.next_out = buf;
  953.    while (True) {
  954.       if (ferror(bzf->handle)) 
  955.          { BZ_SETERR(BZ_IO_ERROR); return 0; };
  956.       if (bzf->strm.avail_in == 0 && !myfeof(bzf->handle)) {
  957.          n = fread ( bzf->buf, sizeof(UChar), 
  958.                      BZ_MAX_UNUSED, bzf->handle );
  959.          if (ferror(bzf->handle))
  960.             { BZ_SETERR(BZ_IO_ERROR); return 0; };
  961.          bzf->bufN = n;
  962.          bzf->strm.avail_in = bzf->bufN;
  963.          bzf->strm.next_in = bzf->buf;
  964.       }
  965.       ret = bzDecompress ( &(bzf->strm) );
  966.       if (ret != BZ_OK && ret != BZ_STREAM_END)
  967.          { BZ_SETERR(ret); return 0; };
  968.       if (ret == BZ_OK && myfeof(bzf->handle) && 
  969.           bzf->strm.avail_in == 0 && bzf->strm.avail_out > 0)
  970.          { BZ_SETERR(BZ_UNEXPECTED_EOF); return 0; };
  971.       if (ret == BZ_STREAM_END)
  972.          { BZ_SETERR(BZ_STREAM_END);
  973.            return len - bzf->strm.avail_out; };
  974.       if (bzf->strm.avail_out == 0)
  975.          { BZ_SETERR(BZ_OK); return len; };
  976.       
  977.    }
  978.    return 0; /*not reached*/
  979. }
  980. /*---------------------------------------------------*/
  981. void BZ_API(bzReadGetUnused) 
  982.                      ( int*    bzerror, 
  983.                        BZFILE* b, 
  984.                        void**  unused, 
  985.                        int*    nUnused )
  986. {
  987.    bzFile* bzf = (bzFile*)b;
  988.    if (bzf == NULL)
  989.       { BZ_SETERR(BZ_PARAM_ERROR); return; };
  990.    if (bzf->lastErr != BZ_STREAM_END)
  991.       { BZ_SETERR(BZ_SEQUENCE_ERROR); return; };
  992.    if (unused == NULL || nUnused == NULL)
  993.       { BZ_SETERR(BZ_PARAM_ERROR); return; };
  994.    BZ_SETERR(BZ_OK);
  995.    *nUnused = bzf->strm.avail_in;
  996.    *unused = bzf->strm.next_in;
  997. }
  998. #endif
  999. /*---------------------------------------------------*/
  1000. /*--- Misc convenience stuff                      ---*/
  1001. /*---------------------------------------------------*/
  1002. /*---------------------------------------------------*/
  1003. int BZ_API(bzBuffToBuffCompress) 
  1004.                          ( char*         dest, 
  1005.                            unsigned int* destLen,
  1006.                            char*         source, 
  1007.                            unsigned int  sourceLen,
  1008.                            int           blockSize100k, 
  1009.                            int           verbosity, 
  1010.                            int           workFactor )
  1011. {
  1012.    bz_stream strm;
  1013.    int ret;
  1014.    if (dest == NULL || destLen == NULL || 
  1015.        source == NULL ||
  1016.        blockSize100k < 1 || blockSize100k > 9 ||
  1017.        verbosity < 0 || verbosity > 4 ||
  1018.        workFactor < 0 || workFactor > 250) 
  1019.       return BZ_PARAM_ERROR;
  1020.    if (workFactor == 0) workFactor = 30;
  1021.    strm.bzalloc = NULL;
  1022.    strm.bzfree = NULL;
  1023.    strm.opaque = NULL;
  1024.    ret = bzCompressInit ( &strm, blockSize100k, 
  1025.                           verbosity, workFactor );
  1026.    if (ret != BZ_OK) return ret;
  1027.    strm.next_in = source;
  1028.    strm.next_out = dest;
  1029.    strm.avail_in = sourceLen;
  1030.    strm.avail_out = *destLen;
  1031.    ret = bzCompress ( &strm, BZ_FINISH );
  1032.    if (ret == BZ_FINISH_OK) goto output_overflow;
  1033.    if (ret != BZ_STREAM_END) goto errhandler;
  1034.    /* normal termination */
  1035.    *destLen -= strm.avail_out;   
  1036.    bzCompressEnd ( &strm );
  1037.    return BZ_OK;
  1038.    output_overflow:
  1039.    bzCompressEnd ( &strm );
  1040.    return BZ_OUTBUFF_FULL;
  1041.    errhandler:
  1042.    bzCompressEnd ( &strm );
  1043.    return ret;
  1044. }
  1045. /*---------------------------------------------------*/
  1046. int BZ_API(bzBuffToBuffDecompress) 
  1047.                            ( char*         dest, 
  1048.                              unsigned int* destLen,
  1049.                              char*         source, 
  1050.                              unsigned int  sourceLen,
  1051.                              int           small,
  1052.                              int           verbosity )
  1053. {
  1054.    bz_stream strm;
  1055.    int ret;
  1056.    if (dest == NULL || destLen == NULL || 
  1057.        source == NULL ||
  1058.        (small != 0 && small != 1) ||
  1059.        verbosity < 0 || verbosity > 4) 
  1060.           return BZ_PARAM_ERROR;
  1061.    strm.bzalloc = NULL;
  1062.    strm.bzfree = NULL;
  1063.    strm.opaque = NULL;
  1064.    ret = bzDecompressInit ( &strm, verbosity, small );
  1065.    if (ret != BZ_OK) return ret;
  1066.    strm.next_in = source;
  1067.    strm.next_out = dest;
  1068.    strm.avail_in = sourceLen;
  1069.    strm.avail_out = *destLen;
  1070.    ret = bzDecompress ( &strm );
  1071.    if (ret == BZ_OK) goto output_overflow_or_eof;
  1072.    if (ret != BZ_STREAM_END) goto errhandler;
  1073.    /* normal termination */
  1074.    *destLen -= strm.avail_out;
  1075.    bzDecompressEnd ( &strm );
  1076.    return BZ_OK;
  1077.    output_overflow_or_eof:
  1078.    if (strm.avail_out > 0) {
  1079.       bzDecompressEnd ( &strm );
  1080.       return BZ_UNEXPECTED_EOF;
  1081.    } else {
  1082.       bzDecompressEnd ( &strm );
  1083.       return BZ_OUTBUFF_FULL;
  1084.    };      
  1085.    errhandler:
  1086.    bzDecompressEnd ( &strm );
  1087.    return BZ_SEQUENCE_ERROR;
  1088. }
  1089. /*---------------------------------------------------*/
  1090. /*--
  1091.    Code contributed by Yoshioka Tsuneo
  1092.    (QWF00133@niftyserve.or.jp/tsuneo-y@is.aist-nara.ac.jp),
  1093.    to support better zlib compatibility.
  1094.    This code is not _officially_ part of libbzip2 (yet);
  1095.    I haven't tested it, documented it, or considered the
  1096.    threading-safeness of it.
  1097.    If this code breaks, please contact both Yoshioka and me.
  1098. --*/
  1099. /*---------------------------------------------------*/
  1100. /*---------------------------------------------------*/
  1101. /*--
  1102.    return version like "0.9.0c".
  1103. --*/
  1104. const char * BZ_API(bzlibVersion)(void)
  1105. {
  1106.    return BZ_VERSION;
  1107. }
  1108. #ifndef BZ_NO_STDIO
  1109. /*---------------------------------------------------*/
  1110. #if defined(_WIN32) || defined(OS2) || defined(MSDOS)
  1111. #   include <fcntl.h>
  1112. #   include <io.h>
  1113. #   define SET_BINARY_MODE(file) setmode(fileno(file),O_BINARY)
  1114. #else
  1115. #   define SET_BINARY_MODE(file)
  1116. #endif
  1117. static
  1118. BZFILE * bzopen_or_bzdopen
  1119.                ( const char *path,   /* no use when bzdopen */
  1120.                  int fd,             /* no use when bzdopen */
  1121.                  const char *mode,
  1122.                  int open_mode)      /* bzopen: 0, bzdopen:1 */
  1123. {
  1124.    int    bzerr;
  1125.    char   unused[BZ_MAX_UNUSED];
  1126.    int    blockSize100k = 9;
  1127.    int    writing       = 0;
  1128.    char   mode2[10]     = "";
  1129.    FILE   *fp           = NULL;
  1130.    BZFILE *bzfp         = NULL;
  1131.    int    verbosity     = 0;
  1132.    int    workFactor    = 30;
  1133.    int    smallMode     = 0;
  1134.    int    nUnused       = 0; 
  1135.    if(mode==NULL){return NULL;}
  1136.    while(*mode){
  1137.       switch(*mode){
  1138.       case 'r':
  1139.          writing = 0;break;
  1140.       case 'w':
  1141.          writing = 1;break;
  1142.       case 's':
  1143.          smallMode = 1;break;
  1144.       default:
  1145.          if(isdigit(*mode)){
  1146.             blockSize100k = 0;
  1147.             while(isdigit(*mode)){
  1148.                blockSize100k = blockSize100k*10 + *mode-'0';
  1149.                mode++;
  1150.             }
  1151.          }else{
  1152.             /* ignore */
  1153.          }
  1154.       }
  1155.       mode++;
  1156.    }
  1157.    strcat(mode2, writing ? "w" : "r" );
  1158.    strcat(mode2,"b");   /* binary mode */
  1159.    if(open_mode==0){
  1160.       if(path==NULL || strcmp(path,"")==0){
  1161.         fp = (writing ? stdout : stdin);
  1162.         SET_BINARY_MODE(fp);
  1163.       }else{
  1164.         fp = fopen(path,mode2);
  1165.       }
  1166.    }else{
  1167. #ifdef BZ_STRICT_ANSI
  1168.       fp = NULL;
  1169. #else
  1170.       fp = fdopen(fd,mode2);
  1171. #endif
  1172.    }
  1173.    if(fp==NULL){return NULL;}
  1174.    if(writing){
  1175.       bzfp = bzWriteOpen(&bzerr,fp,blockSize100k,verbosity,workFactor);
  1176.    }else{
  1177.       bzfp = bzReadOpen(&bzerr,fp,verbosity,smallMode,unused,nUnused);
  1178.    }
  1179.    if(bzfp==NULL){
  1180.       if(fp!=stdin && fp!=stdout) fclose(fp);
  1181.       return NULL;
  1182.    }
  1183.    return bzfp;
  1184. }
  1185. /*---------------------------------------------------*/
  1186. /*--
  1187.    open file for read or write.
  1188.       ex) bzopen("file","w9")
  1189.       case path="" or NULL => use stdin or stdout.
  1190. --*/
  1191. BZFILE * BZ_API(bzopen)
  1192.                ( const char *path,
  1193.                  const char *mode )
  1194. {
  1195.    return bzopen_or_bzdopen(path,-1,mode,/*bzopen*/0);
  1196. }
  1197. /*---------------------------------------------------*/
  1198. BZFILE * BZ_API(bzdopen)
  1199.                ( int fd,
  1200.                  const char *mode )
  1201. {
  1202.    return bzopen_or_bzdopen(NULL,fd,mode,/*bzdopen*/1);
  1203. }
  1204. /*---------------------------------------------------*/
  1205. int BZ_API(bzread) (BZFILE* b, void* buf, int len )
  1206. {
  1207.    int bzerr, nread;
  1208.    if (((bzFile*)b)->lastErr == BZ_STREAM_END) return 0;
  1209.    nread = bzRead(&bzerr,b,buf,len);
  1210.    if (bzerr == BZ_OK || bzerr == BZ_STREAM_END) {
  1211.       return nread;
  1212.    } else {
  1213.       return -1;
  1214.    }
  1215. }
  1216. /*---------------------------------------------------*/
  1217. int BZ_API(bzwrite) (BZFILE* b, void* buf, int len )
  1218. {
  1219.    int bzerr;
  1220.    bzWrite(&bzerr,b,buf,len);
  1221.    if(bzerr == BZ_OK){
  1222.       return len;
  1223.    }else{
  1224.       return -1;
  1225.    }
  1226. }
  1227. /*---------------------------------------------------*/
  1228. int BZ_API(bzflush) (BZFILE *b)
  1229. {
  1230.    /* do nothing now... */
  1231.    return 0;
  1232. }
  1233. /*---------------------------------------------------*/
  1234. void BZ_API(bzclose) (BZFILE* b)
  1235. {
  1236.    int bzerr;
  1237.    FILE *fp = ((bzFile *)b)->handle;
  1238.    
  1239.    if(b==NULL){return;}
  1240.    if(((bzFile*)b)->writing){
  1241.       bzWriteClose(&bzerr,b,0,NULL,NULL);
  1242.       if(bzerr != BZ_OK){
  1243.          bzWriteClose(NULL,b,1,NULL,NULL);
  1244.       }
  1245.    }else{
  1246.       bzReadClose(&bzerr,b);
  1247.    }
  1248.    if(fp!=stdin && fp!=stdout){
  1249.       fclose(fp);
  1250.    }
  1251. }
  1252. /*---------------------------------------------------*/
  1253. /*--
  1254.    return last error code 
  1255. --*/
  1256. static char *bzerrorstrings[] = {
  1257.        "OK"
  1258.       ,"SEQUENCE_ERROR"
  1259.       ,"PARAM_ERROR"
  1260.       ,"MEM_ERROR"
  1261.       ,"DATA_ERROR"
  1262.       ,"DATA_ERROR_MAGIC"
  1263.       ,"IO_ERROR"
  1264.       ,"UNEXPECTED_EOF"
  1265.       ,"OUTBUFF_FULL"
  1266.       ,"???"   /* for future */
  1267.       ,"???"   /* for future */
  1268.       ,"???"   /* for future */
  1269.       ,"???"   /* for future */
  1270.       ,"???"   /* for future */
  1271.       ,"???"   /* for future */
  1272. };
  1273. const char * BZ_API(bzerror) (BZFILE *b, int *errnum)
  1274. {
  1275.    int err = ((bzFile *)b)->lastErr;
  1276.    if(err>0) err = 0;
  1277.    *errnum = err;
  1278.    return bzerrorstrings[err*-1];
  1279. }
  1280. #endif
  1281. /*-------------------------------------------------------------*/
  1282. /*--- end                                           bzlib.c ---*/
  1283. /*-------------------------------------------------------------*/