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

压缩解压

开发平台:

C/C++

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