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

生物技术

开发平台:

C/C++

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