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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bzip2.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:42:48  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*-----------------------------------------------------------*/
  10. /*--- A block-sorting, lossless compressor        bzip2.c ---*/
  11. /*-----------------------------------------------------------*/
  12. /*--
  13.   This file is a part of bzip2 and/or libbzip2, a program and
  14.   library for lossless, block-sorting data compression.
  15.   Copyright (C) 1996-2002 Julian R Seward.  All rights reserved.
  16.   Redistribution and use in source and binary forms, with or without
  17.   modification, are permitted provided that the following conditions
  18.   are met:
  19.   1. Redistributions of source code must retain the above copyright
  20.      notice, this list of conditions and the following disclaimer.
  21.   2. The origin of this software must not be misrepresented; you must 
  22.      not claim that you wrote the original software.  If you use this 
  23.      software in a product, an acknowledgment in the product 
  24.      documentation would be appreciated but is not required.
  25.   3. Altered source versions must be plainly marked as such, and must
  26.      not be misrepresented as being the original software.
  27.   4. The name of the author may not be used to endorse or promote 
  28.      products derived from this software without specific prior written 
  29.      permission.
  30.   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  31.   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  32.   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33.   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  34.   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35.   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  36.   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  37.   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  38.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  39.   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  40.   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  41.   Julian Seward, Cambridge, UK.
  42.   jseward@acm.org
  43.   bzip2/libbzip2 version 1.0 of 21 March 2000
  44.   This program is based on (at least) the work of:
  45.      Mike Burrows
  46.      David Wheeler
  47.      Peter Fenwick
  48.      Alistair Moffat
  49.      Radford Neal
  50.      Ian H. Witten
  51.      Robert Sedgewick
  52.      Jon L. Bentley
  53.   For more information on these sources, see the manual.
  54. --*/
  55. /*----------------------------------------------------*/
  56. /*--- IMPORTANT                                    ---*/
  57. /*----------------------------------------------------*/
  58. /*--
  59.    WARNING:
  60.       This program and library (attempts to) compress data by 
  61.       performing several non-trivial transformations on it.  
  62.       Unless you are 100% familiar with *all* the algorithms 
  63.       contained herein, and with the consequences of modifying them, 
  64.       you should NOT meddle with the compression or decompression 
  65.       machinery.  Incorrect changes can and very likely *will* 
  66.       lead to disasterous loss of data.
  67.    DISCLAIMER:
  68.       I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE
  69.       USE OF THIS PROGRAM, HOWSOEVER CAUSED.
  70.       Every compression of a file implies an assumption that the
  71.       compressed file can be decompressed to reproduce the original.
  72.       Great efforts in design, coding and testing have been made to
  73.       ensure that this program works correctly.  However, the
  74.       complexity of the algorithms, and, in particular, the presence
  75.       of various special cases in the code which occur with very low
  76.       but non-zero probability make it impossible to rule out the
  77.       possibility of bugs remaining in the program.  DO NOT COMPRESS
  78.       ANY DATA WITH THIS PROGRAM AND/OR LIBRARY UNLESS YOU ARE PREPARED 
  79.       TO ACCEPT THE POSSIBILITY, HOWEVER SMALL, THAT THE DATA WILL 
  80.       NOT BE RECOVERABLE.
  81.       That is not to say this program is inherently unreliable.
  82.       Indeed, I very much hope the opposite is true.  bzip2/libbzip2
  83.       has been carefully constructed and extensively tested.
  84.    PATENTS:
  85.       To the best of my knowledge, bzip2/libbzip2 does not use any 
  86.       patented algorithms.  However, I do not have the resources 
  87.       available to carry out a full patent search.  Therefore I cannot 
  88.       give any guarantee of the above statement.
  89. --*/
  90. /*----------------------------------------------------*/
  91. /*--- and now for something much more pleasant :-) ---*/
  92. /*----------------------------------------------------*/
  93. /*---------------------------------------------*/
  94. /*--
  95.   Place a 1 beside your platform, and 0 elsewhere.
  96. --*/
  97. /*--
  98.   Generic 32-bit Unix.
  99.   Also works on 64-bit Unix boxes.
  100.   This is the default.
  101. --*/
  102. #define BZ_UNIX      1
  103. /*--
  104.   Win32, as seen by Jacob Navia's excellent
  105.   port of (Chris Fraser & David Hanson)'s excellent
  106.   lcc compiler.  Or with MS Visual C.
  107.   This is selected automatically if compiled by a compiler which
  108.   defines _WIN32, not including the Cygwin GCC.
  109. --*/
  110. #define BZ_LCCWIN32  0
  111. #if defined(_WIN32) && !defined(__CYGWIN__)
  112. #undef  BZ_LCCWIN32
  113. #define BZ_LCCWIN32 1
  114. #undef  BZ_UNIX
  115. #define BZ_UNIX 0
  116. #endif
  117. /*---------------------------------------------*/
  118. /*--
  119.   Some stuff for all platforms.
  120. --*/
  121. #include <stdio.h>
  122. #include <stdlib.h>
  123. #include <string.h>
  124. #include <signal.h>
  125. #include <math.h>
  126. #include <errno.h>
  127. #include <ctype.h>
  128. #include "bzlib.h"
  129. #define ERROR_IF_EOF(i)       { if ((i) == EOF)  ioError(); }
  130. #define ERROR_IF_NOT_ZERO(i)  { if ((i) != 0)    ioError(); }
  131. #define ERROR_IF_MINUS_ONE(i) { if ((i) == (-1)) ioError(); }
  132. /*---------------------------------------------*/
  133. /*--
  134.    Platform-specific stuff.
  135. --*/
  136. #if BZ_UNIX
  137. #   include <fcntl.h>
  138. #   include <sys/types.h>
  139. #   include <utime.h>
  140. #   include <unistd.h>
  141. #   include <sys/stat.h>
  142. #   include <sys/times.h>
  143. #   define PATH_SEP    '/'
  144. #   define MY_LSTAT    lstat
  145. #   define MY_STAT     stat
  146. #   define MY_S_ISREG  S_ISREG
  147. #   define MY_S_ISDIR  S_ISDIR
  148. #   define APPEND_FILESPEC(root, name) 
  149.       root=snocString((root), (name))
  150. #   define APPEND_FLAG(root, name) 
  151.       root=snocString((root), (name))
  152. #   define SET_BINARY_MODE(fd) /**/
  153. #   ifdef __GNUC__
  154. #      define NORETURN __attribute__ ((noreturn))
  155. #   else
  156. #      define NORETURN /**/
  157. #   endif
  158. #   ifdef __DJGPP__
  159. #     include <io.h>
  160. #     include <fcntl.h>
  161. #     undef MY_LSTAT
  162. #     undef MY_STAT
  163. #     define MY_LSTAT stat
  164. #     define MY_STAT stat
  165. #     undef SET_BINARY_MODE
  166. #     define SET_BINARY_MODE(fd)                        
  167.         do {                                            
  168.            int retVal = setmode ( fileno ( fd ),        
  169.                                   O_BINARY );           
  170.            ERROR_IF_MINUS_ONE ( retVal );               
  171.         } while ( 0 )
  172. #   endif
  173. #   ifdef __CYGWIN__
  174. #     include <io.h>
  175. #     include <fcntl.h>
  176. #     undef SET_BINARY_MODE
  177. #     define SET_BINARY_MODE(fd)                        
  178.         do {                                            
  179.            int retVal = setmode ( fileno ( fd ),        
  180.                                   O_BINARY );           
  181.            ERROR_IF_MINUS_ONE ( retVal );               
  182.         } while ( 0 )
  183. #   endif
  184. #endif /* BZ_UNIX */
  185. #if BZ_LCCWIN32
  186. #   include <io.h>
  187. #   include <fcntl.h>
  188. #   include <sysstat.h>
  189. #   define NORETURN       /**/
  190. #   define PATH_SEP       '\'
  191. #   define MY_LSTAT       _stat
  192. #   define MY_STAT        _stat
  193. #   define MY_S_ISREG(x)  ((x) & _S_IFREG)
  194. #   define MY_S_ISDIR(x)  ((x) & _S_IFDIR)
  195. #   define APPEND_FLAG(root, name) 
  196.       root=snocString((root), (name))
  197. #   define APPEND_FILESPEC(root, name)                
  198.       root = snocString ((root), (name))
  199. #   define SET_BINARY_MODE(fd)                        
  200.       do {                                            
  201.          int retVal = setmode ( fileno ( fd ),        
  202.                                 O_BINARY );           
  203.          ERROR_IF_MINUS_ONE ( retVal );               
  204.       } while ( 0 )
  205. #endif /* BZ_LCCWIN32 */
  206. /*---------------------------------------------*/
  207. /*--
  208.   Some more stuff for all platforms :-)
  209. --*/
  210. typedef char            Char;
  211. typedef unsigned char   Bool;
  212. typedef unsigned char   UChar;
  213. typedef int             Int32;
  214. typedef unsigned int    UInt32;
  215. typedef short           Int16;
  216. typedef unsigned short  UInt16;
  217.                                        
  218. #define True  ((Bool)1)
  219. #define False ((Bool)0)
  220. /*--
  221.   IntNative is your platform's `native' int size.
  222.   Only here to avoid probs with 64-bit platforms.
  223. --*/
  224. typedef int IntNative;
  225. /*---------------------------------------------------*/
  226. /*--- Misc (file handling) data decls             ---*/
  227. /*---------------------------------------------------*/
  228. Int32   verbosity;
  229. Bool    keepInputFiles, smallMode, deleteOutputOnInterrupt;
  230. Bool    forceOverwrite, testFailsExist, unzFailsExist, noisy;
  231. Int32   numFileNames, numFilesProcessed, blockSize100k;
  232. Int32   exitValue;
  233. /*-- source modes; F==file, I==stdin, O==stdout --*/
  234. #define SM_I2O           1
  235. #define SM_F2O           2
  236. #define SM_F2F           3
  237. /*-- operation modes --*/
  238. #define OM_Z             1
  239. #define OM_UNZ           2
  240. #define OM_TEST          3
  241. Int32   opMode;
  242. Int32   srcMode;
  243. #define FILE_NAME_LEN 1034
  244. Int32   longestFileName;
  245. Char    inName [FILE_NAME_LEN];
  246. Char    outName[FILE_NAME_LEN];
  247. Char    tmpName[FILE_NAME_LEN];
  248. Char    *progName;
  249. Char    progNameReally[FILE_NAME_LEN];
  250. FILE    *outputHandleJustInCase;
  251. Int32   workFactor;
  252. static void    panic                 ( Char* )   NORETURN;
  253. static void    ioError               ( void )    NORETURN;
  254. static void    outOfMemory           ( void )    NORETURN;
  255. static void    configError           ( void )    NORETURN;
  256. static void    crcError              ( void )    NORETURN;
  257. static void    cleanUpAndFail        ( Int32 )   NORETURN;
  258. static void    compressedStreamEOF   ( void )    NORETURN;
  259. static void    copyFileName ( Char*, Char* );
  260. static void*   myMalloc     ( Int32 );
  261. /*---------------------------------------------------*/
  262. /*--- An implementation of 64-bit ints.  Sigh.    ---*/
  263. /*--- Roll on widespread deployment of ANSI C9X ! ---*/
  264. /*---------------------------------------------------*/
  265. typedef
  266.    struct { UChar b[8]; } 
  267.    UInt64;
  268. static
  269. void uInt64_from_UInt32s ( UInt64* n, UInt32 lo32, UInt32 hi32 )
  270. {
  271.    n->b[7] = (UChar)((hi32 >> 24) & 0xFF);
  272.    n->b[6] = (UChar)((hi32 >> 16) & 0xFF);
  273.    n->b[5] = (UChar)((hi32 >> 8)  & 0xFF);
  274.    n->b[4] = (UChar) (hi32        & 0xFF);
  275.    n->b[3] = (UChar)((lo32 >> 24) & 0xFF);
  276.    n->b[2] = (UChar)((lo32 >> 16) & 0xFF);
  277.    n->b[1] = (UChar)((lo32 >> 8)  & 0xFF);
  278.    n->b[0] = (UChar) (lo32        & 0xFF);
  279. }
  280. static
  281. double uInt64_to_double ( UInt64* n )
  282. {
  283.    Int32  i;
  284.    double base = 1.0;
  285.    double sum  = 0.0;
  286.    for (i = 0; i < 8; i++) {
  287.       sum  += base * (double)(n->b[i]);
  288.       base *= 256.0;
  289.    }
  290.    return sum;
  291. }
  292. static
  293. Bool uInt64_isZero ( UInt64* n )
  294. {
  295.    Int32 i;
  296.    for (i = 0; i < 8; i++)
  297.       if (n->b[i] != 0) return 0;
  298.    return 1;
  299. }
  300. /* Divide *n by 10, and return the remainder.  */
  301. static 
  302. Int32 uInt64_qrm10 ( UInt64* n )
  303. {
  304.    UInt32 rem, tmp;
  305.    Int32  i;
  306.    rem = 0;
  307.    for (i = 7; i >= 0; i--) {
  308.       tmp = rem * 256 + n->b[i];
  309.       n->b[i] = tmp / 10;
  310.       rem = tmp % 10;
  311.    }
  312.    return rem;
  313. }
  314. /* ... and the Whole Entire Point of all this UInt64 stuff is
  315.    so that we can supply the following function.
  316. */
  317. static
  318. void uInt64_toAscii ( char* outbuf, UInt64* n )
  319. {
  320.    Int32  i, q;
  321.    UChar  buf[32];
  322.    Int32  nBuf   = 0;
  323.    UInt64 n_copy = *n;
  324.    do {
  325.       q = uInt64_qrm10 ( &n_copy );
  326.       buf[nBuf] = q + '0';
  327.       nBuf++;
  328.    } while (!uInt64_isZero(&n_copy));
  329.    outbuf[nBuf] = 0;
  330.    for (i = 0; i < nBuf; i++) 
  331.       outbuf[i] = buf[nBuf-i-1];
  332. }
  333. /*---------------------------------------------------*/
  334. /*--- Processing of complete files and streams    ---*/
  335. /*---------------------------------------------------*/
  336. /*---------------------------------------------*/
  337. static 
  338. Bool myfeof ( FILE* f )
  339. {
  340.    Int32 c = fgetc ( f );
  341.    if (c == EOF) return True;
  342.    ungetc ( c, f );
  343.    return False;
  344. }
  345. /*---------------------------------------------*/
  346. static 
  347. void compressStream ( FILE *stream, FILE *zStream )
  348. {
  349.    BZFILE* bzf = NULL;
  350.    UChar   ibuf[5000];
  351.    Int32   nIbuf;
  352.    UInt32  nbytes_in_lo32, nbytes_in_hi32;
  353.    UInt32  nbytes_out_lo32, nbytes_out_hi32;
  354.    Int32   bzerr, bzerr_dummy, ret;
  355.    SET_BINARY_MODE(stream);
  356.    SET_BINARY_MODE(zStream);
  357.    if (ferror(stream)) goto errhandler_io;
  358.    if (ferror(zStream)) goto errhandler_io;
  359.    bzf = BZ2_bzWriteOpen ( &bzerr, zStream, 
  360.                            blockSize100k, verbosity, workFactor );   
  361.    if (bzerr != BZ_OK) goto errhandler;
  362.    if (verbosity >= 2) fprintf ( stderr, "n" );
  363.    while (True) {
  364.       if (myfeof(stream)) break;
  365.       nIbuf = fread ( ibuf, sizeof(UChar), 5000, stream );
  366.       if (ferror(stream)) goto errhandler_io;
  367.       if (nIbuf > 0) BZ2_bzWrite ( &bzerr, bzf, (void*)ibuf, nIbuf );
  368.       if (bzerr != BZ_OK) goto errhandler;
  369.    }
  370.    BZ2_bzWriteClose64 ( &bzerr, bzf, 0, 
  371.                         &nbytes_in_lo32, &nbytes_in_hi32,
  372.                         &nbytes_out_lo32, &nbytes_out_hi32 );
  373.    if (bzerr != BZ_OK) goto errhandler;
  374.    if (ferror(zStream)) goto errhandler_io;
  375.    ret = fflush ( zStream );
  376.    if (ret == EOF) goto errhandler_io;
  377.    if (zStream != stdout) {
  378.       ret = fclose ( zStream );
  379.       outputHandleJustInCase = NULL;
  380.       if (ret == EOF) goto errhandler_io;
  381.    }
  382.    outputHandleJustInCase = NULL;
  383.    if (ferror(stream)) goto errhandler_io;
  384.    ret = fclose ( stream );
  385.    if (ret == EOF) goto errhandler_io;
  386.    if (verbosity >= 1) {
  387.       if (nbytes_in_lo32 == 0 && nbytes_in_hi32 == 0) {
  388.  fprintf ( stderr, " no data compressed.n");
  389.       } else {
  390.  Char   buf_nin[32], buf_nout[32];
  391.  UInt64 nbytes_in,   nbytes_out;
  392.  double nbytes_in_d, nbytes_out_d;
  393.  uInt64_from_UInt32s ( &nbytes_in, 
  394.        nbytes_in_lo32, nbytes_in_hi32 );
  395.  uInt64_from_UInt32s ( &nbytes_out, 
  396.        nbytes_out_lo32, nbytes_out_hi32 );
  397.  nbytes_in_d  = uInt64_to_double ( &nbytes_in );
  398.  nbytes_out_d = uInt64_to_double ( &nbytes_out );
  399.  uInt64_toAscii ( buf_nin, &nbytes_in );
  400.  uInt64_toAscii ( buf_nout, &nbytes_out );
  401.  fprintf ( stderr, "%6.3f:1, %6.3f bits/byte, "
  402.    "%5.2f%% saved, %s in, %s out.n",
  403.    nbytes_in_d / nbytes_out_d,
  404.    (8.0 * nbytes_out_d) / nbytes_in_d,
  405.    100.0 * (1.0 - nbytes_out_d / nbytes_in_d),
  406.    buf_nin,
  407.    buf_nout
  408.  );
  409.       }
  410.    }
  411.    return;
  412.    errhandler:
  413.    BZ2_bzWriteClose64 ( &bzerr_dummy, bzf, 1, 
  414.                         &nbytes_in_lo32, &nbytes_in_hi32,
  415.                         &nbytes_out_lo32, &nbytes_out_hi32 );
  416.    switch (bzerr) {
  417.       case BZ_CONFIG_ERROR:
  418.          configError(); break;
  419.       case BZ_MEM_ERROR:
  420.          outOfMemory (); break;
  421.       case BZ_IO_ERROR:
  422.          errhandler_io:
  423.          ioError(); break;
  424.       default:
  425.          panic ( "compress:unexpected error" );
  426.    }
  427.    panic ( "compress:end" );
  428.    /*notreached*/
  429. }
  430. /*---------------------------------------------*/
  431. static 
  432. Bool uncompressStream ( FILE *zStream, FILE *stream )
  433. {
  434.    BZFILE* bzf = NULL;
  435.    Int32   bzerr, bzerr_dummy, ret, nread, streamNo, i;
  436.    UChar   obuf[5000];
  437.    UChar   unused[BZ_MAX_UNUSED];
  438.    Int32   nUnused;
  439.    UChar*  unusedTmp;
  440.    nUnused = 0;
  441.    streamNo = 0;
  442.    SET_BINARY_MODE(stream);
  443.    SET_BINARY_MODE(zStream);
  444.    if (ferror(stream)) goto errhandler_io;
  445.    if (ferror(zStream)) goto errhandler_io;
  446.    while (True) {
  447.       bzf = BZ2_bzReadOpen ( 
  448.                &bzerr, zStream, verbosity, 
  449.                (int)smallMode, unused, nUnused
  450.             );
  451.       if (bzf == NULL || bzerr != BZ_OK) goto errhandler;
  452.       streamNo++;
  453.       while (bzerr == BZ_OK) {
  454.          nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
  455.          if (bzerr == BZ_DATA_ERROR_MAGIC) goto trycat;
  456.          if ((bzerr == BZ_OK || bzerr == BZ_STREAM_END) && nread > 0)
  457.             fwrite ( obuf, sizeof(UChar), nread, stream );
  458.          if (ferror(stream)) goto errhandler_io;
  459.       }
  460.       if (bzerr != BZ_STREAM_END) goto errhandler;
  461.       BZ2_bzReadGetUnused ( &bzerr, bzf, (void**)(&unusedTmp), &nUnused );
  462.       if (bzerr != BZ_OK) panic ( "decompress:bzReadGetUnused" );
  463.       for (i = 0; i < nUnused; i++) unused[i] = unusedTmp[i];
  464.       BZ2_bzReadClose ( &bzerr, bzf );
  465.       if (bzerr != BZ_OK) panic ( "decompress:bzReadGetUnused" );
  466.       if (nUnused == 0 && myfeof(zStream)) break;
  467.    }
  468.    closeok:
  469.    if (ferror(zStream)) goto errhandler_io;
  470.    ret = fclose ( zStream );
  471.    if (ret == EOF) goto errhandler_io;
  472.    if (ferror(stream)) goto errhandler_io;
  473.    ret = fflush ( stream );
  474.    if (ret != 0) goto errhandler_io;
  475.    if (stream != stdout) {
  476.       ret = fclose ( stream );
  477.       outputHandleJustInCase = NULL;
  478.       if (ret == EOF) goto errhandler_io;
  479.    }
  480.    outputHandleJustInCase = NULL;
  481.    if (verbosity >= 2) fprintf ( stderr, "n    " );
  482.    return True;
  483.    trycat: 
  484.    if (forceOverwrite) {
  485.       rewind(zStream);
  486.       while (True) {
  487.         if (myfeof(zStream)) break;
  488.         nread = fread ( obuf, sizeof(UChar), 5000, zStream );
  489.         if (ferror(zStream)) goto errhandler_io;
  490.         if (nread > 0) fwrite ( obuf, sizeof(UChar), nread, stream );
  491.         if (ferror(stream)) goto errhandler_io;
  492.       }
  493.       goto closeok;
  494.    }
  495.   
  496.    errhandler:
  497.    BZ2_bzReadClose ( &bzerr_dummy, bzf );
  498.    switch (bzerr) {
  499.       case BZ_CONFIG_ERROR:
  500.          configError(); break;
  501.       case BZ_IO_ERROR:
  502.          errhandler_io:
  503.          ioError(); break;
  504.       case BZ_DATA_ERROR:
  505.          crcError();
  506.       case BZ_MEM_ERROR:
  507.          outOfMemory();
  508.       case BZ_UNEXPECTED_EOF:
  509.          compressedStreamEOF();
  510.       case BZ_DATA_ERROR_MAGIC:
  511.          if (zStream != stdin) fclose(zStream);
  512.          if (stream != stdout) fclose(stream);
  513.          if (streamNo == 1) {
  514.             return False;
  515.          } else {
  516.             if (noisy)
  517.             fprintf ( stderr, 
  518.                       "n%s: %s: trailing garbage after EOF ignoredn",
  519.                       progName, inName );
  520.             return True;       
  521.          }
  522.       default:
  523.          panic ( "decompress:unexpected error" );
  524.    }
  525.    panic ( "decompress:end" );
  526.    return True; /*notreached*/
  527. }
  528. /*---------------------------------------------*/
  529. static 
  530. Bool testStream ( FILE *zStream )
  531. {
  532.    BZFILE* bzf = NULL;
  533.    Int32   bzerr, bzerr_dummy, ret, nread, streamNo, i;
  534.    UChar   obuf[5000];
  535.    UChar   unused[BZ_MAX_UNUSED];
  536.    Int32   nUnused;
  537.    UChar*  unusedTmp;
  538.    nUnused = 0;
  539.    streamNo = 0;
  540.    SET_BINARY_MODE(zStream);
  541.    if (ferror(zStream)) goto errhandler_io;
  542.    while (True) {
  543.       bzf = BZ2_bzReadOpen ( 
  544.                &bzerr, zStream, verbosity, 
  545.                (int)smallMode, unused, nUnused
  546.             );
  547.       if (bzf == NULL || bzerr != BZ_OK) goto errhandler;
  548.       streamNo++;
  549.       while (bzerr == BZ_OK) {
  550.          nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
  551.          if (bzerr == BZ_DATA_ERROR_MAGIC) goto errhandler;
  552.       }
  553.       if (bzerr != BZ_STREAM_END) goto errhandler;
  554.       BZ2_bzReadGetUnused ( &bzerr, bzf, (void**)(&unusedTmp), &nUnused );
  555.       if (bzerr != BZ_OK) panic ( "test:bzReadGetUnused" );
  556.       for (i = 0; i < nUnused; i++) unused[i] = unusedTmp[i];
  557.       BZ2_bzReadClose ( &bzerr, bzf );
  558.       if (bzerr != BZ_OK) panic ( "test:bzReadGetUnused" );
  559.       if (nUnused == 0 && myfeof(zStream)) break;
  560.    }
  561.    if (ferror(zStream)) goto errhandler_io;
  562.    ret = fclose ( zStream );
  563.    if (ret == EOF) goto errhandler_io;
  564.    if (verbosity >= 2) fprintf ( stderr, "n    " );
  565.    return True;
  566.    errhandler:
  567.    BZ2_bzReadClose ( &bzerr_dummy, bzf );
  568.    if (verbosity == 0) 
  569.       fprintf ( stderr, "%s: %s: ", progName, inName );
  570.    switch (bzerr) {
  571.       case BZ_CONFIG_ERROR:
  572.          configError(); break;
  573.       case BZ_IO_ERROR:
  574.          errhandler_io:
  575.          ioError(); break;
  576.       case BZ_DATA_ERROR:
  577.          fprintf ( stderr,
  578.                    "data integrity (CRC) error in datan" );
  579.          return False;
  580.       case BZ_MEM_ERROR:
  581.          outOfMemory();
  582.       case BZ_UNEXPECTED_EOF:
  583.          fprintf ( stderr,
  584.                    "file ends unexpectedlyn" );
  585.          return False;
  586.       case BZ_DATA_ERROR_MAGIC:
  587.          if (zStream != stdin) fclose(zStream);
  588.          if (streamNo == 1) {
  589.           fprintf ( stderr, 
  590.                     "bad magic number (file not created by bzip2)n" );
  591.             return False;
  592.          } else {
  593.             if (noisy)
  594.             fprintf ( stderr, 
  595.                       "trailing garbage after EOF ignoredn" );
  596.             return True;       
  597.          }
  598.       default:
  599.          panic ( "test:unexpected error" );
  600.    }
  601.    panic ( "test:end" );
  602.    return True; /*notreached*/
  603. }
  604. /*---------------------------------------------------*/
  605. /*--- Error [non-] handling grunge                ---*/
  606. /*---------------------------------------------------*/
  607. /*---------------------------------------------*/
  608. static
  609. void setExit ( Int32 v )
  610. {
  611.    if (v > exitValue) exitValue = v;
  612. }
  613. /*---------------------------------------------*/
  614. static 
  615. void cadvise ( void )
  616. {
  617.    if (noisy)
  618.    fprintf (
  619.       stderr,
  620.       "nIt is possible that the compressed file(s) have become corrupted.n"
  621.         "You can use the -tvv option to test integrity of such files.nn"
  622.         "You can use the `bzip2recover' program to attempt to recovern"
  623.         "data from undamaged sections of corrupted files.nn"
  624.     );
  625. }
  626. /*---------------------------------------------*/
  627. static 
  628. void showFileNames ( void )
  629. {
  630.    if (noisy)
  631.    fprintf (
  632.       stderr,
  633.       "tInput file = %s, output file = %sn",
  634.       inName, outName 
  635.    );
  636. }
  637. /*---------------------------------------------*/
  638. static 
  639. void cleanUpAndFail ( Int32 ec )
  640. {
  641.    IntNative      retVal;
  642.    struct MY_STAT statBuf;
  643.    if ( srcMode == SM_F2F 
  644.         && opMode != OM_TEST
  645.         && deleteOutputOnInterrupt ) {
  646.       /* Check whether input file still exists.  Delete output file
  647.          only if input exists to avoid loss of data.  Joerg Prante, 5
  648.          January 2002.  (JRS 06-Jan-2002: other changes in 1.0.2 mean
  649.          this is less likely to happen.  But to be ultra-paranoid, we
  650.          do the check anyway.)  */
  651.       retVal = MY_STAT ( inName, &statBuf );
  652.       if (retVal == 0) {
  653.          if (noisy)
  654.             fprintf ( stderr, 
  655.                       "%s: Deleting output file %s, if it exists.n",
  656.                       progName, outName );
  657.          if (outputHandleJustInCase != NULL)
  658.             fclose ( outputHandleJustInCase );
  659.          retVal = remove ( outName );
  660.          if (retVal != 0)
  661.             fprintf ( stderr,
  662.                       "%s: WARNING: deletion of output file "
  663.                       "(apparently) failed.n",
  664.                       progName );
  665.       } else {
  666.          fprintf ( stderr,
  667.                    "%s: WARNING: deletion of output file suppressedn",
  668.                     progName );
  669.          fprintf ( stderr,
  670.                    "%s:    since input file no longer exists.  Output filen",
  671.                    progName );
  672.          fprintf ( stderr,
  673.                    "%s:    `%s' may be incomplete.n",
  674.                    progName, outName );
  675.          fprintf ( stderr, 
  676.                    "%s:    I suggest doing an integrity test (bzip2 -tv)"
  677.                    " of it.n",
  678.                    progName );
  679.       }
  680.    }
  681.    if (noisy && numFileNames > 0 && numFilesProcessed < numFileNames) {
  682.       fprintf ( stderr, 
  683.                 "%s: WARNING: some files have not been processed:n"
  684.                 "%s:    %d specified on command line, %d not processed yet.nn",
  685.                 progName, progName,
  686.                 numFileNames, numFileNames - numFilesProcessed );
  687.    }
  688.    setExit(ec);
  689.    exit(exitValue);
  690. }
  691. /*---------------------------------------------*/
  692. static 
  693. void panic ( Char* s )
  694. {
  695.    fprintf ( stderr,
  696.              "n%s: PANIC -- internal consistency error:n"
  697.              "t%sn"
  698.              "tThis is a BUG.  Please report it to me at:n"
  699.              "tjseward@acm.orgn",
  700.              progName, s );
  701.    showFileNames();
  702.    cleanUpAndFail( 3 );
  703. }
  704. /*---------------------------------------------*/
  705. static 
  706. void crcError ( void )
  707. {
  708.    fprintf ( stderr,
  709.              "n%s: Data integrity error when decompressing.n",
  710.              progName );
  711.    showFileNames();
  712.    cadvise();
  713.    cleanUpAndFail( 2 );
  714. }
  715. /*---------------------------------------------*/
  716. static 
  717. void compressedStreamEOF ( void )
  718. {
  719.   if (noisy) {
  720.     fprintf ( stderr,
  721.       "n%s: Compressed file ends unexpectedly;nt"
  722.       "perhaps it is corrupted?  *Possible* reason follows.n",
  723.       progName );
  724.     perror ( progName );
  725.     showFileNames();
  726.     cadvise();
  727.   }
  728.   cleanUpAndFail( 2 );
  729. }
  730. /*---------------------------------------------*/
  731. static 
  732. void ioError ( void )
  733. {
  734.    fprintf ( stderr,
  735.              "n%s: I/O or other error, bailing out.  "
  736.              "Possible reason follows.n",
  737.              progName );
  738.    perror ( progName );
  739.    showFileNames();
  740.    cleanUpAndFail( 1 );
  741. }
  742. /*---------------------------------------------*/
  743. static 
  744. void mySignalCatcher ( IntNative n )
  745. {
  746.    fprintf ( stderr,
  747.              "n%s: Control-C or similar caught, quitting.n",
  748.              progName );
  749.    cleanUpAndFail(1);
  750. }
  751. /*---------------------------------------------*/
  752. static 
  753. void mySIGSEGVorSIGBUScatcher ( IntNative n )
  754. {
  755.    if (opMode == OM_Z)
  756.       fprintf ( 
  757.       stderr,
  758.       "n%s: Caught a SIGSEGV or SIGBUS whilst compressing.n"
  759.       "n"
  760.       "   Possible causes are (most likely first):n"
  761.       "   (1) This computer has unreliable memory or cache hardwaren"
  762.       "       (a surprisingly common problem; try a different machine.)n"
  763.       "   (2) A bug in the compiler used to create this executablen"
  764.       "       (unlikely, if you didn't compile bzip2 yourself.)n"
  765.       "   (3) A real bug in bzip2 -- I hope this should never be the case.n"
  766.       "   The user's manual, Section 4.3, has more info on (1) and (2).n"
  767.       "   n"
  768.       "   If you suspect this is a bug in bzip2, or are unsure about (1)n"
  769.       "   or (2), feel free to report it to me at: jseward@acm.org.n"
  770.       "   Section 4.3 of the user's manual describes the info a usefuln"
  771.       "   bug report should have.  If the manual is available on yourn"
  772.       "   system, please try and read it before mailing me.  If you don'tn"
  773.       "   have the manual or can't be bothered to read it, mail me anyway.n"
  774.       "n",
  775.       progName );
  776.       else
  777.       fprintf ( 
  778.       stderr,
  779.       "n%s: Caught a SIGSEGV or SIGBUS whilst decompressing.n"
  780.       "n"
  781.       "   Possible causes are (most likely first):n"
  782.       "   (1) The compressed data is corrupted, and bzip2's usual checksn"
  783.       "       failed to detect this.  Try bzip2 -tvv my_file.bz2.n"
  784.       "   (2) This computer has unreliable memory or cache hardwaren"
  785.       "       (a surprisingly common problem; try a different machine.)n"
  786.       "   (3) A bug in the compiler used to create this executablen"
  787.       "       (unlikely, if you didn't compile bzip2 yourself.)n"
  788.       "   (4) A real bug in bzip2 -- I hope this should never be the case.n"
  789.       "   The user's manual, Section 4.3, has more info on (2) and (3).n"
  790.       "   n"
  791.       "   If you suspect this is a bug in bzip2, or are unsure about (2)n"
  792.       "   or (3), feel free to report it to me at: jseward@acm.org.n"
  793.       "   Section 4.3 of the user's manual describes the info a usefuln"
  794.       "   bug report should have.  If the manual is available on yourn"
  795.       "   system, please try and read it before mailing me.  If you don'tn"
  796.       "   have the manual or can't be bothered to read it, mail me anyway.n"
  797.       "n",
  798.       progName );
  799.    showFileNames();
  800.    if (opMode == OM_Z)
  801.       cleanUpAndFail( 3 ); else
  802.       { cadvise(); cleanUpAndFail( 2 ); }
  803. }
  804. /*---------------------------------------------*/
  805. static 
  806. void outOfMemory ( void )
  807. {
  808.    fprintf ( stderr,
  809.              "n%s: couldn't allocate enough memoryn",
  810.              progName );
  811.    showFileNames();
  812.    cleanUpAndFail(1);
  813. }
  814. /*---------------------------------------------*/
  815. static 
  816. void configError ( void )
  817. {
  818.    fprintf ( stderr,
  819.              "bzip2: I'm not configured correctly for this platform!n"
  820.              "tI require Int32, Int16 and Char to have sizesn"
  821.              "tof 4, 2 and 1 bytes to run properly, and they don't.n"
  822.              "tProbably you can fix this by defining them correctly,n"
  823.              "tand recompiling.  Bye!n" );
  824.    setExit(3);
  825.    exit(exitValue);
  826. }
  827. /*---------------------------------------------------*/
  828. /*--- The main driver machinery                   ---*/
  829. /*---------------------------------------------------*/
  830. /* All rather crufty.  The main problem is that input files
  831.    are stat()d multiple times before use.  This should be
  832.    cleaned up. 
  833. */
  834. /*---------------------------------------------*/
  835. static 
  836. void pad ( Char *s )
  837. {
  838.    Int32 i;
  839.    if ( (Int32)strlen(s) >= longestFileName ) return;
  840.    for (i = 1; i <= longestFileName - (Int32)strlen(s); i++)
  841.       fprintf ( stderr, " " );
  842. }
  843. /*---------------------------------------------*/
  844. static 
  845. void copyFileName ( Char* to, Char* from ) 
  846. {
  847.    if ( strlen(from) > FILE_NAME_LEN-10 )  {
  848.       fprintf (
  849.          stderr,
  850.          "bzip2: file namen`%s'n"
  851.          "is suspiciously (more than %d chars) long.n"
  852.          "Try using a reasonable file name instead.  Sorry! :-)n",
  853.          from, FILE_NAME_LEN-10
  854.       );
  855.       setExit(1);
  856.       exit(exitValue);
  857.    }
  858.   strncpy(to,from,FILE_NAME_LEN-10);
  859.   to[FILE_NAME_LEN-10]='';
  860. }
  861. /*---------------------------------------------*/
  862. static 
  863. Bool fileExists ( Char* name )
  864. {
  865.    FILE *tmp   = fopen ( name, "rb" );
  866.    Bool exists = (tmp != NULL);
  867.    if (tmp != NULL) fclose ( tmp );
  868.    return exists;
  869. }
  870. /*---------------------------------------------*/
  871. /* Open an output file safely with O_EXCL and good permissions.
  872.    This avoids a race condition in versions < 1.0.2, in which
  873.    the file was first opened and then had its interim permissions
  874.    set safely.  We instead use open() to create the file with
  875.    the interim permissions required. (--- --- rw-).
  876.    For non-Unix platforms, if we are not worrying about
  877.    security issues, simple this simply behaves like fopen.
  878. */
  879. FILE* fopen_output_safely ( Char* name, const char* mode )
  880. {
  881. #  if BZ_UNIX
  882.    FILE*     fp;
  883.    IntNative fh;
  884.    fh = open(name, O_WRONLY|O_CREAT|O_EXCL, S_IWUSR|S_IRUSR);
  885.    if (fh == -1) return NULL;
  886.    fp = fdopen(fh, mode);
  887.    if (fp == NULL) close(fh);
  888.    return fp;
  889. #  else
  890.    return fopen(name, mode);
  891. #  endif
  892. }
  893. /*---------------------------------------------*/
  894. /*--
  895.   if in doubt, return True
  896. --*/
  897. static 
  898. Bool notAStandardFile ( Char* name )
  899. {
  900.    IntNative      i;
  901.    struct MY_STAT statBuf;
  902.    i = MY_LSTAT ( name, &statBuf );
  903.    if (i != 0) return True;
  904.    if (MY_S_ISREG(statBuf.st_mode)) return False;
  905.    return True;
  906. }
  907. /*---------------------------------------------*/
  908. /*--
  909.   rac 11/21/98 see if file has hard links to it
  910. --*/
  911. static 
  912. Int32 countHardLinks ( Char* name )
  913. {  
  914.    IntNative      i;
  915.    struct MY_STAT statBuf;
  916.    i = MY_LSTAT ( name, &statBuf );
  917.    if (i != 0) return 0;
  918.    return (statBuf.st_nlink - 1);
  919. }
  920. /*---------------------------------------------*/
  921. /* Copy modification date, access date, permissions and owner from the
  922.    source to destination file.  We have to copy this meta-info off
  923.    into fileMetaInfo before starting to compress / decompress it,
  924.    because doing it afterwards means we get the wrong access time.
  925.    To complicate matters, in compress() and decompress() below, the
  926.    sequence of tests preceding the call to saveInputFileMetaInfo()
  927.    involves calling fileExists(), which in turn establishes its result
  928.    by attempting to fopen() the file, and if successful, immediately
  929.    fclose()ing it again.  So we have to assume that the fopen() call
  930.    does not cause the access time field to be updated.
  931.    Reading of the man page for stat() (man 2 stat) on RedHat 7.2 seems
  932.    to imply that merely doing open() will not affect the access time.
  933.    Therefore we merely need to hope that the C library only does
  934.    open() as a result of fopen(), and not any kind of read()-ahead
  935.    cleverness.
  936.    It sounds pretty fragile to me.  Whether this carries across
  937.    robustly to arbitrary Unix-like platforms (or even works robustly
  938.    on this one, RedHat 7.2) is unknown to me.  Nevertheless ...  
  939. */
  940. #if BZ_UNIX
  941. static 
  942. struct MY_STAT fileMetaInfo;
  943. #endif
  944. static 
  945. void saveInputFileMetaInfo ( Char *srcName )
  946. {
  947. #  if BZ_UNIX
  948.    IntNative retVal;
  949.    /* Note use of stat here, not lstat. */
  950.    retVal = MY_STAT( srcName, &fileMetaInfo );
  951.    ERROR_IF_NOT_ZERO ( retVal );
  952. #  endif
  953. }
  954. static 
  955. void applySavedMetaInfoToOutputFile ( Char *dstName )
  956. {
  957. #  if BZ_UNIX
  958.    IntNative      retVal;
  959.    struct utimbuf uTimBuf;
  960.    uTimBuf.actime = fileMetaInfo.st_atime;
  961.    uTimBuf.modtime = fileMetaInfo.st_mtime;
  962.    retVal = chmod ( dstName, fileMetaInfo.st_mode );
  963.    ERROR_IF_NOT_ZERO ( retVal );
  964.    retVal = utime ( dstName, &uTimBuf );
  965.    ERROR_IF_NOT_ZERO ( retVal );
  966.    retVal = chown ( dstName, fileMetaInfo.st_uid, fileMetaInfo.st_gid );
  967.    /* chown() will in many cases return with EPERM, which can
  968.       be safely ignored.
  969.    */
  970. #  endif
  971. }
  972. /*---------------------------------------------*/
  973. static 
  974. Bool containsDubiousChars ( Char* name )
  975. {
  976. #  if BZ_UNIX
  977.    /* On unix, files can contain any characters and the file expansion
  978.     * is performed by the shell.
  979.     */
  980.    return False;
  981. #  else /* ! BZ_UNIX */
  982.    /* On non-unix (Win* platforms), wildcard characters are not allowed in 
  983.     * filenames.
  984.     */
  985.    for (; *name != ''; name++)
  986.       if (*name == '?' || *name == '*') return True;
  987.    return False;
  988. #  endif /* BZ_UNIX */
  989. }
  990. /*---------------------------------------------*/
  991. #define BZ_N_SUFFIX_PAIRS 4
  992. Char* zSuffix[BZ_N_SUFFIX_PAIRS] 
  993.    = { ".bz2", ".bz", ".tbz2", ".tbz" };
  994. Char* unzSuffix[BZ_N_SUFFIX_PAIRS] 
  995.    = { "", "", ".tar", ".tar" };
  996. static 
  997. Bool hasSuffix ( Char* s, Char* suffix )
  998. {
  999.    Int32 ns = strlen(s);
  1000.    Int32 nx = strlen(suffix);
  1001.    if (ns < nx) return False;
  1002.    if (strcmp(s + ns - nx, suffix) == 0) return True;
  1003.    return False;
  1004. }
  1005. static 
  1006. Bool mapSuffix ( Char* name, 
  1007.                  Char* oldSuffix, Char* newSuffix )
  1008. {
  1009.    if (!hasSuffix(name,oldSuffix)) return False;
  1010.    name[strlen(name)-strlen(oldSuffix)] = 0;
  1011.    strcat ( name, newSuffix );
  1012.    return True;
  1013. }
  1014. /*---------------------------------------------*/
  1015. static 
  1016. void compress ( Char *name )
  1017. {
  1018.    FILE  *inStr;
  1019.    FILE  *outStr;
  1020.    Int32 n, i;
  1021.    struct MY_STAT statBuf;
  1022.    deleteOutputOnInterrupt = False;
  1023.    if (name == NULL && srcMode != SM_I2O)
  1024.       panic ( "compress: bad modesn" );
  1025.    switch (srcMode) {
  1026.       case SM_I2O: 
  1027.          copyFileName ( inName, "(stdin)" );
  1028.          copyFileName ( outName, "(stdout)" ); 
  1029.          break;
  1030.       case SM_F2F: 
  1031.          copyFileName ( inName, name );
  1032.          copyFileName ( outName, name );
  1033.          strcat ( outName, ".bz2" ); 
  1034.          break;
  1035.       case SM_F2O: 
  1036.          copyFileName ( inName, name );
  1037.          copyFileName ( outName, "(stdout)" ); 
  1038.          break;
  1039.    }
  1040.    if ( srcMode != SM_I2O && containsDubiousChars ( inName ) ) {
  1041.       if (noisy)
  1042.       fprintf ( stderr, "%s: There are no files matching `%s'.n",
  1043.                 progName, inName );
  1044.       setExit(1);
  1045.       return;
  1046.    }
  1047.    if ( srcMode != SM_I2O && !fileExists ( inName ) ) {
  1048.       fprintf ( stderr, "%s: Can't open input file %s: %s.n",
  1049.                 progName, inName, strerror(errno) );
  1050.       setExit(1);
  1051.       return;
  1052.    }
  1053.    for (i = 0; i < BZ_N_SUFFIX_PAIRS; i++) {
  1054.       if (hasSuffix(inName, zSuffix[i])) {
  1055.          if (noisy)
  1056.          fprintf ( stderr, 
  1057.                    "%s: Input file %s already has %s suffix.n",
  1058.                    progName, inName, zSuffix[i] );
  1059.          setExit(1);
  1060.          return;
  1061.       }
  1062.    }
  1063.    if ( srcMode == SM_F2F || srcMode == SM_F2O ) {
  1064.       MY_STAT(inName, &statBuf);
  1065.       if ( MY_S_ISDIR(statBuf.st_mode) ) {
  1066.          fprintf( stderr,
  1067.                   "%s: Input file %s is a directory.n",
  1068.                   progName,inName);
  1069.          setExit(1);
  1070.          return;
  1071.       }
  1072.    }
  1073.    if ( srcMode == SM_F2F && !forceOverwrite && notAStandardFile ( inName )) {
  1074.       if (noisy)
  1075.       fprintf ( stderr, "%s: Input file %s is not a normal file.n",
  1076.                 progName, inName );
  1077.       setExit(1);
  1078.       return;
  1079.    }
  1080.    if ( srcMode == SM_F2F && fileExists ( outName ) ) {
  1081.       if (forceOverwrite) {
  1082.  remove(outName);
  1083.       } else {
  1084.  fprintf ( stderr, "%s: Output file %s already exists.n",
  1085.    progName, outName );
  1086.  setExit(1);
  1087.  return;
  1088.       }
  1089.    }
  1090.    if ( srcMode == SM_F2F && !forceOverwrite &&
  1091.         (n=countHardLinks ( inName )) > 0) {
  1092.       fprintf ( stderr, "%s: Input file %s has %d other link%s.n",
  1093.                 progName, inName, n, n > 1 ? "s" : "" );
  1094.       setExit(1);
  1095.       return;
  1096.    }
  1097.    if ( srcMode == SM_F2F ) {
  1098.       /* Save the file's meta-info before we open it.  Doing it later
  1099.          means we mess up the access times. */
  1100.       saveInputFileMetaInfo ( inName );
  1101.    }
  1102.    switch ( srcMode ) {
  1103.       case SM_I2O:
  1104.          inStr = stdin;
  1105.          outStr = stdout;
  1106.          if ( isatty ( fileno ( stdout ) ) ) {
  1107.             fprintf ( stderr,
  1108.                       "%s: I won't write compressed data to a terminal.n",
  1109.                       progName );
  1110.             fprintf ( stderr, "%s: For help, type: `%s --help'.n",
  1111.                               progName, progName );
  1112.             setExit(1);
  1113.             return;
  1114.          };
  1115.          break;
  1116.       case SM_F2O:
  1117.          inStr = fopen ( inName, "rb" );
  1118.          outStr = stdout;
  1119.          if ( isatty ( fileno ( stdout ) ) ) {
  1120.             fprintf ( stderr,
  1121.                       "%s: I won't write compressed data to a terminal.n",
  1122.                       progName );
  1123.             fprintf ( stderr, "%s: For help, type: `%s --help'.n",
  1124.                               progName, progName );
  1125.             if ( inStr != NULL ) fclose ( inStr );
  1126.             setExit(1);
  1127.             return;
  1128.          };
  1129.          if ( inStr == NULL ) {
  1130.             fprintf ( stderr, "%s: Can't open input file %s: %s.n",
  1131.                       progName, inName, strerror(errno) );
  1132.             setExit(1);
  1133.             return;
  1134.          };
  1135.          break;
  1136.       case SM_F2F:
  1137.          inStr = fopen ( inName, "rb" );
  1138.          outStr = fopen_output_safely ( outName, "wb" );
  1139.          if ( outStr == NULL) {
  1140.             fprintf ( stderr, "%s: Can't create output file %s: %s.n",
  1141.                       progName, outName, strerror(errno) );
  1142.             if ( inStr != NULL ) fclose ( inStr );
  1143.             setExit(1);
  1144.             return;
  1145.          }
  1146.          if ( inStr == NULL ) {
  1147.             fprintf ( stderr, "%s: Can't open input file %s: %s.n",
  1148.                       progName, inName, strerror(errno) );
  1149.             if ( outStr != NULL ) fclose ( outStr );
  1150.             setExit(1);
  1151.             return;
  1152.          };
  1153.          break;
  1154.       default:
  1155.          panic ( "compress: bad srcMode" );
  1156.          break;
  1157.    }
  1158.    if (verbosity >= 1) {
  1159.       fprintf ( stderr,  "  %s: ", inName );
  1160.       pad ( inName );
  1161.       fflush ( stderr );
  1162.    }
  1163.    /*--- Now the input and output handles are sane.  Do the Biz. ---*/
  1164.    outputHandleJustInCase = outStr;
  1165.    deleteOutputOnInterrupt = True;
  1166.    compressStream ( inStr, outStr );
  1167.    outputHandleJustInCase = NULL;
  1168.    /*--- If there was an I/O error, we won't get here. ---*/
  1169.    if ( srcMode == SM_F2F ) {
  1170.       applySavedMetaInfoToOutputFile ( outName );
  1171.       deleteOutputOnInterrupt = False;
  1172.       if ( !keepInputFiles ) {
  1173.          IntNative retVal = remove ( inName );
  1174.          ERROR_IF_NOT_ZERO ( retVal );
  1175.       }
  1176.    }
  1177.    deleteOutputOnInterrupt = False;
  1178. }
  1179. /*---------------------------------------------*/
  1180. static 
  1181. void uncompress ( Char *name )
  1182. {
  1183.    FILE  *inStr;
  1184.    FILE  *outStr;
  1185.    Int32 n, i;
  1186.    Bool  magicNumberOK;
  1187.    Bool  cantGuess;
  1188.    struct MY_STAT statBuf;
  1189.    deleteOutputOnInterrupt = False;
  1190.    if (name == NULL && srcMode != SM_I2O)
  1191.       panic ( "uncompress: bad modesn" );
  1192.    cantGuess = False;
  1193.    switch (srcMode) {
  1194.       case SM_I2O: 
  1195.          copyFileName ( inName, "(stdin)" );
  1196.          copyFileName ( outName, "(stdout)" ); 
  1197.          break;
  1198.       case SM_F2F: 
  1199.          copyFileName ( inName, name );
  1200.          copyFileName ( outName, name );
  1201.          for (i = 0; i < BZ_N_SUFFIX_PAIRS; i++)
  1202.             if (mapSuffix(outName,zSuffix[i],unzSuffix[i]))
  1203.                goto zzz; 
  1204.          cantGuess = True;
  1205.          strcat ( outName, ".out" );
  1206.          break;
  1207.       case SM_F2O: 
  1208.          copyFileName ( inName, name );
  1209.          copyFileName ( outName, "(stdout)" ); 
  1210.          break;
  1211.    }
  1212.    zzz:
  1213.    if ( srcMode != SM_I2O && containsDubiousChars ( inName ) ) {
  1214.       if (noisy)
  1215.       fprintf ( stderr, "%s: There are no files matching `%s'.n",
  1216.                 progName, inName );
  1217.       setExit(1);
  1218.       return;
  1219.    }
  1220.    if ( srcMode != SM_I2O && !fileExists ( inName ) ) {
  1221.       fprintf ( stderr, "%s: Can't open input file %s: %s.n",
  1222.                 progName, inName, strerror(errno) );
  1223.       setExit(1);
  1224.       return;
  1225.    }
  1226.    if ( srcMode == SM_F2F || srcMode == SM_F2O ) {
  1227.       MY_STAT(inName, &statBuf);
  1228.       if ( MY_S_ISDIR(statBuf.st_mode) ) {
  1229.          fprintf( stderr,
  1230.                   "%s: Input file %s is a directory.n",
  1231.                   progName,inName);
  1232.          setExit(1);
  1233.          return;
  1234.       }
  1235.    }
  1236.    if ( srcMode == SM_F2F && !forceOverwrite && notAStandardFile ( inName )) {
  1237.       if (noisy)
  1238.       fprintf ( stderr, "%s: Input file %s is not a normal file.n",
  1239.                 progName, inName );
  1240.       setExit(1);
  1241.       return;
  1242.    }
  1243.    if ( /* srcMode == SM_F2F implied && */ cantGuess ) {
  1244.       if (noisy)
  1245.       fprintf ( stderr, 
  1246.                 "%s: Can't guess original name for %s -- using %sn",
  1247.                 progName, inName, outName );
  1248.       /* just a warning, no return */
  1249.    }   
  1250.    if ( srcMode == SM_F2F && fileExists ( outName ) ) {
  1251.       if (forceOverwrite) {
  1252. remove(outName);
  1253.       } else {
  1254.         fprintf ( stderr, "%s: Output file %s already exists.n",
  1255.                   progName, outName );
  1256.         setExit(1);
  1257.         return;
  1258.       }
  1259.    }
  1260.    if ( srcMode == SM_F2F && !forceOverwrite &&
  1261.         (n=countHardLinks ( inName ) ) > 0) {
  1262.       fprintf ( stderr, "%s: Input file %s has %d other link%s.n",
  1263.                 progName, inName, n, n > 1 ? "s" : "" );
  1264.       setExit(1);
  1265.       return;
  1266.    }
  1267.    if ( srcMode == SM_F2F ) {
  1268.       /* Save the file's meta-info before we open it.  Doing it later
  1269.          means we mess up the access times. */
  1270.       saveInputFileMetaInfo ( inName );
  1271.    }
  1272.    switch ( srcMode ) {
  1273.       case SM_I2O:
  1274.          inStr = stdin;
  1275.          outStr = stdout;
  1276.          if ( isatty ( fileno ( stdin ) ) ) {
  1277.             fprintf ( stderr,
  1278.                       "%s: I won't read compressed data from a terminal.n",
  1279.                       progName );
  1280.             fprintf ( stderr, "%s: For help, type: `%s --help'.n",
  1281.                               progName, progName );
  1282.             setExit(1);
  1283.             return;
  1284.          };
  1285.          break;
  1286.       case SM_F2O:
  1287.          inStr = fopen ( inName, "rb" );
  1288.          outStr = stdout;
  1289.          if ( inStr == NULL ) {
  1290.             fprintf ( stderr, "%s: Can't open input file %s:%s.n",
  1291.                       progName, inName, strerror(errno) );
  1292.             if ( inStr != NULL ) fclose ( inStr );
  1293.             setExit(1);
  1294.             return;
  1295.          };
  1296.          break;
  1297.       case SM_F2F:
  1298.          inStr = fopen ( inName, "rb" );
  1299.          outStr = fopen_output_safely ( outName, "wb" );
  1300.          if ( outStr == NULL) {
  1301.             fprintf ( stderr, "%s: Can't create output file %s: %s.n",
  1302.                       progName, outName, strerror(errno) );
  1303.             if ( inStr != NULL ) fclose ( inStr );
  1304.             setExit(1);
  1305.             return;
  1306.          }
  1307.          if ( inStr == NULL ) {
  1308.             fprintf ( stderr, "%s: Can't open input file %s: %s.n",
  1309.                       progName, inName, strerror(errno) );
  1310.             if ( outStr != NULL ) fclose ( outStr );
  1311.             setExit(1);
  1312.             return;
  1313.          };
  1314.          break;
  1315.       default:
  1316.          panic ( "uncompress: bad srcMode" );
  1317.          break;
  1318.    }
  1319.    if (verbosity >= 1) {
  1320.       fprintf ( stderr, "  %s: ", inName );
  1321.       pad ( inName );
  1322.       fflush ( stderr );
  1323.    }
  1324.    /*--- Now the input and output handles are sane.  Do the Biz. ---*/
  1325.    outputHandleJustInCase = outStr;
  1326.    deleteOutputOnInterrupt = True;
  1327.    magicNumberOK = uncompressStream ( inStr, outStr );
  1328.    outputHandleJustInCase = NULL;
  1329.    /*--- If there was an I/O error, we won't get here. ---*/
  1330.    if ( magicNumberOK ) {
  1331.       if ( srcMode == SM_F2F ) {
  1332.          applySavedMetaInfoToOutputFile ( outName );
  1333.          deleteOutputOnInterrupt = False;
  1334.          if ( !keepInputFiles ) {
  1335.             IntNative retVal = remove ( inName );
  1336.             ERROR_IF_NOT_ZERO ( retVal );
  1337.          }
  1338.       }
  1339.    } else {
  1340.       unzFailsExist = True;
  1341.       deleteOutputOnInterrupt = False;
  1342.       if ( srcMode == SM_F2F ) {
  1343.          IntNative retVal = remove ( outName );
  1344.          ERROR_IF_NOT_ZERO ( retVal );
  1345.       }
  1346.    }
  1347.    deleteOutputOnInterrupt = False;
  1348.    if ( magicNumberOK ) {
  1349.       if (verbosity >= 1)
  1350.          fprintf ( stderr, "donen" );
  1351.    } else {
  1352.       setExit(2);
  1353.       if (verbosity >= 1)
  1354.          fprintf ( stderr, "not a bzip2 file.n" ); else
  1355.          fprintf ( stderr,
  1356.                    "%s: %s is not a bzip2 file.n",
  1357.                    progName, inName );
  1358.    }
  1359. }
  1360. /*---------------------------------------------*/
  1361. static 
  1362. void testf ( Char *name )
  1363. {
  1364.    FILE *inStr;
  1365.    Bool allOK;
  1366.    struct MY_STAT statBuf;
  1367.    deleteOutputOnInterrupt = False;
  1368.    if (name == NULL && srcMode != SM_I2O)
  1369.       panic ( "testf: bad modesn" );
  1370.    copyFileName ( outName, "(none)" );
  1371.    switch (srcMode) {
  1372.       case SM_I2O: copyFileName ( inName, "(stdin)" ); break;
  1373.       case SM_F2F: copyFileName ( inName, name ); break;
  1374.       case SM_F2O: copyFileName ( inName, name ); break;
  1375.    }
  1376.    if ( srcMode != SM_I2O && containsDubiousChars ( inName ) ) {
  1377.       if (noisy)
  1378.       fprintf ( stderr, "%s: There are no files matching `%s'.n",
  1379.                 progName, inName );
  1380.       setExit(1);
  1381.       return;
  1382.    }
  1383.    if ( srcMode != SM_I2O && !fileExists ( inName ) ) {
  1384.       fprintf ( stderr, "%s: Can't open input %s: %s.n",
  1385.                 progName, inName, strerror(errno) );
  1386.       setExit(1);
  1387.       return;
  1388.    }
  1389.    if ( srcMode != SM_I2O ) {
  1390.       MY_STAT(inName, &statBuf);
  1391.       if ( MY_S_ISDIR(statBuf.st_mode) ) {
  1392.          fprintf( stderr,
  1393.                   "%s: Input file %s is a directory.n",
  1394.                   progName,inName);
  1395.          setExit(1);
  1396.          return;
  1397.       }
  1398.    }
  1399.    switch ( srcMode ) {
  1400.       case SM_I2O:
  1401.          if ( isatty ( fileno ( stdin ) ) ) {
  1402.             fprintf ( stderr,
  1403.                       "%s: I won't read compressed data from a terminal.n",
  1404.                       progName );
  1405.             fprintf ( stderr, "%s: For help, type: `%s --help'.n",
  1406.                               progName, progName );
  1407.             setExit(1);
  1408.             return;
  1409.          };
  1410.          inStr = stdin;
  1411.          break;
  1412.       case SM_F2O: case SM_F2F:
  1413.          inStr = fopen ( inName, "rb" );
  1414.          if ( inStr == NULL ) {
  1415.             fprintf ( stderr, "%s: Can't open input file %s:%s.n",
  1416.                       progName, inName, strerror(errno) );
  1417.             setExit(1);
  1418.             return;
  1419.          };
  1420.          break;
  1421.       default:
  1422.          panic ( "testf: bad srcMode" );
  1423.          break;
  1424.    }
  1425.    if (verbosity >= 1) {
  1426.       fprintf ( stderr, "  %s: ", inName );
  1427.       pad ( inName );
  1428.       fflush ( stderr );
  1429.    }
  1430.    /*--- Now the input handle is sane.  Do the Biz. ---*/
  1431.    outputHandleJustInCase = NULL;
  1432.    allOK = testStream ( inStr );
  1433.    if (allOK && verbosity >= 1) fprintf ( stderr, "okn" );
  1434.    if (!allOK) testFailsExist = True;
  1435. }
  1436. /*---------------------------------------------*/
  1437. static 
  1438. void license ( void )
  1439. {
  1440.    fprintf ( stderr,
  1441.     "bzip2, a block-sorting file compressor.  "
  1442.     "Version %s.n"
  1443.     "   n"
  1444.     "   Copyright (C) 1996-2002 by Julian Seward.n"
  1445.     "   n"
  1446.     "   This program is free software; you can redistribute it and/or modifyn"
  1447.     "   it under the terms set out in the LICENSE file, which is includedn"
  1448.     "   in the bzip2-1.0 source distribution.n"
  1449.     "   n"
  1450.     "   This program is distributed in the hope that it will be useful,n"
  1451.     "   but WITHOUT ANY WARRANTY; without even the implied warranty ofn"
  1452.     "   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See then"
  1453.     "   LICENSE file for more details.n"
  1454.     "   n",
  1455.     BZ2_bzlibVersion()
  1456.    );
  1457. }
  1458. /*---------------------------------------------*/
  1459. static 
  1460. void usage ( Char *fullProgName )
  1461. {
  1462.    fprintf (
  1463.       stderr,
  1464.       "bzip2, a block-sorting file compressor.  "
  1465.       "Version %s.n"
  1466.       "n   usage: %s [flags and input files in any order]n"
  1467.       "n"
  1468.       "   -h --help           print this messagen"
  1469.       "   -d --decompress     force decompressionn"
  1470.       "   -z --compress       force compressionn"
  1471.       "   -k --keep           keep (don't delete) input filesn"
  1472.       "   -f --force          overwrite existing output filesn"
  1473.       "   -t --test           test compressed file integrityn"
  1474.       "   -c --stdout         output to standard outn"
  1475.       "   -q --quiet          suppress noncritical error messagesn"
  1476.       "   -v --verbose        be verbose (a 2nd -v gives more)n"
  1477.       "   -L --license        display software version & licensen"
  1478.       "   -V --version        display software version & licensen"
  1479.       "   -s --small          use less memory (at most 2500k)n"
  1480.       "   -1 .. -9            set block size to 100k .. 900kn"
  1481.       "   --fast              alias for -1n"
  1482.       "   --best              alias for -9n"
  1483.       "n"
  1484.       "   If invoked as `bzip2', default action is to compress.n"
  1485.       "              as `bunzip2',  default action is to decompress.n"
  1486.       "              as `bzcat', default action is to decompress to stdout.n"
  1487.       "n"
  1488.       "   If no file names are given, bzip2 compresses or decompressesn"
  1489.       "   from standard input to standard output.  You can combinen"
  1490.       "   short flags, so `-v -4' means the same as -v4 or -4v, &c.n"
  1491. #     if BZ_UNIX
  1492.       "n"
  1493. #     endif
  1494.       ,
  1495.       BZ2_bzlibVersion(),
  1496.       fullProgName
  1497.    );
  1498. }
  1499. /*---------------------------------------------*/
  1500. static 
  1501. void redundant ( Char* flag )
  1502. {
  1503.    fprintf ( 
  1504.       stderr, 
  1505.       "%s: %s is redundant in versions 0.9.5 and aboven",
  1506.       progName, flag );
  1507. }
  1508. /*---------------------------------------------*/
  1509. /*--
  1510.   All the garbage from here to main() is purely to
  1511.   implement a linked list of command-line arguments,
  1512.   into which main() copies argv[1 .. argc-1].
  1513.   The purpose of this exercise is to facilitate 
  1514.   the expansion of wildcard characters * and ? in 
  1515.   filenames for OSs which don't know how to do it
  1516.   themselves, like MSDOS, Windows 95 and NT.
  1517.   The actual Dirty Work is done by the platform-
  1518.   specific macro APPEND_FILESPEC.
  1519. --*/
  1520. typedef
  1521.    struct zzzz {
  1522.       Char        *name;
  1523.       struct zzzz *link;
  1524.    }
  1525.    Cell;
  1526. /*---------------------------------------------*/
  1527. static 
  1528. void *myMalloc ( Int32 n )
  1529. {
  1530.    void* p;
  1531.    p = malloc ( (size_t)n );
  1532.    if (p == NULL) outOfMemory ();
  1533.    return p;
  1534. }
  1535. /*---------------------------------------------*/
  1536. static 
  1537. Cell *mkCell ( void )
  1538. {
  1539.    Cell *c;
  1540.    c = (Cell*) myMalloc ( sizeof ( Cell ) );
  1541.    c->name = NULL;
  1542.    c->link = NULL;
  1543.    return c;
  1544. }
  1545. /*---------------------------------------------*/
  1546. static 
  1547. Cell *snocString ( Cell *root, Char *name )
  1548. {
  1549.    if (root == NULL) {
  1550.       Cell *tmp = mkCell();
  1551.       tmp->name = (Char*) myMalloc ( 5 + strlen(name) );
  1552.       strcpy ( tmp->name, name );
  1553.       return tmp;
  1554.    } else {
  1555.       Cell *tmp = root;
  1556.       while (tmp->link != NULL) tmp = tmp->link;
  1557.       tmp->link = snocString ( tmp->link, name );
  1558.       return root;
  1559.    }
  1560. }
  1561. /*---------------------------------------------*/
  1562. static 
  1563. void addFlagsFromEnvVar ( Cell** argList, Char* varName ) 
  1564. {
  1565.    Int32 i, j, k;
  1566.    Char *envbase, *p;
  1567.    envbase = getenv(varName);
  1568.    if (envbase != NULL) {
  1569.       p = envbase;
  1570.       i = 0;
  1571.       while (True) {
  1572.          if (p[i] == 0) break;
  1573.          p += i;
  1574.          i = 0;
  1575.          while (isspace((Int32)(p[0]))) p++;
  1576.          while (p[i] != 0 && !isspace((Int32)(p[i]))) i++;
  1577.          if (i > 0) {
  1578.             k = i; if (k > FILE_NAME_LEN-10) k = FILE_NAME_LEN-10;
  1579.             for (j = 0; j < k; j++) tmpName[j] = p[j];
  1580.             tmpName[k] = 0;
  1581.             APPEND_FLAG(*argList, tmpName);
  1582.          }
  1583.       }
  1584.    }
  1585. }
  1586. /*---------------------------------------------*/
  1587. #define ISFLAG(s) (strcmp(aa->name, (s))==0)
  1588. IntNative main ( IntNative argc, Char *argv[] )
  1589. {
  1590.    Int32  i, j;
  1591.    Char   *tmp;
  1592.    Cell   *argList;
  1593.    Cell   *aa;
  1594.    Bool   decode;
  1595.    /*-- Be really really really paranoid :-) --*/
  1596.    if (sizeof(Int32) != 4 || sizeof(UInt32) != 4  ||
  1597.        sizeof(Int16) != 2 || sizeof(UInt16) != 2  ||
  1598.        sizeof(Char)  != 1 || sizeof(UChar)  != 1)
  1599.       configError();
  1600.    /*-- Initialise --*/
  1601.    outputHandleJustInCase  = NULL;
  1602.    smallMode               = False;
  1603.    keepInputFiles          = False;
  1604.    forceOverwrite          = False;
  1605.    noisy                   = True;
  1606.    verbosity               = 0;
  1607.    blockSize100k           = 9;
  1608.    testFailsExist          = False;
  1609.    unzFailsExist           = False;
  1610.    numFileNames            = 0;
  1611.    numFilesProcessed       = 0;
  1612.    workFactor              = 30;
  1613.    deleteOutputOnInterrupt = False;
  1614.    exitValue               = 0;
  1615.    i = j = 0; /* avoid bogus warning from egcs-1.1.X */
  1616.    /*-- Set up signal handlers for mem access errors --*/
  1617.    signal (SIGSEGV, mySIGSEGVorSIGBUScatcher);
  1618. #  if BZ_UNIX
  1619. #  ifndef __DJGPP__
  1620.    signal (SIGBUS,  mySIGSEGVorSIGBUScatcher);
  1621. #  endif
  1622. #  endif
  1623.    copyFileName ( inName,  "(none)" );
  1624.    copyFileName ( outName, "(none)" );
  1625.    copyFileName ( progNameReally, argv[0] );
  1626.    progName = &progNameReally[0];
  1627.    for (tmp = &progNameReally[0]; *tmp != ''; tmp++)
  1628.       if (*tmp == PATH_SEP) progName = tmp + 1;
  1629.    /*-- Copy flags from env var BZIP2, and 
  1630.         expand filename wildcards in arg list.
  1631.    --*/
  1632.    argList = NULL;
  1633.    addFlagsFromEnvVar ( &argList,  "BZIP2" );
  1634.    addFlagsFromEnvVar ( &argList,  "BZIP" );
  1635.    for (i = 1; i <= argc-1; i++)
  1636.       APPEND_FILESPEC(argList, argv[i]);
  1637.    /*-- Find the length of the longest filename --*/
  1638.    longestFileName = 7;
  1639.    numFileNames    = 0;
  1640.    decode          = True;
  1641.    for (aa = argList; aa != NULL; aa = aa->link) {
  1642.       if (ISFLAG("--")) { decode = False; continue; }
  1643.       if (aa->name[0] == '-' && decode) continue;
  1644.       numFileNames++;
  1645.       if (longestFileName < (Int32)strlen(aa->name) )
  1646.          longestFileName = (Int32)strlen(aa->name);
  1647.    }
  1648.    /*-- Determine source modes; flag handling may change this too. --*/
  1649.    if (numFileNames == 0)
  1650.       srcMode = SM_I2O; else srcMode = SM_F2F;
  1651.    /*-- Determine what to do (compress/uncompress/test/cat). --*/
  1652.    /*-- Note that subsequent flag handling may change this. --*/
  1653.    opMode = OM_Z;
  1654.    if ( (strstr ( progName, "unzip" ) != 0) ||
  1655.         (strstr ( progName, "UNZIP" ) != 0) )
  1656.       opMode = OM_UNZ;
  1657.    if ( (strstr ( progName, "z2cat" ) != 0) ||
  1658.         (strstr ( progName, "Z2CAT" ) != 0) ||
  1659.         (strstr ( progName, "zcat" ) != 0)  ||
  1660.         (strstr ( progName, "ZCAT" ) != 0) )  {
  1661.       opMode = OM_UNZ;
  1662.       srcMode = (numFileNames == 0) ? SM_I2O : SM_F2O;
  1663.    }
  1664.    /*-- Look at the flags. --*/
  1665.    for (aa = argList; aa != NULL; aa = aa->link) {
  1666.       if (ISFLAG("--")) break;
  1667.       if (aa->name[0] == '-' && aa->name[1] != '-') {
  1668.          for (j = 1; aa->name[j] != ''; j++) {
  1669.             switch (aa->name[j]) {
  1670.                case 'c': srcMode          = SM_F2O; break;
  1671.                case 'd': opMode           = OM_UNZ; break;
  1672.                case 'z': opMode           = OM_Z; break;
  1673.                case 'f': forceOverwrite   = True; break;
  1674.                case 't': opMode           = OM_TEST; break;
  1675.                case 'k': keepInputFiles   = True; break;
  1676.                case 's': smallMode        = True; break;
  1677.                case 'q': noisy            = False; break;
  1678.                case '1': blockSize100k    = 1; break;
  1679.                case '2': blockSize100k    = 2; break;
  1680.                case '3': blockSize100k    = 3; break;
  1681.                case '4': blockSize100k    = 4; break;
  1682.                case '5': blockSize100k    = 5; break;
  1683.                case '6': blockSize100k    = 6; break;
  1684.                case '7': blockSize100k    = 7; break;
  1685.                case '8': blockSize100k    = 8; break;
  1686.                case '9': blockSize100k    = 9; break;
  1687.                case 'V':
  1688.                case 'L': license();            break;
  1689.                case 'v': verbosity++; break;
  1690.                case 'h': usage ( progName );
  1691.                          exit ( 0 );
  1692.                          break;
  1693.                default:  fprintf ( stderr, "%s: Bad flag `%s'n",
  1694.                                    progName, aa->name );
  1695.                          usage ( progName );
  1696.                          exit ( 1 );
  1697.                          break;
  1698.             }
  1699.          }
  1700.       }
  1701.    }
  1702.    
  1703.    /*-- And again ... --*/
  1704.    for (aa = argList; aa != NULL; aa = aa->link) {
  1705.       if (ISFLAG("--")) break;
  1706.       if (ISFLAG("--stdout"))            srcMode          = SM_F2O;  else
  1707.       if (ISFLAG("--decompress"))        opMode           = OM_UNZ;  else
  1708.       if (ISFLAG("--compress"))          opMode           = OM_Z;    else
  1709.       if (ISFLAG("--force"))             forceOverwrite   = True;    else
  1710.       if (ISFLAG("--test"))              opMode           = OM_TEST; else
  1711.       if (ISFLAG("--keep"))              keepInputFiles   = True;    else
  1712.       if (ISFLAG("--small"))             smallMode        = True;    else
  1713.       if (ISFLAG("--quiet"))             noisy            = False;   else
  1714.       if (ISFLAG("--version"))           license();                  else
  1715.       if (ISFLAG("--license"))           license();                  else
  1716.       if (ISFLAG("--exponential"))       workFactor = 1;             else 
  1717.       if (ISFLAG("--repetitive-best"))   redundant(aa->name);        else
  1718.       if (ISFLAG("--repetitive-fast"))   redundant(aa->name);        else
  1719.       if (ISFLAG("--fast"))              blockSize100k = 1;          else
  1720.       if (ISFLAG("--best"))              blockSize100k = 9;          else
  1721.       if (ISFLAG("--verbose"))           verbosity++;                else
  1722.       if (ISFLAG("--help"))              { usage ( progName ); exit ( 0 ); }
  1723.          else
  1724.          if (strncmp ( aa->name, "--", 2) == 0) {
  1725.             fprintf ( stderr, "%s: Bad flag `%s'n", progName, aa->name );
  1726.             usage ( progName );
  1727.             exit ( 1 );
  1728.          }
  1729.    }
  1730.    if (verbosity > 4) verbosity = 4;
  1731.    if (opMode == OM_Z && smallMode && blockSize100k > 2) 
  1732.       blockSize100k = 2;
  1733.    if (opMode == OM_TEST && srcMode == SM_F2O) {
  1734.       fprintf ( stderr, "%s: -c and -t cannot be used together.n",
  1735.                 progName );
  1736.       exit ( 1 );
  1737.    }
  1738.    if (srcMode == SM_F2O && numFileNames == 0)
  1739.       srcMode = SM_I2O;
  1740.    if (opMode != OM_Z) blockSize100k = 0;
  1741.    if (srcMode == SM_F2F) {
  1742.       signal (SIGINT,  mySignalCatcher);
  1743.       signal (SIGTERM, mySignalCatcher);
  1744. #     if BZ_UNIX
  1745.       signal (SIGHUP,  mySignalCatcher);
  1746. #     endif
  1747.    }
  1748.    if (opMode == OM_Z) {
  1749.      if (srcMode == SM_I2O) {
  1750.         compress ( NULL );
  1751.      } else {
  1752.         decode = True;
  1753.         for (aa = argList; aa != NULL; aa = aa->link) {
  1754.            if (ISFLAG("--")) { decode = False; continue; }
  1755.            if (aa->name[0] == '-' && decode) continue;
  1756.            numFilesProcessed++;
  1757.            compress ( aa->name );
  1758.         }
  1759.      }
  1760.    } 
  1761.    else
  1762.    if (opMode == OM_UNZ) {
  1763.       unzFailsExist = False;
  1764.       if (srcMode == SM_I2O) {
  1765.          uncompress ( NULL );
  1766.       } else {
  1767.          decode = True;
  1768.          for (aa = argList; aa != NULL; aa = aa->link) {
  1769.             if (ISFLAG("--")) { decode = False; continue; }
  1770.             if (aa->name[0] == '-' && decode) continue;
  1771.             numFilesProcessed++;
  1772.             uncompress ( aa->name );
  1773.          }      
  1774.       }
  1775.       if (unzFailsExist) { 
  1776.          setExit(2); 
  1777.          exit(exitValue);
  1778.       }
  1779.    } 
  1780.    else {
  1781.       testFailsExist = False;
  1782.       if (srcMode == SM_I2O) {
  1783.          testf ( NULL );
  1784.       } else {
  1785.          decode = True;
  1786.          for (aa = argList; aa != NULL; aa = aa->link) {
  1787.     if (ISFLAG("--")) { decode = False; continue; }
  1788.             if (aa->name[0] == '-' && decode) continue;
  1789.             numFilesProcessed++;
  1790.             testf ( aa->name );
  1791.  }
  1792.       }
  1793.       if (testFailsExist && noisy) {
  1794.          fprintf ( stderr,
  1795.            "n"
  1796.            "You can use the `bzip2recover' program to attempt to recovern"
  1797.            "data from undamaged sections of corrupted files.nn"
  1798.          );
  1799.          setExit(2);
  1800.          exit(exitValue);
  1801.       }
  1802.    }
  1803.    /* Free the argument list memory to mollify leak detectors 
  1804.       (eg) Purify, Checker.  Serves no other useful purpose.
  1805.    */
  1806.    aa = argList;
  1807.    while (aa != NULL) {
  1808.       Cell* aa2 = aa->link;
  1809.       if (aa->name != NULL) free(aa->name);
  1810.       free(aa);
  1811.       aa = aa2;
  1812.    }
  1813.    return exitValue;
  1814. }
  1815. /*-----------------------------------------------------------*/
  1816. /*--- end                                         bzip2.c ---*/
  1817. /*-----------------------------------------------------------*/