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

生物技术

开发平台:

C/C++

  1. input texinfo  @c                                  -*- Texinfo -*-
  2. @setfilename bzip2.info
  3. @ignore
  4. This file documents bzip2 version 1.0.2, and associated library
  5. libbzip2, written by Julian Seward (jseward@acm.org).
  6. Copyright (C) 1996-2002 Julian R Seward
  7. Permission is granted to make and distribute verbatim copies of
  8. this manual provided the copyright notice and this permission notice
  9. are preserved on all copies.
  10. Permission is granted to copy and distribute translations of this manual
  11. into another language, under the above conditions for verbatim copies.
  12. @end ignore
  13. @ifinfo
  14. @format
  15. START-INFO-DIR-ENTRY
  16. * Bzip2: (bzip2). A program and library for data compression.
  17. END-INFO-DIR-ENTRY
  18. @end format
  19. @end ifinfo
  20. @iftex
  21. @c @finalout
  22. @settitle bzip2 and libbzip2
  23. @titlepage
  24. @title bzip2 and libbzip2
  25. @subtitle a program and library for data compression
  26. @subtitle copyright (C) 1996-2002 Julian Seward
  27. @subtitle version 1.0.2 of 30 December 2001
  28. @author Julian Seward
  29. @end titlepage
  30. @parindent 0mm
  31. @parskip 2mm
  32. @end iftex
  33. @node Top,,, (dir)
  34. The following text is the License for this software.  You should
  35. find it identical to that contained in the file LICENSE in the 
  36. source distribution.
  37. @bf{------------------ START OF THE LICENSE ------------------}
  38. This program, @code{bzip2}, 
  39. and associated library @code{libbzip2}, are
  40. Copyright (C) 1996-2002 Julian R Seward.  All rights reserved.
  41. Redistribution and use in source and binary forms, with or without
  42. modification, are permitted provided that the following conditions
  43. are met:
  44. @itemize @bullet
  45. @item
  46.    Redistributions of source code must retain the above copyright
  47.    notice, this list of conditions and the following disclaimer.
  48. @item
  49.    The origin of this software must not be misrepresented; you must 
  50.    not claim that you wrote the original software.  If you use this 
  51.    software in a product, an acknowledgment in the product 
  52.    documentation would be appreciated but is not required.
  53. @item
  54.    Altered source versions must be plainly marked as such, and must
  55.    not be misrepresented as being the original software.
  56. @item
  57.    The name of the author may not be used to endorse or promote 
  58.    products derived from this software without specific prior written 
  59.    permission.
  60. @end itemize
  61. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  62. OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  63. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  64. ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  65. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  66. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  67. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  68. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  69. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  70. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  71. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  72. Julian Seward, Cambridge, UK.
  73. @code{jseward@@acm.org}
  74. @code{bzip2}/@code{libbzip2} version 1.0.2 of 30 December 2001.
  75. @bf{------------------ END OF THE LICENSE ------------------}
  76. Web sites:
  77. @code{http://sources.redhat.com/bzip2}
  78. @code{http://www.cacheprof.org}
  79. PATENTS: To the best of my knowledge, @code{bzip2} does not use any patented
  80. algorithms.  However, I do not have the resources available to carry out
  81. a full patent search.  Therefore I cannot give any guarantee of the
  82. above statement.
  83. @chapter Introduction
  84. @code{bzip2}  compresses  files  using the Burrows-Wheeler 
  85. block-sorting text compression algorithm,  and  Huffman  coding.
  86. Compression  is  generally  considerably  better than that
  87. achieved by more conventional LZ77/LZ78-based compressors,
  88. and  approaches  the performance of the PPM family of statistical compressors.
  89. @code{bzip2} is built on top of @code{libbzip2}, a flexible library
  90. for handling compressed data in the @code{bzip2} format.  This manual
  91. describes both how to use the program and 
  92. how to work with the library interface.  Most of the
  93. manual is devoted to this library, not the program, 
  94. which is good news if your interest is only in the program.
  95. Chapter 2 describes how to use @code{bzip2}; this is the only part 
  96. you need to read if you just want to know how to operate the program.
  97. Chapter 3 describes the programming interfaces in detail, and
  98. Chapter 4 records some miscellaneous notes which I thought
  99. ought to be recorded somewhere.
  100. @chapter How to use @code{bzip2}
  101. This chapter contains a copy of the @code{bzip2} man page,
  102. and nothing else.
  103. @quotation
  104. @unnumberedsubsubsec NAME
  105. @itemize
  106. @item @code{bzip2}, @code{bunzip2}
  107. - a block-sorting file compressor, v1.0.2
  108. @item @code{bzcat} 
  109. - decompresses files to stdout
  110. @item @code{bzip2recover}
  111. - recovers data from damaged bzip2 files
  112. @end itemize
  113. @unnumberedsubsubsec SYNOPSIS
  114. @itemize
  115. @item @code{bzip2} [ -cdfkqstvzVL123456789 ] [ filenames ...  ]
  116. @item @code{bunzip2} [ -fkvsVL ] [ filenames ...  ]
  117. @item @code{bzcat} [ -s ] [ filenames ...  ]
  118. @item @code{bzip2recover} filename
  119. @end itemize
  120. @unnumberedsubsubsec DESCRIPTION
  121. @code{bzip2} compresses files using the Burrows-Wheeler block sorting
  122. text compression algorithm, and Huffman coding.  Compression is
  123. generally considerably better than that achieved by more conventional
  124. LZ77/LZ78-based compressors, and approaches the performance of the PPM
  125. family of statistical compressors.
  126. The command-line options are deliberately very similar to those of GNU
  127. @code{gzip}, but they are not identical.
  128. @code{bzip2} expects a list of file names to accompany the command-line
  129. flags.  Each file is replaced by a compressed version of itself, with
  130. the name @code{original_name.bz2}.  Each compressed file has the same
  131. modification date, permissions, and, when possible, ownership as the
  132. corresponding original, so that these properties can be correctly
  133. restored at decompression time.  File name handling is naive in the
  134. sense that there is no mechanism for preserving original file names,
  135. permissions, ownerships or dates in filesystems which lack these
  136. concepts, or have serious file name length restrictions, such as MS-DOS.
  137. @code{bzip2} and @code{bunzip2} will by default not overwrite existing
  138. files.  If you want this to happen, specify the @code{-f} flag.
  139. If no file names are specified, @code{bzip2} compresses from standard
  140. input to standard output.  In this case, @code{bzip2} will decline to
  141. write compressed output to a terminal, as this would be entirely
  142. incomprehensible and therefore pointless.
  143. @code{bunzip2} (or @code{bzip2 -d}) decompresses all
  144. specified files.  Files which were not created by @code{bzip2}
  145. will be detected and ignored, and a warning issued.  
  146. @code{bzip2} attempts to guess the filename for the decompressed file 
  147. from that of the compressed file as follows:
  148. @itemize
  149. @item @code{filename.bz2 } becomes @code{filename}
  150. @item @code{filename.bz  } becomes @code{filename}
  151. @item @code{filename.tbz2} becomes @code{filename.tar}
  152. @item @code{filename.tbz } becomes @code{filename.tar}
  153. @item @code{anyothername } becomes @code{anyothername.out}
  154. @end itemize
  155. If the file does not end in one of the recognised endings, 
  156. @code{.bz2}, @code{.bz}, 
  157. @code{.tbz2} or @code{.tbz}, @code{bzip2} complains that it cannot
  158. guess the name of the original file, and uses the original name
  159. with @code{.out} appended.
  160. As with compression, supplying no
  161. filenames causes decompression from standard input to standard output.
  162. @code{bunzip2} will correctly decompress a file which is the
  163. concatenation of two or more compressed files.  The result is the
  164. concatenation of the corresponding uncompressed files.  Integrity
  165. testing (@code{-t}) of concatenated compressed files is also supported.
  166. You can also compress or decompress files to the standard output by
  167. giving the @code{-c} flag.  Multiple files may be compressed and
  168. decompressed like this.  The resulting outputs are fed sequentially to
  169. stdout.  Compression of multiple files in this manner generates a stream
  170. containing multiple compressed file representations.  Such a stream
  171. can be decompressed correctly only by @code{bzip2} version 0.9.0 or
  172. later.  Earlier versions of @code{bzip2} will stop after decompressing
  173. the first file in the stream.
  174. @code{bzcat} (or @code{bzip2 -dc}) decompresses all specified files to
  175. the standard output.
  176. @code{bzip2} will read arguments from the environment variables
  177. @code{BZIP2} and @code{BZIP}, in that order, and will process them
  178. before any arguments read from the command line.  This gives a 
  179. convenient way to supply default arguments.
  180. Compression is always performed, even if the compressed file is slightly
  181. larger than the original.  Files of less than about one hundred bytes
  182. tend to get larger, since the compression mechanism has a constant
  183. overhead in the region of 50 bytes.  Random data (including the output
  184. of most file compressors) is coded at about 8.05 bits per byte, giving
  185. an expansion of around 0.5%.
  186. As a self-check for your protection, @code{bzip2} uses 32-bit CRCs to
  187. make sure that the decompressed version of a file is identical to the
  188. original.  This guards against corruption of the compressed data, and
  189. against undetected bugs in @code{bzip2} (hopefully very unlikely).  The
  190. chances of data corruption going undetected is microscopic, about one
  191. chance in four billion for each file processed.  Be aware, though, that
  192. the check occurs upon decompression, so it can only tell you that
  193. something is wrong.  It can't help you recover the original uncompressed
  194. data.  You can use @code{bzip2recover} to try to recover data from
  195. damaged files.
  196. Return values: 0 for a normal exit, 1 for environmental problems (file
  197. not found, invalid flags, I/O errors, &c), 2 to indicate a corrupt
  198. compressed file, 3 for an internal consistency error (eg, bug) which
  199. caused @code{bzip2} to panic.
  200. @unnumberedsubsubsec OPTIONS
  201. @table @code
  202. @item -c  --stdout
  203. Compress or decompress to standard output.
  204. @item -d  --decompress
  205. Force decompression.  @code{bzip2}, @code{bunzip2} and @code{bzcat} are
  206. really the same program, and the decision about what actions to take is
  207. done on the basis of which name is used.  This flag overrides that
  208. mechanism, and forces bzip2 to decompress.
  209. @item -z --compress
  210. The complement to @code{-d}: forces compression, regardless of the
  211. invokation name.
  212. @item -t --test
  213. Check integrity of the specified file(s), but don't decompress them.
  214. This really performs a trial decompression and throws away the result.
  215. @item -f --force
  216. Force overwrite of output files.  Normally, @code{bzip2} will not overwrite
  217. existing output files.  Also forces @code{bzip2} to break hard links
  218. to files, which it otherwise wouldn't do.
  219. @code{bzip2} normally declines to decompress files which don't have the
  220. correct magic header bytes.  If forced (@code{-f}), however, it will
  221. pass such files through unmodified.  This is how GNU @code{gzip}
  222. behaves.
  223. @item -k --keep
  224. Keep (don't delete) input files during compression
  225. or decompression.
  226. @item -s --small
  227. Reduce memory usage, for compression, decompression and testing.  Files
  228. are decompressed and tested using a modified algorithm which only
  229. requires 2.5 bytes per block byte.  This means any file can be
  230. decompressed in 2300k of memory, albeit at about half the normal speed.
  231. During compression, @code{-s} selects a block size of 200k, which limits
  232. memory use to around the same figure, at the expense of your compression
  233. ratio.  In short, if your machine is low on memory (8 megabytes or
  234. less), use -s for everything.  See MEMORY MANAGEMENT below.
  235. @item -q --quiet
  236. Suppress non-essential warning messages.  Messages pertaining to
  237. I/O errors and other critical events will not be suppressed.
  238. @item -v --verbose
  239. Verbose mode -- show the compression ratio for each file processed.
  240. Further @code{-v}'s increase the verbosity level, spewing out lots of
  241. information which is primarily of interest for diagnostic purposes.
  242. @item -L --license -V --version
  243. Display the software version, license terms and conditions.
  244. @item -1 (or --fast) to -9 (or --best)
  245. Set the block size to 100 k, 200 k ..  900 k when compressing.  Has no
  246. effect when decompressing.  See MEMORY MANAGEMENT below.
  247. The @code{--fast} and @code{--best} aliases are primarily for GNU
  248. @code{gzip} compatibility.  In particular, @code{--fast} doesn't make
  249. things significantly faster.  And @code{--best} merely selects the
  250. default behaviour.
  251. @item --
  252. Treats all subsequent arguments as file names, even if they start
  253. with a dash.  This is so you can handle files with names beginning
  254. with a dash, for example: @code{bzip2 -- -myfilename}.
  255. @item --repetitive-fast 
  256. @item --repetitive-best
  257. These flags are redundant in versions 0.9.5 and above.  They provided
  258. some coarse control over the behaviour of the sorting algorithm in
  259. earlier versions, which was sometimes useful.  0.9.5 and above have an
  260. improved algorithm which renders these flags irrelevant.
  261. @end table
  262. @unnumberedsubsubsec MEMORY MANAGEMENT
  263. @code{bzip2} compresses large files in blocks.  The block size affects
  264. both the compression ratio achieved, and the amount of memory needed for
  265. compression and decompression.  The flags @code{-1} through @code{-9}
  266. specify the block size to be 100,000 bytes through 900,000 bytes (the
  267. default) respectively.  At decompression time, the block size used for
  268. compression is read from the header of the compressed file, and
  269. @code{bunzip2} then allocates itself just enough memory to decompress
  270. the file.  Since block sizes are stored in compressed files, it follows
  271. that the flags @code{-1} to @code{-9} are irrelevant to and so ignored
  272. during decompression.
  273. Compression and decompression requirements, in bytes, can be estimated
  274. as:
  275. @example
  276.      Compression:   400k + ( 8 x block size )
  277.      Decompression: 100k + ( 4 x block size ), or
  278.                     100k + ( 2.5 x block size )
  279. @end example
  280. Larger block sizes give rapidly diminishing marginal returns.  Most of
  281. the compression comes from the first two or three hundred k of block
  282. size, a fact worth bearing in mind when using @code{bzip2} on small machines.
  283. It is also important to appreciate that the decompression memory
  284. requirement is set at compression time by the choice of block size.
  285. For files compressed with the default 900k block size, @code{bunzip2}
  286. will require about 3700 kbytes to decompress.  To support decompression
  287. of any file on a 4 megabyte machine, @code{bunzip2} has an option to
  288. decompress using approximately half this amount of memory, about 2300
  289. kbytes.  Decompression speed is also halved, so you should use this
  290. option only where necessary.  The relevant flag is @code{-s}.
  291. In general, try and use the largest block size memory constraints allow,
  292. since that maximises the compression achieved.  Compression and
  293. decompression speed are virtually unaffected by block size.
  294. Another significant point applies to files which fit in a single block
  295. -- that means most files you'd encounter using a large block size.  The
  296. amount of real memory touched is proportional to the size of the file,
  297. since the file is smaller than a block.  For example, compressing a file
  298. 20,000 bytes long with the flag @code{-9} will cause the compressor to
  299. allocate around 7600k of memory, but only touch 400k + 20000 * 8 = 560
  300. kbytes of it.  Similarly, the decompressor will allocate 3700k but only
  301. touch 100k + 20000 * 4 = 180 kbytes.
  302. Here is a table which summarises the maximum memory usage for different
  303. block sizes.  Also recorded is the total compressed size for 14 files of
  304. the Calgary Text Compression Corpus totalling 3,141,622 bytes.  This
  305. column gives some feel for how compression varies with block size.
  306. These figures tend to understate the advantage of larger block sizes for
  307. larger files, since the Corpus is dominated by smaller files.
  308. @example
  309.           Compress   Decompress   Decompress   Corpus
  310.    Flag     usage      usage       -s usage     Size
  311.     -1      1200k       500k         350k      914704
  312.     -2      2000k       900k         600k      877703
  313.     -3      2800k      1300k         850k      860338
  314.     -4      3600k      1700k        1100k      846899
  315.     -5      4400k      2100k        1350k      845160
  316.     -6      5200k      2500k        1600k      838626
  317.     -7      6100k      2900k        1850k      834096
  318.     -8      6800k      3300k        2100k      828642
  319.     -9      7600k      3700k        2350k      828642
  320. @end example
  321. @unnumberedsubsubsec RECOVERING DATA FROM DAMAGED FILES
  322. @code{bzip2} compresses files in blocks, usually 900kbytes long.  Each
  323. block is handled independently.  If a media or transmission error causes
  324. a multi-block @code{.bz2} file to become damaged, it may be possible to
  325. recover data from the undamaged blocks in the file.
  326. The compressed representation of each block is delimited by a 48-bit
  327. pattern, which makes it possible to find the block boundaries with
  328. reasonable certainty.  Each block also carries its own 32-bit CRC, so
  329. damaged blocks can be distinguished from undamaged ones.
  330. @code{bzip2recover} is a simple program whose purpose is to search for
  331. blocks in @code{.bz2} files, and write each block out into its own
  332. @code{.bz2} file.  You can then use @code{bzip2 -t} to test the
  333. integrity of the resulting files, and decompress those which are
  334. undamaged.
  335. @code{bzip2recover} 
  336. takes a single argument, the name of the damaged file, and writes a
  337. number of files @code{rec00001file.bz2}, @code{rec00002file.bz2}, etc,
  338. containing the extracted blocks.  The output filenames are designed so
  339. that the use of wildcards in subsequent processing -- for example,
  340. @code{bzip2 -dc rec*file.bz2 > recovered_data} -- processes the files in
  341. the correct order.
  342. @code{bzip2recover} should be of most use dealing with large @code{.bz2}
  343. files, as these will contain many blocks.  It is clearly futile to use
  344. it on damaged single-block files, since a damaged block cannot be
  345. recovered.  If you wish to minimise any potential data loss through
  346. media or transmission errors, you might consider compressing with a
  347. smaller block size.
  348. @unnumberedsubsubsec PERFORMANCE NOTES
  349. The sorting phase of compression gathers together similar strings in the
  350. file.  Because of this, files containing very long runs of repeated
  351. symbols, like "aabaabaabaab ..."  (repeated several hundred times) may
  352. compress more slowly than normal.  Versions 0.9.5 and above fare much
  353. better than previous versions in this respect.  The ratio between
  354. worst-case and average-case compression time is in the region of 10:1.
  355. For previous versions, this figure was more like 100:1.  You can use the
  356. @code{-vvvv} option to monitor progress in great detail, if you want.
  357. Decompression speed is unaffected by these phenomena.
  358. @code{bzip2} usually allocates several megabytes of memory to operate
  359. in, and then charges all over it in a fairly random fashion.  This means
  360. that performance, both for compressing and decompressing, is largely
  361. determined by the speed at which your machine can service cache misses.
  362. Because of this, small changes to the code to reduce the miss rate have
  363. been observed to give disproportionately large performance improvements.
  364. I imagine @code{bzip2} will perform best on machines with very large
  365. caches.
  366. @unnumberedsubsubsec CAVEATS
  367. I/O error messages are not as helpful as they could be.  @code{bzip2}
  368. tries hard to detect I/O errors and exit cleanly, but the details of
  369. what the problem is sometimes seem rather misleading.
  370. This manual page pertains to version 1.0.2 of @code{bzip2}.  Compressed
  371. data created by this version is entirely forwards and backwards
  372. compatible with the previous public releases, versions 0.1pl2, 0.9.0,
  373. 0.9.5, 1.0.0 and 1.0.1, but with the following exception: 0.9.0 and
  374. above can correctly decompress multiple concatenated compressed files.
  375. 0.1pl2 cannot do this; it will stop after decompressing just the first
  376. file in the stream.
  377. @code{bzip2recover} versions prior to this one, 1.0.2, used 32-bit
  378. integers to represent bit positions in compressed files, so it could not
  379. handle compressed files more than 512 megabytes long.  Version 1.0.2 and
  380. above uses 64-bit ints on some platforms which support them (GNU
  381. supported targets, and Windows).  To establish whether or not
  382. @code{bzip2recover} was built with such a limitation, run it without
  383. arguments.  In any event you can build yourself an unlimited version if
  384. you can recompile it with @code{MaybeUInt64} set to be an unsigned
  385. 64-bit integer.
  386. @unnumberedsubsubsec AUTHOR
  387. Julian Seward, @code{jseward@@acm.org}.
  388. @code{http://sources.redhat.com/bzip2}
  389. The ideas embodied in @code{bzip2} are due to (at least) the following
  390. people: Michael Burrows and David Wheeler (for the block sorting
  391. transformation), David Wheeler (again, for the Huffman coder), Peter
  392. Fenwick (for the structured coding model in the original @code{bzip},
  393. and many refinements), and Alistair Moffat, Radford Neal and Ian Witten
  394. (for the arithmetic coder in the original @code{bzip}).  I am much
  395. indebted for their help, support and advice.  See the manual in the
  396. source distribution for pointers to sources of documentation.  Christian
  397. von Roques encouraged me to look for faster sorting algorithms, so as to
  398. speed up compression.  Bela Lubkin encouraged me to improve the
  399. worst-case compression performance.  The @code{bz*} scripts are derived
  400. from those of GNU @code{gzip}.  Many people sent patches, helped with
  401. portability problems, lent machines, gave advice and were generally
  402. helpful.
  403. @end quotation
  404. @chapter Programming with @code{libbzip2}
  405. This chapter describes the programming interface to @code{libbzip2}.
  406. For general background information, particularly about memory
  407. use and performance aspects, you'd be well advised to read Chapter 2
  408. as well.
  409. @section Top-level structure
  410. @code{libbzip2} is a flexible library for compressing and decompressing
  411. data in the @code{bzip2} data format.  Although packaged as a single
  412. entity, it helps to regard the library as three separate parts: the low
  413. level interface, and the high level interface, and some utility
  414. functions.
  415. The structure of @code{libbzip2}'s interfaces is similar to
  416. that of Jean-loup Gailly's and Mark Adler's excellent @code{zlib} 
  417. library.
  418. All externally visible symbols have names beginning @code{BZ2_}.
  419. This is new in version 1.0.  The intention is to minimise pollution
  420. of the namespaces of library clients.
  421. @subsection Low-level summary
  422. This interface provides services for compressing and decompressing
  423. data in memory.  There's no provision for dealing with files, streams
  424. or any other I/O mechanisms, just straight memory-to-memory work.
  425. In fact, this part of the library can be compiled without inclusion
  426. of @code{stdio.h}, which may be helpful for embedded applications.
  427. The low-level part of the library has no global variables and
  428. is therefore thread-safe.
  429. Six routines make up the low level interface: 
  430. @code{BZ2_bzCompressInit}, @code{BZ2_bzCompress}, and @* @code{BZ2_bzCompressEnd}
  431. for compression,
  432. and a corresponding trio @code{BZ2_bzDecompressInit}, @* @code{BZ2_bzDecompress}
  433. and @code{BZ2_bzDecompressEnd} for decompression.  
  434. The @code{*Init} functions allocate
  435. memory for compression/decompression and do other
  436. initialisations, whilst the @code{*End} functions close down operations
  437. and release memory.
  438. The real work is done by @code{BZ2_bzCompress} and @code{BZ2_bzDecompress}.  
  439. These compress and decompress data from a user-supplied input buffer
  440. to a user-supplied output buffer.  These buffers can be any size;
  441. arbitrary quantities of data are handled by making repeated calls
  442. to these functions.  This is a flexible mechanism allowing a 
  443. consumer-pull style of activity, or producer-push, or a mixture of
  444. both.
  445. @subsection High-level summary
  446. This interface provides some handy wrappers around the low-level
  447. interface to facilitate reading and writing @code{bzip2} format
  448. files (@code{.bz2} files).  The routines provide hooks to facilitate
  449. reading files in which the @code{bzip2} data stream is embedded 
  450. within some larger-scale file structure, or where there are
  451. multiple @code{bzip2} data streams concatenated end-to-end.
  452. For reading files, @code{BZ2_bzReadOpen}, @code{BZ2_bzRead},
  453. @code{BZ2_bzReadClose} and @* @code{BZ2_bzReadGetUnused} are supplied.  For
  454. writing files, @code{BZ2_bzWriteOpen}, @code{BZ2_bzWrite} and
  455. @code{BZ2_bzWriteFinish} are available.
  456. As with the low-level library, no global variables are used
  457. so the library is per se thread-safe.  However, if I/O errors
  458. occur whilst reading or writing the underlying compressed files,
  459. you may have to consult @code{errno} to determine the cause of
  460. the error.  In that case, you'd need a C library which correctly
  461. supports @code{errno} in a multithreaded environment.
  462. To make the library a little simpler and more portable,
  463. @code{BZ2_bzReadOpen} and @code{BZ2_bzWriteOpen} require you to pass them file
  464. handles (@code{FILE*}s) which have previously been opened for reading or
  465. writing respectively.  That avoids portability problems associated with
  466. file operations and file attributes, whilst not being much of an
  467. imposition on the programmer.
  468. @subsection Utility functions summary
  469. For very simple needs, @code{BZ2_bzBuffToBuffCompress} and
  470. @code{BZ2_bzBuffToBuffDecompress} are provided.  These compress
  471. data in memory from one buffer to another buffer in a single
  472. function call.  You should assess whether these functions
  473. fulfill your memory-to-memory compression/decompression
  474. requirements before investing effort in understanding the more
  475. general but more complex low-level interface.
  476. Yoshioka Tsuneo (@code{QWF00133@@niftyserve.or.jp} /
  477. @code{tsuneo-y@@is.aist-nara.ac.jp}) has contributed some functions to
  478. give better @code{zlib} compatibility.  These functions are
  479. @code{BZ2_bzopen}, @code{BZ2_bzread}, @code{BZ2_bzwrite}, @code{BZ2_bzflush},
  480. @code{BZ2_bzclose},
  481. @code{BZ2_bzerror} and @code{BZ2_bzlibVersion}.  You may find these functions
  482. more convenient for simple file reading and writing, than those in the
  483. high-level interface.  These functions are not (yet) officially part of
  484. the library, and are minimally documented here.  If they break, you
  485. get to keep all the pieces.  I hope to document them properly when time
  486. permits.
  487. Yoshioka also contributed modifications to allow the library to be
  488. built as a Windows DLL.
  489. @section Error handling
  490. The library is designed to recover cleanly in all situations, including
  491. the worst-case situation of decompressing random data.  I'm not 
  492. 100% sure that it can always do this, so you might want to add
  493. a signal handler to catch segmentation violations during decompression
  494. if you are feeling especially paranoid.  I would be interested in
  495. hearing more about the robustness of the library to corrupted
  496. compressed data.
  497. Version 1.0 is much more robust in this respect than
  498. 0.9.0 or 0.9.5.  Investigations with Checker (a tool for 
  499. detecting problems with memory management, similar to Purify)
  500. indicate that, at least for the few files I tested, all single-bit
  501. errors in the decompressed data are caught properly, with no
  502. segmentation faults, no reads of uninitialised data and no 
  503. out of range reads or writes.  So it's certainly much improved,
  504. although I wouldn't claim it to be totally bombproof.
  505. The file @code{bzlib.h} contains all definitions needed to use
  506. the library.  In particular, you should definitely not include
  507. @code{bzlib_private.h}.
  508. In @code{bzlib.h}, the various return values are defined.  The following
  509. list is not intended as an exhaustive description of the circumstances 
  510. in which a given value may be returned -- those descriptions are given
  511. later.  Rather, it is intended to convey the rough meaning of each
  512. return value.  The first five actions are normal and not intended to 
  513. denote an error situation.
  514. @table @code
  515. @item BZ_OK
  516. The requested action was completed successfully.
  517. @item BZ_RUN_OK
  518. @itemx BZ_FLUSH_OK
  519. @itemx BZ_FINISH_OK
  520. In @code{BZ2_bzCompress}, the requested flush/finish/nothing-special action
  521. was completed successfully.
  522. @item BZ_STREAM_END
  523. Compression of data was completed, or the logical stream end was
  524. detected during decompression.
  525. @end table
  526. The following return values indicate an error of some kind.
  527. @table @code
  528. @item BZ_CONFIG_ERROR
  529. Indicates that the library has been improperly compiled on your
  530. platform -- a major configuration error.  Specifically, it means
  531. that @code{sizeof(char)}, @code{sizeof(short)} and @code{sizeof(int)}
  532. are not 1, 2 and 4 respectively, as they should be.  Note that the 
  533. library should still work properly on 64-bit platforms which follow
  534. the LP64 programming model -- that is, where @code{sizeof(long)}
  535. and @code{sizeof(void*)} are 8.  Under LP64, @code{sizeof(int)} is
  536. still 4, so @code{libbzip2}, which doesn't use the @code{long} type,
  537. is OK.
  538. @item BZ_SEQUENCE_ERROR
  539. When using the library, it is important to call the functions in the
  540. correct sequence and with data structures (buffers etc) in the correct
  541. states.  @code{libbzip2} checks as much as it can to ensure this is
  542. happening, and returns @code{BZ_SEQUENCE_ERROR} if not.  Code which
  543. complies precisely with the function semantics, as detailed below,
  544. should never receive this value; such an event denotes buggy code
  545. which you should investigate.
  546. @item BZ_PARAM_ERROR
  547. Returned when a parameter to a function call is out of range 
  548. or otherwise manifestly incorrect.  As with @code{BZ_SEQUENCE_ERROR},
  549. this denotes a bug in the client code.  The distinction between
  550. @code{BZ_PARAM_ERROR} and @code{BZ_SEQUENCE_ERROR} is a bit hazy, but still worth
  551. making.
  552. @item BZ_MEM_ERROR
  553. Returned when a request to allocate memory failed.  Note that the
  554. quantity of memory needed to decompress a stream cannot be determined
  555. until the stream's header has been read.  So @code{BZ2_bzDecompress} and
  556. @code{BZ2_bzRead} may return @code{BZ_MEM_ERROR} even though some of
  557. the compressed data has been read.  The same is not true for
  558. compression; once @code{BZ2_bzCompressInit} or @code{BZ2_bzWriteOpen} have
  559. successfully completed, @code{BZ_MEM_ERROR} cannot occur.
  560. @item BZ_DATA_ERROR
  561. Returned when a data integrity error is detected during decompression.
  562. Most importantly, this means when stored and computed CRCs for the
  563. data do not match.  This value is also returned upon detection of any
  564. other anomaly in the compressed data.
  565. @item BZ_DATA_ERROR_MAGIC
  566. As a special case of @code{BZ_DATA_ERROR}, it is sometimes useful to
  567. know when the compressed stream does not start with the correct
  568. magic bytes (@code{'B' 'Z' 'h'}).  
  569. @item BZ_IO_ERROR
  570. Returned by @code{BZ2_bzRead} and @code{BZ2_bzWrite} when there is an error
  571. reading or writing in the compressed file, and by @code{BZ2_bzReadOpen}
  572. and @code{BZ2_bzWriteOpen} for attempts to use a file for which the
  573. error indicator (viz, @code{ferror(f)}) is set.
  574. On receipt of @code{BZ_IO_ERROR}, the caller should consult
  575. @code{errno} and/or @code{perror} to acquire operating-system
  576. specific information about the problem.
  577. @item BZ_UNEXPECTED_EOF
  578. Returned by @code{BZ2_bzRead} when the compressed file finishes
  579. before the logical end of stream is detected.
  580. @item BZ_OUTBUFF_FULL
  581. Returned by @code{BZ2_bzBuffToBuffCompress} and
  582. @code{BZ2_bzBuffToBuffDecompress} to indicate that the output data
  583. will not fit into the output buffer provided.
  584. @end table
  585. @section Low-level interface
  586. @subsection @code{BZ2_bzCompressInit}
  587. @example
  588. typedef 
  589.    struct @{
  590.       char *next_in;
  591.       unsigned int avail_in;
  592.       unsigned int total_in_lo32;
  593.       unsigned int total_in_hi32;
  594.       char *next_out;
  595.       unsigned int avail_out;
  596.       unsigned int total_out_lo32;
  597.       unsigned int total_out_hi32;
  598.       void *state;
  599.       void *(*bzalloc)(void *,int,int);
  600.       void (*bzfree)(void *,void *);
  601.       void *opaque;
  602.    @} 
  603.    bz_stream;
  604. int BZ2_bzCompressInit ( bz_stream *strm, 
  605.                          int blockSize100k, 
  606.                          int verbosity,
  607.                          int workFactor );
  608. @end example
  609. Prepares for compression.  The @code{bz_stream} structure
  610. holds all data pertaining to the compression activity.  
  611. A @code{bz_stream} structure should be allocated and initialised
  612. prior to the call.
  613. The fields of @code{bz_stream}
  614. comprise the entirety of the user-visible data.  @code{state}
  615. is a pointer to the private data structures required for compression.
  616. Custom memory allocators are supported, via fields @code{bzalloc}, 
  617. @code{bzfree},
  618. and @code{opaque}.  The value 
  619. @code{opaque} is passed to as the first argument to
  620. all calls to @code{bzalloc} and @code{bzfree}, but is 
  621. otherwise ignored by the library.
  622. The call @code{bzalloc ( opaque, n, m )} is expected to return a 
  623. pointer @code{p} to
  624. @code{n * m} bytes of memory, and @code{bzfree ( opaque, p )} 
  625. should free
  626. that memory.
  627. If you don't want to use a custom memory allocator, set @code{bzalloc}, 
  628. @code{bzfree} and
  629. @code{opaque} to @code{NULL}, 
  630. and the library will then use the standard @code{malloc}/@code{free}
  631. routines.
  632. Before calling @code{BZ2_bzCompressInit}, fields @code{bzalloc}, 
  633. @code{bzfree} and @code{opaque} should
  634. be filled appropriately, as just described.  Upon return, the internal
  635. state will have been allocated and initialised, and @code{total_in_lo32}, 
  636. @code{total_in_hi32}, @code{total_out_lo32} and 
  637. @code{total_out_hi32} will have been set to zero.  
  638. These four fields are used by the library
  639. to inform the caller of the total amount of data passed into and out of
  640. the library, respectively.  You should not try to change them.
  641. As of version 1.0, 64-bit counts are maintained, even on 32-bit
  642. platforms, using the @code{_hi32} fields to store the upper 32 bits
  643. of the count.  So, for example, the total amount of data in
  644. is @code{(total_in_hi32 << 32) + total_in_lo32}.
  645. Parameter @code{blockSize100k} specifies the block size to be used for
  646. compression.  It should be a value between 1 and 9 inclusive, and the
  647. actual block size used is 100000 x this figure.  9 gives the best
  648. compression but takes most memory.
  649. Parameter @code{verbosity} should be set to a number between 0 and 4
  650. inclusive.  0 is silent, and greater numbers give increasingly verbose
  651. monitoring/debugging output.  If the library has been compiled with
  652. @code{-DBZ_NO_STDIO}, no such output will appear for any verbosity
  653. setting.
  654. Parameter @code{workFactor} controls how the compression phase behaves
  655. when presented with worst case, highly repetitive, input data.  If
  656. compression runs into difficulties caused by repetitive data, the
  657. library switches from the standard sorting algorithm to a fallback
  658. algorithm.  The fallback is slower than the standard algorithm by
  659. perhaps a factor of three, but always behaves reasonably, no matter how
  660. bad the input.
  661. Lower values of @code{workFactor} reduce the amount of effort the
  662. standard algorithm will expend before resorting to the fallback.  You
  663. should set this parameter carefully; too low, and many inputs will be
  664. handled by the fallback algorithm and so compress rather slowly, too
  665. high, and your average-to-worst case compression times can become very
  666. large.  The default value of 30 gives reasonable behaviour over a wide
  667. range of circumstances.
  668. Allowable values range from 0 to 250 inclusive.  0 is a special case,
  669. equivalent to using the default value of 30.
  670. Note that the compressed output generated is the same regardless of
  671. whether or not the fallback algorithm is used.
  672. Be aware also that this parameter may disappear entirely in future
  673. versions of the library.  In principle it should be possible to devise a
  674. good way to automatically choose which algorithm to use.  Such a
  675. mechanism would render the parameter obsolete.
  676. Possible return values:
  677. @display
  678.       @code{BZ_CONFIG_ERROR}
  679.          if the library has been mis-compiled
  680.       @code{BZ_PARAM_ERROR} 
  681.          if @code{strm} is @code{NULL} 
  682.          or @code{blockSize} < 1 or @code{blockSize} > 9
  683.          or @code{verbosity} < 0 or @code{verbosity} > 4
  684.          or @code{workFactor} < 0 or @code{workFactor} > 250
  685.       @code{BZ_MEM_ERROR} 
  686.          if not enough memory is available
  687.       @code{BZ_OK} 
  688.          otherwise
  689. @end display
  690. Allowable next actions:
  691. @display
  692.       @code{BZ2_bzCompress} 
  693.          if @code{BZ_OK} is returned
  694.       no specific action needed in case of error
  695. @end display
  696. @subsection @code{BZ2_bzCompress}
  697. @example
  698.    int BZ2_bzCompress ( bz_stream *strm, int action );
  699. @end example
  700. Provides more input and/or output buffer space for the library.  The
  701. caller maintains input and output buffers, and calls @code{BZ2_bzCompress} to
  702. transfer data between them.
  703. Before each call to @code{BZ2_bzCompress}, @code{next_in} should point at
  704. the data to be compressed, and @code{avail_in} should indicate how many
  705. bytes the library may read.  @code{BZ2_bzCompress} updates @code{next_in},
  706. @code{avail_in} and @code{total_in} to reflect the number of bytes it
  707. has read.
  708. Similarly, @code{next_out} should point to a buffer in which the
  709. compressed data is to be placed, with @code{avail_out} indicating how
  710. much output space is available.  @code{BZ2_bzCompress} updates
  711. @code{next_out}, @code{avail_out} and @code{total_out} to reflect the
  712. number of bytes output.
  713. You may provide and remove as little or as much data as you like on each
  714. call of @code{BZ2_bzCompress}.  In the limit, it is acceptable to supply and
  715. remove data one byte at a time, although this would be terribly
  716. inefficient.  You should always ensure that at least one byte of output
  717. space is available at each call.
  718. A second purpose of @code{BZ2_bzCompress} is to request a change of mode of the
  719. compressed stream.  
  720. Conceptually, a compressed stream can be in one of four states: IDLE,
  721. RUNNING, FLUSHING and FINISHING.  Before initialisation
  722. (@code{BZ2_bzCompressInit}) and after termination (@code{BZ2_bzCompressEnd}), a
  723. stream is regarded as IDLE.
  724. Upon initialisation (@code{BZ2_bzCompressInit}), the stream is placed in the
  725. RUNNING state.  Subsequent calls to @code{BZ2_bzCompress} should pass
  726. @code{BZ_RUN} as the requested action; other actions are illegal and
  727. will result in @code{BZ_SEQUENCE_ERROR}.
  728. At some point, the calling program will have provided all the input data
  729. it wants to.  It will then want to finish up -- in effect, asking the
  730. library to process any data it might have buffered internally.  In this
  731. state, @code{BZ2_bzCompress} will no longer attempt to read data from
  732. @code{next_in}, but it will want to write data to @code{next_out}.
  733. Because the output buffer supplied by the user can be arbitrarily small,
  734. the finishing-up operation cannot necessarily be done with a single call
  735. of @code{BZ2_bzCompress}.
  736. Instead, the calling program passes @code{BZ_FINISH} as an action to
  737. @code{BZ2_bzCompress}.  This changes the stream's state to FINISHING.  Any
  738. remaining input (ie, @code{next_in[0 .. avail_in-1]}) is compressed and
  739. transferred to the output buffer.  To do this, @code{BZ2_bzCompress} must be
  740. called repeatedly until all the output has been consumed.  At that
  741. point, @code{BZ2_bzCompress} returns @code{BZ_STREAM_END}, and the stream's
  742. state is set back to IDLE.  @code{BZ2_bzCompressEnd} should then be
  743. called.
  744. Just to make sure the calling program does not cheat, the library makes
  745. a note of @code{avail_in} at the time of the first call to
  746. @code{BZ2_bzCompress} which has @code{BZ_FINISH} as an action (ie, at the
  747. time the program has announced its intention to not supply any more
  748. input).  By comparing this value with that of @code{avail_in} over
  749. subsequent calls to @code{BZ2_bzCompress}, the library can detect any
  750. attempts to slip in more data to compress.  Any calls for which this is
  751. detected will return @code{BZ_SEQUENCE_ERROR}.  This indicates a
  752. programming mistake which should be corrected.
  753. Instead of asking to finish, the calling program may ask
  754. @code{BZ2_bzCompress} to take all the remaining input, compress it and
  755. terminate the current (Burrows-Wheeler) compression block.  This could
  756. be useful for error control purposes.  The mechanism is analogous to
  757. that for finishing: call @code{BZ2_bzCompress} with an action of
  758. @code{BZ_FLUSH}, remove output data, and persist with the
  759. @code{BZ_FLUSH} action until the value @code{BZ_RUN} is returned.  As
  760. with finishing, @code{BZ2_bzCompress} detects any attempt to provide more
  761. input data once the flush has begun.
  762. Once the flush is complete, the stream returns to the normal RUNNING
  763. state.
  764. This all sounds pretty complex, but isn't really.  Here's a table
  765. which shows which actions are allowable in each state, what action
  766. will be taken, what the next state is, and what the non-error return
  767. values are.  Note that you can't explicitly ask what state the
  768. stream is in, but nor do you need to -- it can be inferred from the
  769. values returned by @code{BZ2_bzCompress}.
  770. @display
  771. IDLE/@code{any}           
  772.       Illegal.  IDLE state only exists after @code{BZ2_bzCompressEnd} or
  773.       before @code{BZ2_bzCompressInit}.
  774.       Return value = @code{BZ_SEQUENCE_ERROR}
  775. RUNNING/@code{BZ_RUN}     
  776.       Compress from @code{next_in} to @code{next_out} as much as possible.
  777.       Next state = RUNNING
  778.       Return value = @code{BZ_RUN_OK}
  779. RUNNING/@code{BZ_FLUSH}   
  780.       Remember current value of @code{next_in}.  Compress from @code{next_in}
  781.       to @code{next_out} as much as possible, but do not accept any more input.  
  782.       Next state = FLUSHING
  783.       Return value = @code{BZ_FLUSH_OK}
  784. RUNNING/@code{BZ_FINISH}  
  785.       Remember current value of @code{next_in}.  Compress from @code{next_in}
  786.       to @code{next_out} as much as possible, but do not accept any more input.
  787.       Next state = FINISHING
  788.       Return value = @code{BZ_FINISH_OK}
  789. FLUSHING/@code{BZ_FLUSH}  
  790.       Compress from @code{next_in} to @code{next_out} as much as possible, 
  791.       but do not accept any more input.  
  792.       If all the existing input has been used up and all compressed
  793.       output has been removed
  794.          Next state = RUNNING; Return value = @code{BZ_RUN_OK}
  795.       else
  796.          Next state = FLUSHING; Return value = @code{BZ_FLUSH_OK}
  797. FLUSHING/other     
  798.       Illegal.
  799.       Return value = @code{BZ_SEQUENCE_ERROR}
  800. FINISHING/@code{BZ_FINISH}  
  801.       Compress from @code{next_in} to @code{next_out} as much as possible,
  802.       but to not accept any more input.  
  803.       If all the existing input has been used up and all compressed
  804.       output has been removed
  805.          Next state = IDLE; Return value = @code{BZ_STREAM_END}
  806.       else
  807.          Next state = FINISHING; Return value = @code{BZ_FINISHING}
  808. FINISHING/other
  809.       Illegal.
  810.       Return value = @code{BZ_SEQUENCE_ERROR}
  811. @end display
  812. That still looks complicated?  Well, fair enough.  The usual sequence
  813. of calls for compressing a load of data is:
  814. @itemize @bullet
  815. @item Get started with @code{BZ2_bzCompressInit}.
  816. @item Shovel data in and shlurp out its compressed form using zero or more
  817. calls of @code{BZ2_bzCompress} with action = @code{BZ_RUN}.
  818. @item Finish up.  
  819. Repeatedly call @code{BZ2_bzCompress} with action = @code{BZ_FINISH}, 
  820. copying out the compressed output, until @code{BZ_STREAM_END} is returned.
  821. @item Close up and go home.  Call @code{BZ2_bzCompressEnd}.
  822. @end itemize
  823. If the data you want to compress fits into your input buffer all
  824. at once, you can skip the calls of @code{BZ2_bzCompress ( ..., BZ_RUN )} and 
  825. just do the @code{BZ2_bzCompress ( ..., BZ_FINISH )} calls.
  826. All required memory is allocated by @code{BZ2_bzCompressInit}.  The
  827. compression library can accept any data at all (obviously).  So you
  828. shouldn't get any error return values from the @code{BZ2_bzCompress} calls.
  829. If you do, they will be @code{BZ_SEQUENCE_ERROR}, and indicate a bug in
  830. your programming.
  831. Trivial other possible return values:
  832. @display
  833.       @code{BZ_PARAM_ERROR}   
  834.          if @code{strm} is @code{NULL}, or @code{strm->s} is @code{NULL}
  835. @end display
  836. @subsection @code{BZ2_bzCompressEnd}
  837. @example
  838. int BZ2_bzCompressEnd ( bz_stream *strm );
  839. @end example
  840. Releases all memory associated with a compression stream.
  841. Possible return values:
  842. @display
  843.    @code{BZ_PARAM_ERROR}    if @code{strm} is @code{NULL} or @code{strm->s} is @code{NULL}
  844.    @code{BZ_OK}    otherwise
  845. @end display
  846. @subsection @code{BZ2_bzDecompressInit}
  847. @example
  848. int BZ2_bzDecompressInit ( bz_stream *strm, int verbosity, int small );
  849. @end example
  850. Prepares for decompression.  As with @code{BZ2_bzCompressInit}, a
  851. @code{bz_stream} record should be allocated and initialised before the
  852. call.  Fields @code{bzalloc}, @code{bzfree} and @code{opaque} should be
  853. set if a custom memory allocator is required, or made @code{NULL} for
  854. the normal @code{malloc}/@code{free} routines.  Upon return, the internal
  855. state will have been initialised, and @code{total_in} and
  856. @code{total_out} will be zero.
  857. For the meaning of parameter @code{verbosity}, see @code{BZ2_bzCompressInit}.
  858. If @code{small} is nonzero, the library will use an alternative
  859. decompression algorithm which uses less memory but at the cost of
  860. decompressing more slowly (roughly speaking, half the speed, but the
  861. maximum memory requirement drops to around 2300k).  See Chapter 2 for
  862. more information on memory management.
  863. Note that the amount of memory needed to decompress
  864. a stream cannot be determined until the stream's header has been read,
  865. so even if @code{BZ2_bzDecompressInit} succeeds, a subsequent
  866. @code{BZ2_bzDecompress} could fail with @code{BZ_MEM_ERROR}.
  867. Possible return values:
  868. @display
  869.       @code{BZ_CONFIG_ERROR}
  870.          if the library has been mis-compiled
  871.       @code{BZ_PARAM_ERROR}
  872.          if @code{(small != 0 && small != 1)}
  873.          or @code{(verbosity < 0 || verbosity > 4)}
  874.       @code{BZ_MEM_ERROR}
  875.          if insufficient memory is available
  876. @end display
  877. Allowable next actions:
  878. @display
  879.       @code{BZ2_bzDecompress}
  880.          if @code{BZ_OK} was returned
  881.       no specific action required in case of error
  882. @end display
  883.  
  884. @subsection @code{BZ2_bzDecompress}
  885. @example
  886. int BZ2_bzDecompress ( bz_stream *strm );
  887. @end example
  888. Provides more input and/out output buffer space for the library.  The
  889. caller maintains input and output buffers, and uses @code{BZ2_bzDecompress}
  890. to transfer data between them.
  891. Before each call to @code{BZ2_bzDecompress}, @code{next_in} 
  892. should point at the compressed data,
  893. and @code{avail_in} should indicate how many bytes the library
  894. may read.  @code{BZ2_bzDecompress} updates @code{next_in}, @code{avail_in} 
  895. and @code{total_in}
  896. to reflect the number of bytes it has read.
  897. Similarly, @code{next_out} should point to a buffer in which the uncompressed
  898. output is to be placed, with @code{avail_out} indicating how much output space
  899. is available.  @code{BZ2_bzCompress} updates @code{next_out},
  900. @code{avail_out} and @code{total_out} to reflect
  901. the number of bytes output.
  902. You may provide and remove as little or as much data as you like on
  903. each call of @code{BZ2_bzDecompress}.  
  904. In the limit, it is acceptable to
  905. supply and remove data one byte at a time, although this would be
  906. terribly inefficient.  You should always ensure that at least one
  907. byte of output space is available at each call.
  908. Use of @code{BZ2_bzDecompress} is simpler than @code{BZ2_bzCompress}.
  909. You should provide input and remove output as described above, and
  910. repeatedly call @code{BZ2_bzDecompress} until @code{BZ_STREAM_END} is
  911. returned.  Appearance of @code{BZ_STREAM_END} denotes that
  912. @code{BZ2_bzDecompress} has detected the logical end of the compressed
  913. stream.  @code{BZ2_bzDecompress} will not produce @code{BZ_STREAM_END} until
  914. all output data has been placed into the output buffer, so once
  915. @code{BZ_STREAM_END} appears, you are guaranteed to have available all
  916. the decompressed output, and @code{BZ2_bzDecompressEnd} can safely be
  917. called.
  918. If case of an error return value, you should call @code{BZ2_bzDecompressEnd}
  919. to clean up and release memory.
  920. Possible return values:
  921. @display
  922.       @code{BZ_PARAM_ERROR}
  923.          if @code{strm} is @code{NULL} or @code{strm->s} is @code{NULL}
  924.          or @code{strm->avail_out < 1}
  925.       @code{BZ_DATA_ERROR}
  926.          if a data integrity error is detected in the compressed stream
  927.       @code{BZ_DATA_ERROR_MAGIC}
  928.          if the compressed stream doesn't begin with the right magic bytes
  929.       @code{BZ_MEM_ERROR}
  930.          if there wasn't enough memory available
  931.       @code{BZ_STREAM_END}
  932.          if the logical end of the data stream was detected and all
  933.          output in has been consumed, eg @code{s->avail_out > 0}
  934.       @code{BZ_OK}
  935.          otherwise
  936. @end display
  937. Allowable next actions:
  938. @display
  939.       @code{BZ2_bzDecompress}
  940.          if @code{BZ_OK} was returned
  941.       @code{BZ2_bzDecompressEnd}
  942.          otherwise
  943. @end display
  944. @subsection @code{BZ2_bzDecompressEnd}
  945. @example
  946. int BZ2_bzDecompressEnd ( bz_stream *strm );
  947. @end example
  948. Releases all memory associated with a decompression stream.
  949. Possible return values:
  950. @display
  951.       @code{BZ_PARAM_ERROR}
  952.          if @code{strm} is @code{NULL} or @code{strm->s} is @code{NULL}
  953.       @code{BZ_OK}
  954.          otherwise
  955. @end display
  956. Allowable next actions:
  957. @display
  958.       None.
  959. @end display
  960. @section High-level interface
  961. This interface provides functions for reading and writing 
  962. @code{bzip2} format files.  First, some general points.
  963. @itemize @bullet
  964. @item All of the functions take an @code{int*} first argument,
  965.   @code{bzerror}.
  966.   After each call, @code{bzerror} should be consulted first to determine
  967.   the outcome of the call.  If @code{bzerror} is @code{BZ_OK}, 
  968.   the call completed
  969.   successfully, and only then should the return value of the function
  970.   (if any) be consulted.  If @code{bzerror} is @code{BZ_IO_ERROR}, 
  971.   there was an error
  972.   reading/writing the underlying compressed file, and you should
  973.   then consult @code{errno}/@code{perror} to determine the 
  974.   cause of the difficulty.
  975.   @code{bzerror} may also be set to various other values; precise details are
  976.   given on a per-function basis below.
  977. @item If @code{bzerror} indicates an error 
  978.   (ie, anything except @code{BZ_OK} and @code{BZ_STREAM_END}),
  979.   you should immediately call @code{BZ2_bzReadClose} (or @code{BZ2_bzWriteClose},
  980.   depending on whether you are attempting to read or to write)
  981.   to free up all resources associated
  982.   with the stream.  Once an error has been indicated, behaviour of all calls
  983.   except @code{BZ2_bzReadClose} (@code{BZ2_bzWriteClose}) is undefined.  
  984.   The implication is that (1) @code{bzerror} should
  985.   be checked after each call, and (2) if @code{bzerror} indicates an error, 
  986.   @code{BZ2_bzReadClose} (@code{BZ2_bzWriteClose}) should then be called to clean up.
  987. @item The @code{FILE*} arguments passed to
  988.    @code{BZ2_bzReadOpen}/@code{BZ2_bzWriteOpen}  
  989.   should be set to binary mode.
  990.   Most Unix systems will do this by default, but other platforms,
  991.   including Windows and Mac, will not.  If you omit this, you may
  992.   encounter problems when moving code to new platforms.
  993. @item Memory allocation requests are handled by
  994.   @code{malloc}/@code{free}.  
  995.   At present
  996.   there is no facility for user-defined memory allocators in the file I/O
  997.   functions (could easily be added, though).
  998. @end itemize
  999. @subsection @code{BZ2_bzReadOpen}
  1000. @example
  1001.    typedef void BZFILE;
  1002.    BZFILE *BZ2_bzReadOpen ( int *bzerror, FILE *f, 
  1003.                             int small, int verbosity,
  1004.                             void *unused, int nUnused );
  1005. @end example
  1006. Prepare to read compressed data from file handle @code{f}.  @code{f}
  1007. should refer to a file which has been opened for reading, and for which
  1008. the error indicator (@code{ferror(f)})is not set.  If @code{small} is 1,
  1009. the library will try to decompress using less memory, at the expense of
  1010. speed.
  1011. For reasons explained below, @code{BZ2_bzRead} will decompress the
  1012. @code{nUnused} bytes starting at @code{unused}, before starting to read
  1013. from the file @code{f}.  At most @code{BZ_MAX_UNUSED} bytes may be
  1014. supplied like this.  If this facility is not required, you should pass
  1015. @code{NULL} and @code{0} for @code{unused} and n@code{Unused}
  1016. respectively.
  1017. For the meaning of parameters @code{small} and @code{verbosity},
  1018. see @code{BZ2_bzDecompressInit}.
  1019. The amount of memory needed to decompress a file cannot be determined
  1020. until the file's header has been read.  So it is possible that
  1021. @code{BZ2_bzReadOpen} returns @code{BZ_OK} but a subsequent call of
  1022. @code{BZ2_bzRead} will return @code{BZ_MEM_ERROR}.
  1023. Possible assignments to @code{bzerror}:
  1024. @display
  1025.       @code{BZ_CONFIG_ERROR}
  1026.          if the library has been mis-compiled
  1027.       @code{BZ_PARAM_ERROR}
  1028.          if @code{f} is @code{NULL} 
  1029.          or @code{small} is neither @code{0} nor @code{1}                 
  1030.          or @code{(unused == NULL && nUnused != 0)}
  1031.          or @code{(unused != NULL && !(0 <= nUnused <= BZ_MAX_UNUSED))}
  1032.       @code{BZ_IO_ERROR}    
  1033.          if @code{ferror(f)} is nonzero
  1034.       @code{BZ_MEM_ERROR}   
  1035.          if insufficient memory is available
  1036.       @code{BZ_OK}
  1037.          otherwise.
  1038. @end display
  1039. Possible return values:
  1040. @display
  1041.       Pointer to an abstract @code{BZFILE}        
  1042.          if @code{bzerror} is @code{BZ_OK}   
  1043.       @code{NULL}
  1044.          otherwise
  1045. @end display
  1046. Allowable next actions:
  1047. @display
  1048.       @code{BZ2_bzRead}
  1049.          if @code{bzerror} is @code{BZ_OK}   
  1050.       @code{BZ2_bzClose} 
  1051.          otherwise
  1052. @end display
  1053. @subsection @code{BZ2_bzRead}
  1054. @example
  1055.    int BZ2_bzRead ( int *bzerror, BZFILE *b, void *buf, int len );
  1056. @end example
  1057. Reads up to @code{len} (uncompressed) bytes from the compressed file 
  1058. @code{b} into
  1059. the buffer @code{buf}.  If the read was successful, 
  1060. @code{bzerror} is set to @code{BZ_OK}
  1061. and the number of bytes read is returned.  If the logical end-of-stream
  1062. was detected, @code{bzerror} will be set to @code{BZ_STREAM_END}, 
  1063. and the number
  1064. of bytes read is returned.  All other @code{bzerror} values denote an error.
  1065. @code{BZ2_bzRead} will supply @code{len} bytes,
  1066. unless the logical stream end is detected
  1067. or an error occurs.  Because of this, it is possible to detect the 
  1068. stream end by observing when the number of bytes returned is 
  1069. less than the number
  1070. requested.  Nevertheless, this is regarded as inadvisable; you should
  1071. instead check @code{bzerror} after every call and watch out for
  1072. @code{BZ_STREAM_END}.
  1073. Internally, @code{BZ2_bzRead} copies data from the compressed file in chunks
  1074. of size @code{BZ_MAX_UNUSED} bytes
  1075. before decompressing it.  If the file contains more bytes than strictly
  1076. needed to reach the logical end-of-stream, @code{BZ2_bzRead} will almost certainly
  1077. read some of the trailing data before signalling @code{BZ_SEQUENCE_END}.
  1078. To collect the read but unused data once @code{BZ_SEQUENCE_END} has 
  1079. appeared, call @code{BZ2_bzReadGetUnused} immediately before @code{BZ2_bzReadClose}.
  1080. Possible assignments to @code{bzerror}:
  1081. @display
  1082.       @code{BZ_PARAM_ERROR}
  1083.          if @code{b} is @code{NULL} or @code{buf} is @code{NULL} or @code{len < 0}
  1084.       @code{BZ_SEQUENCE_ERROR} 
  1085.          if @code{b} was opened with @code{BZ2_bzWriteOpen}
  1086.       @code{BZ_IO_ERROR} 
  1087.          if there is an error reading from the compressed file
  1088.       @code{BZ_UNEXPECTED_EOF} 
  1089.          if the compressed file ended before the logical end-of-stream was detected
  1090.       @code{BZ_DATA_ERROR} 
  1091.          if a data integrity error was detected in the compressed stream
  1092.       @code{BZ_DATA_ERROR_MAGIC}
  1093.          if the stream does not begin with the requisite header bytes (ie, is not 
  1094.          a @code{bzip2} data file).  This is really a special case of @code{BZ_DATA_ERROR}.
  1095.       @code{BZ_MEM_ERROR} 
  1096.          if insufficient memory was available
  1097.       @code{BZ_STREAM_END} 
  1098.          if the logical end of stream was detected.
  1099.       @code{BZ_OK}
  1100.          otherwise.
  1101. @end display
  1102. Possible return values:
  1103. @display
  1104.       number of bytes read
  1105.          if @code{bzerror} is @code{BZ_OK} or @code{BZ_STREAM_END}
  1106.       undefined
  1107.          otherwise
  1108. @end display
  1109. Allowable next actions:
  1110. @display
  1111.       collect data from @code{buf}, then @code{BZ2_bzRead} or @code{BZ2_bzReadClose}
  1112.          if @code{bzerror} is @code{BZ_OK} 
  1113.       collect data from @code{buf}, then @code{BZ2_bzReadClose} or @code{BZ2_bzReadGetUnused} 
  1114.          if @code{bzerror} is @code{BZ_SEQUENCE_END}   
  1115.       @code{BZ2_bzReadClose} 
  1116.          otherwise
  1117. @end display
  1118. @subsection @code{BZ2_bzReadGetUnused}
  1119. @example
  1120.    void BZ2_bzReadGetUnused ( int* bzerror, BZFILE *b, 
  1121.                               void** unused, int* nUnused );
  1122. @end example
  1123. Returns data which was read from the compressed file but was not needed
  1124. to get to the logical end-of-stream.  @code{*unused} is set to the address
  1125. of the data, and @code{*nUnused} to the number of bytes.  @code{*nUnused} will
  1126. be set to a value between @code{0} and @code{BZ_MAX_UNUSED} inclusive.
  1127. This function may only be called once @code{BZ2_bzRead} has signalled 
  1128. @code{BZ_STREAM_END} but before @code{BZ2_bzReadClose}.
  1129. Possible assignments to @code{bzerror}:
  1130. @display
  1131.       @code{BZ_PARAM_ERROR} 
  1132.          if @code{b} is @code{NULL} 
  1133.          or @code{unused} is @code{NULL} or @code{nUnused} is @code{NULL}
  1134.       @code{BZ_SEQUENCE_ERROR} 
  1135.          if @code{BZ_STREAM_END} has not been signalled
  1136.          or if @code{b} was opened with @code{BZ2_bzWriteOpen}
  1137.      @code{BZ_OK}
  1138.          otherwise
  1139. @end display
  1140. Allowable next actions:
  1141. @display 
  1142.       @code{BZ2_bzReadClose}
  1143. @end display
  1144. @subsection @code{BZ2_bzReadClose}
  1145. @example
  1146.    void BZ2_bzReadClose ( int *bzerror, BZFILE *b );
  1147. @end example
  1148. Releases all memory pertaining to the compressed file @code{b}.  
  1149. @code{BZ2_bzReadClose} does not call @code{fclose} on the underlying file
  1150. handle, so you should do that yourself if appropriate.
  1151. @code{BZ2_bzReadClose} should be called to clean up after all error
  1152. situations.
  1153. Possible assignments to @code{bzerror}:
  1154. @display
  1155.       @code{BZ_SEQUENCE_ERROR} 
  1156.          if @code{b} was opened with @code{BZ2_bzOpenWrite} 
  1157.       @code{BZ_OK} 
  1158.          otherwise
  1159. @end display
  1160. Allowable next actions:
  1161. @display
  1162.       none
  1163. @end display
  1164. @subsection @code{BZ2_bzWriteOpen}
  1165. @example
  1166.    BZFILE *BZ2_bzWriteOpen ( int *bzerror, FILE *f, 
  1167.                              int blockSize100k, int verbosity,
  1168.                              int workFactor );
  1169. @end example
  1170. Prepare to write compressed data to file handle @code{f}.  
  1171. @code{f} should refer to
  1172. a file which has been opened for writing, and for which the error
  1173. indicator (@code{ferror(f)})is not set.  
  1174. For the meaning of parameters @code{blockSize100k},
  1175. @code{verbosity} and @code{workFactor}, see
  1176. @* @code{BZ2_bzCompressInit}.
  1177. All required memory is allocated at this stage, so if the call
  1178. completes successfully, @code{BZ_MEM_ERROR} cannot be signalled by a
  1179. subsequent call to @code{BZ2_bzWrite}.
  1180. Possible assignments to @code{bzerror}:
  1181. @display 
  1182.       @code{BZ_CONFIG_ERROR}
  1183.          if the library has been mis-compiled
  1184.       @code{BZ_PARAM_ERROR} 
  1185.          if @code{f} is @code{NULL} 
  1186.          or @code{blockSize100k < 1} or @code{blockSize100k > 9}
  1187.       @code{BZ_IO_ERROR} 
  1188.          if @code{ferror(f)} is nonzero
  1189.       @code{BZ_MEM_ERROR} 
  1190.          if insufficient memory is available
  1191.       @code{BZ_OK} 
  1192.          otherwise
  1193. @end display
  1194. Possible return values:
  1195. @display
  1196.       Pointer to an abstract @code{BZFILE}  
  1197.          if @code{bzerror} is @code{BZ_OK}   
  1198.       @code{NULL} 
  1199.          otherwise
  1200. @end display
  1201. Allowable next actions:
  1202. @display
  1203.       @code{BZ2_bzWrite} 
  1204.          if @code{bzerror} is @code{BZ_OK} 
  1205.          (you could go directly to @code{BZ2_bzWriteClose}, but this would be pretty pointless)
  1206.       @code{BZ2_bzWriteClose} 
  1207.          otherwise
  1208. @end display
  1209. @subsection @code{BZ2_bzWrite}
  1210. @example
  1211.    void BZ2_bzWrite ( int *bzerror, BZFILE *b, void *buf, int len );
  1212. @end example
  1213. Absorbs @code{len} bytes from the buffer @code{buf}, eventually to be
  1214. compressed and written to the file.
  1215. Possible assignments to @code{bzerror}:
  1216. @display
  1217.       @code{BZ_PARAM_ERROR} 
  1218.          if @code{b} is @code{NULL} or @code{buf} is @code{NULL} or @code{len < 0}
  1219.       @code{BZ_SEQUENCE_ERROR} 
  1220.          if b was opened with @code{BZ2_bzReadOpen}
  1221.       @code{BZ_IO_ERROR} 
  1222.          if there is an error writing the compressed file.
  1223.       @code{BZ_OK} 
  1224.          otherwise
  1225. @end display
  1226. @subsection @code{BZ2_bzWriteClose}
  1227. @example
  1228.    void BZ2_bzWriteClose ( int *bzerror, BZFILE* f,
  1229.                            int abandon,
  1230.                            unsigned int* nbytes_in,
  1231.                            unsigned int* nbytes_out );
  1232.    void BZ2_bzWriteClose64 ( int *bzerror, BZFILE* f,
  1233.                              int abandon,
  1234.                              unsigned int* nbytes_in_lo32,
  1235.                              unsigned int* nbytes_in_hi32,
  1236.                              unsigned int* nbytes_out_lo32,
  1237.                              unsigned int* nbytes_out_hi32 );
  1238. @end example
  1239. Compresses and flushes to the compressed file all data so far supplied
  1240. by @code{BZ2_bzWrite}.  The logical end-of-stream markers are also written, so
  1241. subsequent calls to @code{BZ2_bzWrite} are illegal.  All memory associated 
  1242. with the compressed file @code{b} is released.  
  1243. @code{fflush} is called on the
  1244. compressed file, but it is not @code{fclose}'d.
  1245. If @code{BZ2_bzWriteClose} is called to clean up after an error, the only
  1246. action is to release the memory.  The library records the error codes
  1247. issued by previous calls, so this situation will be detected
  1248. automatically.  There is no attempt to complete the compression
  1249. operation, nor to @code{fflush} the compressed file.  You can force this
  1250. behaviour to happen even in the case of no error, by passing a nonzero
  1251. value to @code{abandon}.
  1252. If @code{nbytes_in} is non-null, @code{*nbytes_in} will be set to be the
  1253. total volume of uncompressed data handled.  Similarly, @code{nbytes_out}
  1254. will be set to the total volume of compressed data written.  For 
  1255. compatibility with older versions of the library, @code{BZ2_bzWriteClose}
  1256. only yields the lower 32 bits of these counts.  Use
  1257. @code{BZ2_bzWriteClose64} if you want the full 64 bit counts.  These
  1258. two functions are otherwise absolutely identical.
  1259. Possible assignments to @code{bzerror}:
  1260. @display
  1261.       @code{BZ_SEQUENCE_ERROR} 
  1262.          if @code{b} was opened with @code{BZ2_bzReadOpen}
  1263.       @code{BZ_IO_ERROR} 
  1264.          if there is an error writing the compressed file
  1265.       @code{BZ_OK} 
  1266.          otherwise
  1267. @end display
  1268. @subsection Handling embedded compressed data streams
  1269. The high-level library facilitates use of
  1270. @code{bzip2} data streams which form some part of a surrounding, larger
  1271. data stream.
  1272. @itemize @bullet
  1273. @item For writing, the library takes an open file handle, writes
  1274. compressed data to it, @code{fflush}es it but does not @code{fclose} it.
  1275. The calling application can write its own data before and after the
  1276. compressed data stream, using that same file handle.
  1277. @item Reading is more complex, and the facilities are not as general
  1278. as they could be since generality is hard to reconcile with efficiency.
  1279. @code{BZ2_bzRead} reads from the compressed file in blocks of size
  1280. @code{BZ_MAX_UNUSED} bytes, and in doing so probably will overshoot
  1281. the logical end of compressed stream.
  1282. To recover this data once decompression has
  1283. ended, call @code{BZ2_bzReadGetUnused} after the last call of @code{BZ2_bzRead}
  1284. (the one returning @code{BZ_STREAM_END}) but before calling
  1285. @code{BZ2_bzReadClose}.
  1286. @end itemize
  1287. This mechanism makes it easy to decompress multiple @code{bzip2}
  1288. streams placed end-to-end.  As the end of one stream, when @code{BZ2_bzRead}
  1289. returns @code{BZ_STREAM_END}, call @code{BZ2_bzReadGetUnused} to collect the
  1290. unused data (copy it into your own buffer somewhere).  
  1291. That data forms the start of the next compressed stream.
  1292. To start uncompressing that next stream, call @code{BZ2_bzReadOpen} again,
  1293. feeding in the unused data via the @code{unused}/@code{nUnused}
  1294. parameters.
  1295. Keep doing this until @code{BZ_STREAM_END} return coincides with the
  1296. physical end of file (@code{feof(f)}).  In this situation
  1297. @code{BZ2_bzReadGetUnused}
  1298. will of course return no data.
  1299. This should give some feel for how the high-level interface can be used.
  1300. If you require extra flexibility, you'll have to bite the bullet and get
  1301. to grips with the low-level interface.
  1302. @subsection Standard file-reading/writing code
  1303. Here's how you'd write data to a compressed file:
  1304. @example @code
  1305. FILE*   f;
  1306. BZFILE* b;
  1307. int     nBuf;
  1308. char    buf[ /* whatever size you like */ ];
  1309. int     bzerror;
  1310. int     nWritten;
  1311. f = fopen ( "myfile.bz2", "w" );
  1312. if (!f) @{
  1313.    /* handle error */
  1314. @}
  1315. b = BZ2_bzWriteOpen ( &bzerror, f, 9 );
  1316. if (bzerror != BZ_OK) @{
  1317.    BZ2_bzWriteClose ( b );
  1318.    /* handle error */
  1319. @}
  1320. while ( /* condition */ ) @{
  1321.    /* get data to write into buf, and set nBuf appropriately */
  1322.    nWritten = BZ2_bzWrite ( &bzerror, b, buf, nBuf );
  1323.    if (bzerror == BZ_IO_ERROR) @{ 
  1324.       BZ2_bzWriteClose ( &bzerror, b );
  1325.       /* handle error */
  1326.    @}
  1327. @}
  1328. BZ2_bzWriteClose ( &bzerror, b );
  1329. if (bzerror == BZ_IO_ERROR) @{
  1330.    /* handle error */
  1331. @}
  1332. @end example
  1333. And to read from a compressed file:
  1334. @example
  1335. FILE*   f;
  1336. BZFILE* b;
  1337. int     nBuf;
  1338. char    buf[ /* whatever size you like */ ];
  1339. int     bzerror;
  1340. int     nWritten;
  1341. f = fopen ( "myfile.bz2", "r" );
  1342. if (!f) @{
  1343.    /* handle error */
  1344. @}
  1345. b = BZ2_bzReadOpen ( &bzerror, f, 0, NULL, 0 );
  1346. if (bzerror != BZ_OK) @{
  1347.    BZ2_bzReadClose ( &bzerror, b );
  1348.    /* handle error */
  1349. @}
  1350. bzerror = BZ_OK;
  1351. while (bzerror == BZ_OK && /* arbitrary other conditions */) @{
  1352.    nBuf = BZ2_bzRead ( &bzerror, b, buf, /* size of buf */ );
  1353.    if (bzerror == BZ_OK) @{
  1354.       /* do something with buf[0 .. nBuf-1] */
  1355.    @}
  1356. @}
  1357. if (bzerror != BZ_STREAM_END) @{
  1358.    BZ2_bzReadClose ( &bzerror, b );
  1359.    /* handle error */
  1360. @} else @{
  1361.    BZ2_bzReadClose ( &bzerror );
  1362. @}
  1363. @end example
  1364. @section Utility functions
  1365. @subsection @code{BZ2_bzBuffToBuffCompress}
  1366. @example
  1367.    int BZ2_bzBuffToBuffCompress( char*         dest,
  1368.                                  unsigned int* destLen,
  1369.                                  char*         source,
  1370.                                  unsigned int  sourceLen,
  1371.                                  int           blockSize100k,
  1372.                                  int           verbosity,
  1373.                                  int           workFactor );
  1374. @end example
  1375. Attempts to compress the data in @code{source[0 .. sourceLen-1]}
  1376. into the destination buffer, @code{dest[0 .. *destLen-1]}.
  1377. If the destination buffer is big enough, @code{*destLen} is
  1378. set to the size of the compressed data, and @code{BZ_OK} is
  1379. returned.  If the compressed data won't fit, @code{*destLen}
  1380. is unchanged, and @code{BZ_OUTBUFF_FULL} is returned.
  1381. Compression in this manner is a one-shot event, done with a single call
  1382. to this function.  The resulting compressed data is a complete
  1383. @code{bzip2} format data stream.  There is no mechanism for making
  1384. additional calls to provide extra input data.  If you want that kind of
  1385. mechanism, use the low-level interface.
  1386. For the meaning of parameters @code{blockSize100k}, @code{verbosity}
  1387. and @code{workFactor}, @* see @code{BZ2_bzCompressInit}.
  1388. To guarantee that the compressed data will fit in its buffer, allocate
  1389. an output buffer of size 1% larger than the uncompressed data, plus
  1390. six hundred extra bytes.
  1391. @code{BZ2_bzBuffToBuffDecompress} will not write data at or
  1392. beyond @code{dest[*destLen]}, even in case of buffer overflow.
  1393. Possible return values:
  1394. @display
  1395.       @code{BZ_CONFIG_ERROR}
  1396.          if the library has been mis-compiled
  1397.       @code{BZ_PARAM_ERROR} 
  1398.          if @code{dest} is @code{NULL} or @code{destLen} is @code{NULL}
  1399.          or @code{blockSize100k < 1} or @code{blockSize100k > 9}
  1400.          or @code{verbosity < 0} or @code{verbosity > 4} 
  1401.          or @code{workFactor < 0} or @code{workFactor > 250}
  1402.       @code{BZ_MEM_ERROR}
  1403.          if insufficient memory is available 
  1404.       @code{BZ_OUTBUFF_FULL}
  1405.          if the size of the compressed data exceeds @code{*destLen}
  1406.       @code{BZ_OK} 
  1407.          otherwise
  1408. @end display
  1409. @subsection @code{BZ2_bzBuffToBuffDecompress}
  1410. @example
  1411.    int BZ2_bzBuffToBuffDecompress ( char*         dest,
  1412.                                     unsigned int* destLen,
  1413.                                     char*         source,
  1414.                                     unsigned int  sourceLen,
  1415.                                     int           small,
  1416.                                     int           verbosity );
  1417. @end example
  1418. Attempts to decompress the data in @code{source[0 .. sourceLen-1]}
  1419. into the destination buffer, @code{dest[0 .. *destLen-1]}.
  1420. If the destination buffer is big enough, @code{*destLen} is
  1421. set to the size of the uncompressed data, and @code{BZ_OK} is
  1422. returned.  If the compressed data won't fit, @code{*destLen}
  1423. is unchanged, and @code{BZ_OUTBUFF_FULL} is returned.
  1424. @code{source} is assumed to hold a complete @code{bzip2} format
  1425. data stream.  @* @code{BZ2_bzBuffToBuffDecompress} tries to decompress
  1426. the entirety of the stream into the output buffer.
  1427. For the meaning of parameters @code{small} and @code{verbosity},
  1428. see @code{BZ2_bzDecompressInit}.
  1429. Because the compression ratio of the compressed data cannot be known in
  1430. advance, there is no easy way to guarantee that the output buffer will
  1431. be big enough.  You may of course make arrangements in your code to
  1432. record the size of the uncompressed data, but such a mechanism is beyond
  1433. the scope of this library.
  1434. @code{BZ2_bzBuffToBuffDecompress} will not write data at or
  1435. beyond @code{dest[*destLen]}, even in case of buffer overflow.
  1436. Possible return values:
  1437. @display
  1438.       @code{BZ_CONFIG_ERROR}
  1439.          if the library has been mis-compiled
  1440.       @code{BZ_PARAM_ERROR} 
  1441.          if @code{dest} is @code{NULL} or @code{destLen} is @code{NULL}
  1442.          or @code{small != 0 && small != 1}
  1443.          or @code{verbosity < 0} or @code{verbosity > 4} 
  1444.       @code{BZ_MEM_ERROR}
  1445.          if insufficient memory is available 
  1446.       @code{BZ_OUTBUFF_FULL}
  1447.          if the size of the compressed data exceeds @code{*destLen}
  1448.       @code{BZ_DATA_ERROR}
  1449.          if a data integrity error was detected in the compressed data
  1450.       @code{BZ_DATA_ERROR_MAGIC}
  1451.          if the compressed data doesn't begin with the right magic bytes
  1452.       @code{BZ_UNEXPECTED_EOF}
  1453.          if the compressed data ends unexpectedly
  1454.       @code{BZ_OK} 
  1455.          otherwise
  1456. @end display
  1457. @section @code{zlib} compatibility functions
  1458. Yoshioka Tsuneo has contributed some functions to
  1459. give better @code{zlib} compatibility.  These functions are
  1460. @code{BZ2_bzopen}, @code{BZ2_bzread}, @code{BZ2_bzwrite}, @code{BZ2_bzflush},
  1461. @code{BZ2_bzclose},
  1462. @code{BZ2_bzerror} and @code{BZ2_bzlibVersion}.
  1463. These functions are not (yet) officially part of
  1464. the library.  If they break, you get to keep all the pieces.
  1465. Nevertheless, I think they work ok.
  1466. @example
  1467. typedef void BZFILE;
  1468. const char * BZ2_bzlibVersion ( void );
  1469. @end example
  1470. Returns a string indicating the library version.
  1471. @example
  1472. BZFILE * BZ2_bzopen  ( const char *path, const char *mode );
  1473. BZFILE * BZ2_bzdopen ( int        fd,    const char *mode );
  1474. @end example
  1475. Opens a @code{.bz2} file for reading or writing, using either its name
  1476. or a pre-existing file descriptor. 
  1477. Analogous to @code{fopen} and @code{fdopen}.
  1478. @example         
  1479. int BZ2_bzread  ( BZFILE* b, void* buf, int len );
  1480. int BZ2_bzwrite ( BZFILE* b, void* buf, int len );
  1481. @end example
  1482. Reads/writes data from/to a previously opened @code{BZFILE}.
  1483. Analogous to @code{fread} and @code{fwrite}.
  1484. @example
  1485. int  BZ2_bzflush ( BZFILE* b );
  1486. void BZ2_bzclose ( BZFILE* b );
  1487. @end example
  1488. Flushes/closes a @code{BZFILE}.  @code{BZ2_bzflush} doesn't actually do
  1489. anything.  Analogous to @code{fflush} and @code{fclose}.
  1490. @example 
  1491. const char * BZ2_bzerror ( BZFILE *b, int *errnum )
  1492. @end example
  1493. Returns a string describing the more recent error status of
  1494. @code{b}, and also sets @code{*errnum} to its numerical value.
  1495. @section Using the library in a @code{stdio}-free environment
  1496. @subsection Getting rid of @code{stdio}
  1497. In a deeply embedded application, you might want to use just
  1498. the memory-to-memory functions.  You can do this conveniently
  1499. by compiling the library with preprocessor symbol @code{BZ_NO_STDIO}
  1500. defined.  Doing this gives you a library containing only the following
  1501. eight functions:
  1502. @code{BZ2_bzCompressInit}, @code{BZ2_bzCompress}, @code{BZ2_bzCompressEnd} @*
  1503. @code{BZ2_bzDecompressInit}, @code{BZ2_bzDecompress}, @code{BZ2_bzDecompressEnd} @*
  1504. @code{BZ2_bzBuffToBuffCompress}, @code{BZ2_bzBuffToBuffDecompress}
  1505. When compiled like this, all functions will ignore @code{verbosity}
  1506. settings.
  1507. @subsection Critical error handling
  1508. @code{libbzip2} contains a number of internal assertion checks which
  1509. should, needless to say, never be activated.  Nevertheless, if an
  1510. assertion should fail, behaviour depends on whether or not the library
  1511. was compiled with @code{BZ_NO_STDIO} set.
  1512. For a normal compile, an assertion failure yields the message
  1513. @example
  1514.    bzip2/libbzip2: internal error number N.
  1515.    This is a bug in bzip2/libbzip2, 1.0.2, 30-Dec-2001.
  1516.    Please report it to me at: jseward@@acm.org.  If this happened
  1517.    when you were using some program which uses libbzip2 as a
  1518.    component, you should also report this bug to the author(s)
  1519.    of that program.  Please make an effort to report this bug;
  1520.    timely and accurate bug reports eventually lead to higher
  1521.    quality software.  Thanks.  Julian Seward, 30 December 2001.
  1522. @end example
  1523. where @code{N} is some error code number.  If @code{N == 1007}, it also
  1524. prints some extra text advising the reader that unreliable memory is
  1525. often associated with internal error 1007.  (This is a
  1526. frequently-observed-phenomenon with versions 1.0.0/1.0.1).
  1527. @code{exit(3)} is then called.
  1528. For a @code{stdio}-free library, assertion failures result
  1529. in a call to a function declared as:
  1530. @example
  1531.    extern void bz_internal_error ( int errcode );
  1532. @end example
  1533. The relevant code is passed as a parameter.  You should supply
  1534. such a function.
  1535. In either case, once an assertion failure has occurred, any 
  1536. @code{bz_stream} records involved can be regarded as invalid.
  1537. You should not attempt to resume normal operation with them.
  1538. You may, of course, change critical error handling to suit
  1539. your needs.  As I said above, critical errors indicate bugs
  1540. in the library and should not occur.  All "normal" error
  1541. situations are indicated via error return codes from functions,
  1542. and can be recovered from.
  1543. @section Making a Windows DLL
  1544. Everything related to Windows has been contributed by Yoshioka Tsuneo
  1545. @* (@code{QWF00133@@niftyserve.or.jp} /
  1546. @code{tsuneo-y@@is.aist-nara.ac.jp}), so you should send your queries to
  1547. him (but perhaps Cc: me, @code{jseward@@acm.org}).
  1548. My vague understanding of what to do is: using Visual C++ 5.0,
  1549. open the project file @code{libbz2.dsp}, and build.  That's all.
  1550. If you can't
  1551. open the project file for some reason, make a new one, naming these files:
  1552. @code{blocksort.c}, @code{bzlib.c}, @code{compress.c}, 
  1553. @code{crctable.c}, @code{decompress.c}, @code{huffman.c}, @*
  1554. @code{randtable.c} and @code{libbz2.def}.  You will also need
  1555. to name the header files @code{bzlib.h} and @code{bzlib_private.h}.
  1556. If you don't use VC++, you may need to define the proprocessor symbol
  1557. @code{_WIN32}. 
  1558. Finally, @code{dlltest.c} is a sample program using the DLL.  It has a
  1559. project file, @code{dlltest.dsp}.
  1560. If you just want a makefile for Visual C, have a look at
  1561. @code{makefile.msc}.
  1562. Be aware that if you compile @code{bzip2} itself on Win32, you must set
  1563. @code{BZ_UNIX} to 0 and @code{BZ_LCCWIN32} to 1, in the file
  1564. @code{bzip2.c}, before compiling.  Otherwise the resulting binary won't
  1565. work correctly.
  1566. I haven't tried any of this stuff myself, but it all looks plausible.
  1567. @chapter Miscellanea
  1568. These are just some random thoughts of mine.  Your mileage may
  1569. vary.
  1570. @section Limitations of the compressed file format
  1571. @code{bzip2-1.0}, @code{0.9.5} and @code{0.9.0}
  1572. use exactly the same file format as the previous
  1573. version, @code{bzip2-0.1}.  This decision was made in the interests of
  1574. stability.  Creating yet another incompatible compressed file format
  1575. would create further confusion and disruption for users.
  1576. Nevertheless, this is not a painless decision.  Development
  1577. work since the release of @code{bzip2-0.1} in August 1997
  1578. has shown complexities in the file format which slow down
  1579. decompression and, in retrospect, are unnecessary.  These are:
  1580. @itemize @bullet
  1581. @item The run-length encoder, which is the first of the 
  1582.       compression transformations, is entirely irrelevant.
  1583.       The original purpose was to protect the sorting algorithm
  1584.       from the very worst case input: a string of repeated
  1585.       symbols.  But algorithm steps Q6a and Q6b in the original
  1586.       Burrows-Wheeler technical report (SRC-124) show how
  1587.       repeats can be handled without difficulty in block
  1588.       sorting.
  1589. @item The randomisation mechanism doesn't really need to be
  1590.       there.  Udi Manber and Gene Myers published a suffix
  1591.       array construction algorithm a few years back, which
  1592.       can be employed to sort any block, no matter how 
  1593.       repetitive, in O(N log N) time.  Subsequent work by
  1594.       Kunihiko Sadakane has produced a derivative O(N (log N)^2) 
  1595.       algorithm which usually outperforms the Manber-Myers
  1596.       algorithm.
  1597.       I could have changed to Sadakane's algorithm, but I find
  1598.       it to be slower than @code{bzip2}'s existing algorithm for
  1599.       most inputs, and the randomisation mechanism protects
  1600.       adequately against bad cases.  I didn't think it was
  1601.       a good tradeoff to make.  Partly this is due to the fact
  1602.       that I was not flooded with email complaints about
  1603.       @code{bzip2-0.1}'s performance on repetitive data, so
  1604.       perhaps it isn't a problem for real inputs.
  1605.       Probably the best long-term solution,
  1606.       and the one I have incorporated into 0.9.5 and above,
  1607.       is to use the existing sorting
  1608.       algorithm initially, and fall back to a O(N (log N)^2)
  1609.       algorithm if the standard algorithm gets into difficulties.
  1610. @item The compressed file format was never designed to be
  1611.       handled by a library, and I have had to jump though
  1612.       some hoops to produce an efficient implementation of
  1613.       decompression.  It's a bit hairy.  Try passing
  1614.       @code{decompress.c} through the C preprocessor 
  1615.       and you'll see what I mean.  Much of this complexity
  1616.       could have been avoided if the compressed size of
  1617.       each block of data was recorded in the data stream.
  1618. @item An Adler-32 checksum, rather than a CRC32 checksum,
  1619.       would be faster to compute.
  1620. @end itemize
  1621. It would be fair to say that the @code{bzip2} format was frozen
  1622. before I properly and fully understood the performance
  1623. consequences of doing so.
  1624. Improvements which I was able to incorporate into
  1625. 0.9.0, despite using the same file format, are:
  1626. @itemize @bullet
  1627. @item Single array implementation of the inverse BWT.  This
  1628.       significantly speeds up decompression, presumably
  1629.       because it reduces the number of cache misses.
  1630. @item Faster inverse MTF transform for large MTF values.  The
  1631.       new implementation is based on the notion of sliding blocks
  1632.       of values.
  1633. @item @code{bzip2-0.9.0} now reads and writes files with @code{fread}
  1634.       and @code{fwrite}; version 0.1 used @code{putc} and @code{getc}.
  1635.       Duh!  Well, you live and learn.
  1636. @end itemize
  1637. Further ahead, it would be nice 
  1638. to be able to do random access into files.  This will 
  1639. require some careful design of compressed file formats.
  1640. @section Portability issues
  1641. After some consideration, I have decided not to use
  1642. GNU @code{autoconf} to configure 0.9.5 or 1.0.
  1643. @code{autoconf}, admirable and wonderful though it is, 
  1644. mainly assists with portability problems between Unix-like
  1645. platforms.  But @code{bzip2} doesn't have much in the way
  1646. of portability problems on Unix; most of the difficulties appear
  1647. when porting to the Mac, or to Microsoft's operating systems.
  1648. @code{autoconf} doesn't help in those cases, and brings in a 
  1649. whole load of new complexity.
  1650. Most people should be able to compile the library and program
  1651. under Unix straight out-of-the-box, so to speak, especially 
  1652. if you have a version of GNU C available.
  1653. There are a couple of @code{__inline__} directives in the code.  GNU C
  1654. (@code{gcc}) should be able to handle them.  If you're not using
  1655. GNU C, your C compiler shouldn't see them at all.
  1656. If your compiler does, for some reason, see them and doesn't
  1657. like them, just @code{#define} @code{__inline__} to be @code{/* */}.  One
  1658. easy way to do this is to compile with the flag @code{-D__inline__=}, 
  1659. which should be understood by most Unix compilers.
  1660. If you still have difficulties, try compiling with the macro
  1661. @code{BZ_STRICT_ANSI} defined.  This should enable you to build the
  1662. library in a strictly ANSI compliant environment.  Building the program
  1663. itself like this is dangerous and not supported, since you remove
  1664. @code{bzip2}'s checks against compressing directories, symbolic links,
  1665. devices, and other not-really-a-file entities.  This could cause
  1666. filesystem corruption!
  1667. One other thing: if you create a @code{bzip2} binary for public
  1668. distribution, please try and link it statically (@code{gcc -s}).  This
  1669. avoids all sorts of library-version issues that others may encounter
  1670. later on.
  1671. If you build @code{bzip2} on Win32, you must set @code{BZ_UNIX} to 0 and
  1672. @code{BZ_LCCWIN32} to 1, in the file @code{bzip2.c}, before compiling.
  1673. Otherwise the resulting binary won't work correctly.
  1674. @section Reporting bugs
  1675. I tried pretty hard to make sure @code{bzip2} is
  1676. bug free, both by design and by testing.  Hopefully
  1677. you'll never need to read this section for real.
  1678. Nevertheless, if @code{bzip2} dies with a segmentation
  1679. fault, a bus error or an internal assertion failure, it
  1680. will ask you to email me a bug report.  Experience with
  1681. version 0.1 shows that almost all these problems can
  1682. be traced to either compiler bugs or hardware problems.
  1683. @itemize @bullet
  1684. @item
  1685. Recompile the program with no optimisation, and see if it
  1686. works.  And/or try a different compiler.
  1687. I heard all sorts of stories about various flavours
  1688. of GNU C (and other compilers) generating bad code for
  1689. @code{bzip2}, and I've run across two such examples myself.
  1690. 2.7.X versions of GNU C are known to generate bad code from
  1691. time to time, at high optimisation levels.  
  1692. If you get problems, try using the flags
  1693. @code{-O2} @code{-fomit-frame-pointer} @code{-fno-strength-reduce}.
  1694. You should specifically @emph{not} use @code{-funroll-loops}.
  1695. You may notice that the Makefile runs six tests as part of
  1696. the build process.  If the program passes all of these, it's
  1697. a pretty good (but not 100%) indication that the compiler has
  1698. done its job correctly.
  1699. @item
  1700. If @code{bzip2} crashes randomly, and the crashes are not
  1701. repeatable, you may have a flaky memory subsystem.  @code{bzip2}
  1702. really hammers your memory hierarchy, and if it's a bit marginal,
  1703. you may get these problems.  Ditto if your disk or I/O subsystem
  1704. is slowly failing.  Yup, this really does happen.
  1705. Try using a different machine of the same type, and see if
  1706. you can repeat the problem.
  1707. @item This isn't really a bug, but ... If @code{bzip2} tells
  1708. you your file is corrupted on decompression, and you
  1709. obtained the file via FTP, there is a possibility that you
  1710. forgot to tell FTP to do a binary mode transfer.  That absolutely
  1711. will cause the file to be non-decompressible.  You'll have to transfer
  1712. it again.
  1713. @end itemize
  1714. If you've incorporated @code{libbzip2} into your own program
  1715. and are getting problems, please, please, please, check that the 
  1716. parameters you are passing in calls to the library, are
  1717. correct, and in accordance with what the documentation says
  1718. is allowable.  I have tried to make the library robust against
  1719. such problems, but I'm sure I haven't succeeded.
  1720. Finally, if the above comments don't help, you'll have to send
  1721. me a bug report.  Now, it's just amazing how many people will 
  1722. send me a bug report saying something like
  1723. @display
  1724.    bzip2 crashed with segmentation fault on my machine
  1725. @end display
  1726. and absolutely nothing else.  Needless to say, a such a report
  1727. is @emph{totally, utterly, completely and comprehensively 100% useless; 
  1728. a waste of your time, my time, and net bandwidth}.
  1729. With no details at all, there's no way I can possibly begin
  1730. to figure out what the problem is.
  1731. The rules of the game are: facts, facts, facts.  Don't omit
  1732. them because "oh, they won't be relevant".  At the bare 
  1733. minimum:
  1734. @display
  1735.    Machine type.  Operating system version.  
  1736.    Exact version of @code{bzip2} (do @code{bzip2 -V}).  
  1737.    Exact version of the compiler used.  
  1738.    Flags passed to the compiler.
  1739. @end display
  1740. However, the most important single thing that will help me is
  1741. the file that you were trying to compress or decompress at the
  1742. time the problem happened.  Without that, my ability to do anything
  1743. more than speculate about the cause, is limited.
  1744. Please remember that I connect to the Internet with a modem, so
  1745. you should contact me before mailing me huge files.
  1746. @section Did you get the right package?
  1747. @code{bzip2} is a resource hog.  It soaks up large amounts of CPU cycles
  1748. and memory.  Also, it gives very large latencies.  In the worst case, you
  1749. can feed many megabytes of uncompressed data into the library before
  1750. getting any compressed output, so this probably rules out applications
  1751. requiring interactive behaviour.
  1752. These aren't faults of my implementation, I hope, but more
  1753. an intrinsic property of the Burrows-Wheeler transform (unfortunately).  
  1754. Maybe this isn't what you want.
  1755. If you want a compressor and/or library which is faster, uses less
  1756. memory but gets pretty good compression, and has minimal latency,
  1757. consider Jean-loup
  1758. Gailly's and Mark Adler's work, @code{zlib-1.1.3} and
  1759. @code{gzip-1.2.4}.  Look for them at
  1760. @code{http://www.zlib.org} and
  1761. @code{http://www.gzip.org} respectively.
  1762. For something faster and lighter still, you might try Markus F X J
  1763. Oberhumer's @code{LZO} real-time compression/decompression library, at
  1764. @* @code{http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html}.
  1765. If you want to use the @code{bzip2} algorithms to compress small blocks
  1766. of data, 64k bytes or smaller, for example on an on-the-fly disk
  1767. compressor, you'd be well advised not to use this library.  Instead,
  1768. I've made a special library tuned for that kind of use.  It's part of
  1769. @code{e2compr-0.40}, an on-the-fly disk compressor for the Linux
  1770. @code{ext2} filesystem.  Look at
  1771. @code{http://www.netspace.net.au/~reiter/e2compr}.
  1772. @section Testing
  1773. A record of the tests I've done.
  1774. First, some data sets:
  1775. @itemize @bullet
  1776. @item B: a directory containing 6001 files, one for every length in the
  1777.       range 0 to 6000 bytes.  The files contain random lowercase
  1778.       letters.  18.7 megabytes.
  1779. @item H: my home directory tree.  Documents, source code, mail files,
  1780.       compressed data.  H contains B, and also a directory of 
  1781.       files designed as boundary cases for the sorting; mostly very
  1782.       repetitive, nasty files.  565 megabytes.
  1783. @item A: directory tree holding various applications built from source:
  1784.       @code{egcs}, @code{gcc-2.8.1}, KDE, GTK, Octave, etc.
  1785.       2200 megabytes.
  1786. @end itemize
  1787. The tests conducted are as follows.  Each test means compressing 
  1788. (a copy of) each file in the data set, decompressing it and
  1789. comparing it against the original.
  1790. First, a bunch of tests with block sizes and internal buffer
  1791. sizes set very small, 
  1792. to detect any problems with the
  1793. blocking and buffering mechanisms.  
  1794. This required modifying the source code so as to try to 
  1795. break it.
  1796. @enumerate
  1797. @item Data set H, with
  1798.       buffer size of 1 byte, and block size of 23 bytes.
  1799. @item Data set B, buffer sizes 1 byte, block size 1 byte.
  1800. @item As (2) but small-mode decompression.
  1801. @item As (2) with block size 2 bytes.
  1802. @item As (2) with block size 3 bytes.
  1803. @item As (2) with block size 4 bytes.
  1804. @item As (2) with block size 5 bytes.
  1805. @item As (2) with block size 6 bytes and small-mode decompression.
  1806. @item H with buffer size of 1 byte, but normal block
  1807.       size (up to 900000 bytes).
  1808. @end enumerate
  1809. Then some tests with unmodified source code.
  1810. @enumerate
  1811. @item H, all settings normal.
  1812. @item As (1), with small-mode decompress.
  1813. @item H, compress with flag @code{-1}.
  1814. @item H, compress with flag @code{-s}, decompress with flag @code{-s}.
  1815. @item Forwards compatibility: H, @code{bzip2-0.1pl2} compressing,
  1816.       @code{bzip2-0.9.5} decompressing, all settings normal.
  1817. @item Backwards compatibility:  H, @code{bzip2-0.9.5} compressing,
  1818.       @code{bzip2-0.1pl2} decompressing, all settings normal.
  1819. @item Bigger tests: A, all settings normal.
  1820. @item As (7), using the fallback (Sadakane-like) sorting algorithm.
  1821. @item As (8), compress with flag @code{-1}, decompress with flag
  1822.       @code{-s}.
  1823. @item H, using the fallback sorting algorithm.
  1824. @item Forwards compatibility: A, @code{bzip2-0.1pl2} compressing,
  1825.       @code{bzip2-0.9.5} decompressing, all settings normal.
  1826. @item Backwards compatibility:  A, @code{bzip2-0.9.5} compressing,
  1827.       @code{bzip2-0.1pl2} decompressing, all settings normal.
  1828. @item Misc test: about 400 megabytes of @code{.tar} files with
  1829.       @code{bzip2} compiled with Checker (a memory access error
  1830.        detector, like Purify).
  1831. @item Misc tests to make sure it builds and runs ok on non-Linux/x86
  1832.       platforms.
  1833. @end enumerate
  1834. These tests were conducted on a 225 MHz IDT WinChip machine, running
  1835. Linux 2.0.36.  They represent nearly a week of continuous computation.
  1836. All tests completed successfully.
  1837. @section Further reading
  1838. @code{bzip2} is not research work, in the sense that it doesn't present
  1839. any new ideas.  Rather, it's an engineering exercise based on existing
  1840. ideas.
  1841. Four documents describe essentially all the ideas behind @code{bzip2}:
  1842. @example
  1843. Michael Burrows and D. J. Wheeler:
  1844.   "A block-sorting lossless data compression algorithm"
  1845.    10th May 1994. 
  1846.    Digital SRC Research Report 124.
  1847.    ftp://ftp.digital.com/pub/DEC/SRC/research-reports/SRC-124.ps.gz
  1848.    If you have trouble finding it, try searching at the
  1849.    New Zealand Digital Library, http://www.nzdl.org.
  1850. Daniel S. Hirschberg and Debra A. LeLewer
  1851.   "Efficient Decoding of Prefix Codes"
  1852.    Communications of the ACM, April 1990, Vol 33, Number 4.
  1853.    You might be able to get an electronic copy of this
  1854.       from the ACM Digital Library.
  1855. David J. Wheeler
  1856.    Program bred3.c and accompanying document bred3.ps.
  1857.    This contains the idea behind the multi-table Huffman
  1858.    coding scheme.
  1859.    ftp://ftp.cl.cam.ac.uk/users/djw3/
  1860. Jon L. Bentley and Robert Sedgewick
  1861.   "Fast Algorithms for Sorting and Searching Strings"
  1862.    Available from Sedgewick's web page,
  1863.    www.cs.princeton.edu/~rs
  1864. @end example
  1865. The following paper gives valuable additional insights into the
  1866. algorithm, but is not immediately the basis of any code
  1867. used in bzip2.
  1868. @example
  1869. Peter Fenwick:
  1870.    Block Sorting Text Compression
  1871.    Proceedings of the 19th Australasian Computer Science Conference,
  1872.      Melbourne, Australia.  Jan 31 - Feb 2, 1996.
  1873.    ftp://ftp.cs.auckland.ac.nz/pub/peter-f/ACSC96paper.ps
  1874. @end example
  1875. Kunihiko Sadakane's sorting algorithm, mentioned above,
  1876. is available from:
  1877. @example
  1878. http://naomi.is.s.u-tokyo.ac.jp/~sada/papers/Sada98b.ps.gz
  1879. @end example
  1880. The Manber-Myers suffix array construction
  1881. algorithm is described in a paper
  1882. available from:
  1883. @example
  1884. http://www.cs.arizona.edu/people/gene/PAPERS/suffix.ps
  1885. @end example
  1886. Finally, the following paper documents some recent investigations
  1887. I made into the performance of sorting algorithms:
  1888. @example
  1889. Julian Seward:
  1890.    On the Performance of BWT Sorting Algorithms
  1891.    Proceedings of the IEEE Data Compression Conference 2000
  1892.      Snowbird, Utah.  28-30 March 2000.
  1893. @end example
  1894. @contents
  1895. @bye