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

压缩解压

开发平台:

C/C++

  1. bzip2(1)                                                 bzip2(1)
  2. NAME
  3.        bzip2, bunzip2 - a block-sorting file compressor, v0.9.0
  4.        bzcat - decompresses files to stdout
  5.        bzip2recover - recovers data from damaged bzip2 files
  6. SYNOPSIS
  7.        bzip2 [ -cdfkstvzVL123456789 ] [ filenames ...  ]
  8.        bunzip2 [ -fkvsVL ] [ filenames ...  ]
  9.        bzcat [ -s ] [ filenames ...  ]
  10.        bzip2recover filename
  11. DESCRIPTION
  12.        bzip2  compresses  files  using the Burrows-Wheeler block-
  13.        sorting text compression algorithm,  and  Huffman  coding.
  14.        Compression  is  generally  considerably  better than that
  15.        achieved by more conventional LZ77/LZ78-based compressors,
  16.        and  approaches  the performance of the PPM family of sta-
  17.        tistical compressors.
  18.        The command-line options are deliberately very similar  to
  19.        those of GNU Gzip, but they are not identical.
  20.        bzip2  expects  a list of file names to accompany the com-
  21.        mand-line flags.  Each file is replaced  by  a  compressed
  22.        version  of  itself,  with  the  name "original_name.bz2".
  23.        Each compressed file has the same  modification  date  and
  24.        permissions  as  the corresponding original, so that these
  25.        properties can  be  correctly  restored  at  decompression
  26.        time.  File name handling is naive in the sense that there
  27.        is no mechanism for preserving original file  names,  per-
  28.        missions  and  dates  in filesystems which lack these con-
  29.        cepts, or have serious file name length restrictions, such
  30.        as MS-DOS.
  31.        bzip2  and  bunzip2 will by default not overwrite existing
  32.        files; if you want this to happen, specify the -f flag.
  33.        If no file names  are  specified,  bzip2  compresses  from
  34.        standard  input  to  standard output.  In this case, bzip2
  35.        will decline to write compressed output to a terminal,  as
  36.        this  would  be  entirely  incomprehensible  and therefore
  37.        pointless.
  38.        bunzip2 (or bzip2 -d ) decompresses and restores all spec-
  39.        ified files whose names end in ".bz2".  Files without this
  40.        suffix are ignored.  Again, supplying no filenames  causes
  41.        decompression from standard input to standard output.
  42.        bunzip2 will correctly decompress a file which is the con-
  43.        catenation of two or more compressed files.  The result is
  44.        the concatenation of the corresponding uncompressed files.
  45.        Integrity testing (-t) of concatenated compressed files is
  46.        also supported.
  47.        You  can also compress or decompress files to the standard
  48.        output by giving the -c flag.  Multiple files may be  com-
  49.        pressed and decompressed like this.  The resulting outputs
  50.        are fed sequentially to stdout.  Compression  of  multiple
  51.        files  in this manner generates a stream containing multi-
  52.        ple compressed file representations.  Such a stream can be
  53.        decompressed  correctly  only  by  bzip2  version 0.9.0 or
  54.        later.  Earlier versions of bzip2 will stop  after  decom-
  55.        pressing the first file in the stream.
  56.        bzcat  (or bzip2 -dc ) decompresses all specified files to
  57.        the standard output.
  58.        Compression is always performed, even  if  the  compressed
  59.        file  is slightly larger than the original.  Files of less
  60.        than about one hundred bytes tend to get larger, since the
  61.        compression  mechanism  has  a  constant  overhead  in the
  62.        region of 50 bytes.  Random data (including the output  of
  63.        most  file  compressors)  is  coded at about 8.05 bits per
  64.        byte, giving an expansion of around 0.5%.
  65.        As a self-check for your  protection,  bzip2  uses  32-bit
  66.        CRCs  to make sure that the decompressed version of a file
  67.        is identical to the original.  This guards against corrup-
  68.        tion  of  the compressed data, and against undetected bugs
  69.        in bzip2 (hopefully very unlikely).  The chances  of  data
  70.        corruption  going  undetected  is  microscopic,  about one
  71.        chance in four billion for each file processed.  Be aware,
  72.        though,  that  the  check occurs upon decompression, so it
  73.        can only tell you that that something is wrong.  It  can't
  74.        help  you recover the original uncompressed data.  You can
  75.        use bzip2recover to  try  to  recover  data  from  damaged
  76.        files.
  77.        Return  values:  0  for a normal exit, 1 for environmental
  78.        problems (file not found, invalid flags, I/O errors,  &c),
  79.        2 to indicate a corrupt compressed file, 3 for an internal
  80.        consistency error (eg, bug) which caused bzip2 to panic.
  81. MEMORY MANAGEMENT
  82.        Bzip2 compresses large files in blocks.   The  block  size
  83.        affects  both  the  compression  ratio  achieved,  and the
  84.        amount of memory needed both for  compression  and  decom-
  85.        pression.   The flags -1 through -9 specify the block size
  86.        to be 100,000 bytes through 900,000  bytes  (the  default)
  87.        respectively.   At decompression-time, the block size used
  88.        for compression is read from the header of the  compressed
  89.        file, and bunzip2 then allocates itself just enough memory
  90.        to decompress the file.  Since block sizes are  stored  in
  91.        compressed  files,  it follows that the flags -1 to -9 are
  92.        irrelevant  to  and  so  ignored   during   decompression.
  93.        Compression  and decompression requirements, in bytes, can
  94.        be estimated as:
  95.              Compression:   400k + ( 7 x block size )
  96.              Decompression: 100k + ( 4 x block size ), or
  97.                             100k + ( 2.5 x block size )
  98.        Larger  block  sizes  give  rapidly  diminishing  marginal
  99.        returns;  most of the compression comes from the first two
  100.        or three hundred k of block size, a fact worth bearing  in
  101.        mind  when  using  bzip2  on  small  machines.  It is also
  102.        important to  appreciate  that  the  decompression  memory
  103.        requirement  is  set  at compression-time by the choice of
  104.        block size.
  105.        For files compressed with the  default  900k  block  size,
  106.        bunzip2  will require about 3700 kbytes to decompress.  To
  107.        support decompression of any file on a 4 megabyte machine,
  108.        bunzip2  has  an  option to decompress using approximately
  109.        half this amount of memory, about 2300 kbytes.  Decompres-
  110.        sion  speed  is also halved, so you should use this option
  111.        only where necessary.  The relevant flag is -s.
  112.        In general, try and use the largest block size memory con-
  113.        straints  allow,  since  that  maximises  the  compression
  114.        achieved.  Compression and decompression speed are  virtu-
  115.        ally unaffected by block size.
  116.        Another  significant point applies to files which fit in a
  117.        single block -- that  means  most  files  you'd  encounter
  118.        using  a  large  block  size.   The  amount of real memory
  119.        touched is proportional to the size of the file, since the
  120.        file  is smaller than a block.  For example, compressing a
  121.        file 20,000 bytes long with the flag  -9  will  cause  the
  122.        compressor  to  allocate  around 6700k of memory, but only
  123.        touch 400k + 20000 * 7 = 540 kbytes of it.  Similarly, the
  124.        decompressor  will  allocate  3700k  but only touch 100k +
  125.        20000 * 4 = 180 kbytes.
  126.        Here is a table which summarises the maximum memory  usage
  127.        for  different  block  sizes.   Also recorded is the total
  128.        compressed size for 14 files of the Calgary Text  Compres-
  129.        sion  Corpus totalling 3,141,622 bytes.  This column gives
  130.        some feel for how  compression  varies  with  block  size.
  131.        These  figures  tend to understate the advantage of larger
  132.        block sizes for larger files, since the  Corpus  is  domi-
  133.        nated by smaller files.
  134.                   Compress   Decompress   Decompress   Corpus
  135.            Flag     usage      usage       -s usage     Size
  136.             -1      1100k       500k         350k      914704
  137.             -2      1800k       900k         600k      877703
  138.             -3      2500k      1300k         850k      860338
  139.             -4      3200k      1700k        1100k      846899
  140.             -5      3900k      2100k        1350k      845160
  141.             -6      4600k      2500k        1600k      838626
  142.             -7      5400k      2900k        1850k      834096
  143.             -8      6000k      3300k        2100k      828642
  144.             -9      6700k      3700k        2350k      828642
  145. OPTIONS
  146.        -c --stdout
  147.               Compress or decompress to standard output.  -c will
  148.               decompress multiple files to stdout, but will  only
  149.               compress a single file to stdout.
  150.        -d --decompress
  151.               Force  decompression.  bzip2, bunzip2 and bzcat are
  152.               really the same program,  and  the  decision  about
  153.               what  actions to take is done on the basis of which
  154.               name is used.  This flag overrides that  mechanism,
  155.               and forces bzip2 to decompress.
  156.        -z --compress
  157.               The  complement  to -d: forces compression, regard-
  158.               less of the invokation name.
  159.        -t --test
  160.               Check integrity of the specified file(s), but don't
  161.               decompress  them.   This  really  performs  a trial
  162.               decompression and throws away the result.
  163.        -f --force
  164.               Force overwrite of output files.   Normally,  bzip2
  165.               will not overwrite existing output files.
  166.        -k --keep
  167.               Keep  (don't delete) input files during compression
  168.               or decompression.
  169.        -s --small
  170.               Reduce memory usage, for compression, decompression
  171.               and  testing.   Files  are  decompressed and tested
  172.               using a modified algorithm which only requires  2.5
  173.               bytes  per  block byte.  This means any file can be
  174.               decompressed in 2300k of memory,  albeit  at  about
  175.               half the normal speed.
  176.               During  compression,  -s  selects  a  block size of
  177.               200k, which limits memory use to  around  the  same
  178.               figure,  at  the expense of your compression ratio.
  179.               In short, if your  machine  is  low  on  memory  (8
  180.               megabytes  or  less),  use  -s for everything.  See
  181.               MEMORY MANAGEMENT above.
  182.        -v --verbose
  183.               Verbose mode -- show the compression ratio for each
  184.               file  processed.   Further  -v's  increase the ver-
  185.               bosity level, spewing out lots of information which
  186.               is primarily of interest for diagnostic purposes.
  187.        -L --license -V --version
  188.               Display  the  software  version,  license terms and
  189.               conditions.
  190.        -1 to -9
  191.               Set the block size to 100 k, 200 k ..  900  k  when
  192.               compressing.   Has  no  effect  when decompressing.
  193.               See MEMORY MANAGEMENT above.
  194.        --repetitive-fast
  195.               bzip2 injects some small  pseudo-random  variations
  196.               into  very  repetitive  blocks  to limit worst-case
  197.               performance during compression.   If  sorting  runs
  198.               into  difficulties,  the  block  is randomised, and
  199.               sorting is restarted.  Very roughly, bzip2 persists
  200.               for  three  times  as  long as a well-behaved input
  201.               would take before resorting to randomisation.  This
  202.               flag makes it give up much sooner.
  203.        --repetitive-best
  204.               Opposite  of  --repetitive-fast;  try  a lot harder
  205.               before resorting to randomisation.
  206. RECOVERING DATA FROM DAMAGED FILES
  207.        bzip2 compresses files in blocks, usually 900kbytes  long.
  208.        Each block is handled independently.  If a media or trans-
  209.        mission error causes a multi-block  .bz2  file  to  become
  210.        damaged,  it  may  be  possible  to  recover data from the
  211.        undamaged blocks in the file.
  212.        The compressed representation of each block  is  delimited
  213.        by  a  48-bit pattern, which makes it possible to find the
  214.        block boundaries with reasonable  certainty.   Each  block
  215.        also  carries its own 32-bit CRC, so damaged blocks can be
  216.        distinguished from undamaged ones.
  217.        bzip2recover is a  simple  program  whose  purpose  is  to
  218.        search  for blocks in .bz2 files, and write each block out
  219.        into its own .bz2 file.  You can then use bzip2 -t to test
  220.        the integrity of the resulting files, and decompress those
  221.        which are undamaged.
  222.        bzip2recover takes a single argument, the name of the dam-
  223.        aged file, and writes a number of files "rec0001file.bz2",
  224.        "rec0002file.bz2", etc, containing the  extracted  blocks.
  225.        The  output  filenames  are  designed  so  that the use of
  226.        wildcards in subsequent processing -- for example,  "bzip2
  227.        -dc  rec*file.bz2  > recovered_data" -- lists the files in
  228.        the "right" order.
  229.        bzip2recover should be of most use dealing with large .bz2
  230.        files,  as  these will contain many blocks.  It is clearly
  231.        futile to use it on damaged single-block  files,  since  a
  232.        damaged  block  cannot  be recovered.  If you wish to min-
  233.        imise any potential data loss through media  or  transmis-
  234.        sion errors, you might consider compressing with a smaller
  235.        block size.
  236. PERFORMANCE NOTES
  237.        The sorting phase of compression gathers together  similar
  238.        strings  in  the  file.  Because of this, files containing
  239.        very long runs of  repeated  symbols,  like  "aabaabaabaab
  240.        ..."   (repeated   several  hundred  times)  may  compress
  241.        extraordinarily slowly.  You can use the -vvvvv option  to
  242.        monitor progress in great detail, if you want.  Decompres-
  243.        sion speed is unaffected.
  244.        Such pathological cases seem rare in  practice,  appearing
  245.        mostly in artificially-constructed test files, and in low-
  246.        level disk images.  It may be inadvisable to use bzip2  to
  247.        compress  the  latter.   If you do get a file which causes
  248.        severe slowness in compression, try making the block  size
  249.        as small as possible, with flag -1.
  250.        bzip2  usually  allocates  several  megabytes of memory to
  251.        operate in, and then charges all over it in a fairly  ran-
  252.        dom  fashion.   This means that performance, both for com-
  253.        pressing and decompressing, is largely determined  by  the
  254.        speed  at  which  your  machine  can service cache misses.
  255.        Because of this, small changes to the code to  reduce  the
  256.        miss  rate  have  been observed to give disproportionately
  257.        large performance improvements.  I imagine bzip2 will per-
  258.        form best on machines with very large caches.
  259. CAVEATS
  260.        I/O  error  messages  are not as helpful as they could be.
  261.        Bzip2 tries hard to detect I/O errors  and  exit  cleanly,
  262.        but  the  details  of  what  the problem is sometimes seem
  263.        rather misleading.
  264.        This manual page pertains to version 0.9.0 of bzip2.  Com-
  265.        pressed  data created by this version is entirely forwards
  266.        and backwards compatible with the previous public release,
  267.        version  0.1pl2,  but  with the following exception: 0.9.0
  268.        can correctly decompress multiple concatenated  compressed
  269.        files.   0.1pl2  cannot do this; it will stop after decom-
  270.        pressing just the first file in the stream.
  271.        Wildcard expansion for Windows 95 and NT is flaky.
  272.        bzip2recover uses 32-bit integers to represent  bit  posi-
  273.        tions  in compressed files, so it cannot handle compressed
  274.        files more than 512 megabytes long.  This could easily  be
  275.        fixed.
  276. AUTHOR
  277.        Julian Seward, jseward@acm.org.
  278.        http://www.muraroa.demon.co.uk
  279.        The ideas embodied in bzip2 are due to (at least) the fol-
  280.        lowing people: Michael Burrows and David Wheeler (for  the
  281.        block  sorting  transformation), David Wheeler (again, for
  282.        the Huffman coder), Peter Fenwick (for the structured cod-
  283.        ing model in the original bzip, and many refinements), and
  284.        Alistair Moffat, Radford Neal  and  Ian  Witten  (for  the
  285.        arithmetic  coder  in  the  original  bzip).   I  am  much
  286.        indebted for their help, support and advice.  See the man-
  287.        ual  in the source distribution for pointers to sources of
  288.        documentation.  Christian von Roques encouraged me to look
  289.        for  faster sorting algorithms, so as to speed up compres-
  290.        sion.  Bela Lubkin encouraged me to improve the worst-case
  291.        compression performance.  Many people sent patches, helped
  292.        with portability problems, lent machines, gave advice  and
  293.        were generally helpful.