org.apache.commons.compress.compressors.bzip2
public class BZip2InputStream extends InputStream implements BZip2Constants
| Field Summary | |
|---|---|
| int | ch2 |
| int | chPrev |
| int | count |
| int | i2 |
| int | j2 |
| int[][] | m_base |
| boolean | m_blockRandomised |
| int | m_blockSize100k |
| int | m_bsBuff |
| int | m_bsLive |
| int | m_computedBlockCRC |
| int | m_computedCombinedCRC |
| CRC | m_crc |
| int | m_currentChar |
| int | m_currentState |
| InputStream | m_input |
| boolean[] | m_inUse |
| int | m_last |
| int[][] | m_limit |
| char[] | m_ll8 |
| int[] | m_minLens |
| int | m_nInUse |
| int | m_origPtr |
| int[][] | m_perm |
| int | m_rNToGo |
| int | m_rTPos |
| char[] | m_selector |
| char[] | m_selectorMtf |
| char[] | m_seqToUnseq |
| int | m_storedBlockCRC |
| int | m_storedCombinedCRC |
| boolean | m_streamEnd |
| int | m_tPos |
| int[] | m_tt |
| char[] | m_unseqToSeq |
| int[] | m_unzftab |
| static int | NO_RAND_PART_A_STATE |
| static int | NO_RAND_PART_B_STATE |
| static int | NO_RAND_PART_C_STATE |
| static int | RAND_PART_A_STATE |
| static int | RAND_PART_B_STATE |
| static int | RAND_PART_C_STATE |
| static int | START_BLOCK_STATE |
| char | z |
| Constructor Summary | |
|---|---|
| BZip2InputStream(InputStream input)
Initializes ein CBZip2 InputStream with the give
InputStream | |
| Method Summary | |
|---|---|
| static void | badBlockHeader() |
| static void | blockOverrun() |
| void | bsFinishedWithStream() |
| int | bsR(int n) |
| void | bsSetStream(InputStream input) |
| void | buildInUseTable() |
| static void | cadvise() |
| void | close() |
| void | complete() |
| static void | compressedStreamEOF() |
| static void | crcError() |
| void | endBlock() |
| void | getAndMoveToFrontDecode() |
| void | hbCreateDecodeTables(int[] limit, int[] base, int[] perm, char[] length, int minLen, int maxLen, int alphaSize) |
| void | initBlock() |
| void | initialize() |
| void | makeMaps() |
| int | read() |
| int | readInt() |
| char | readUnsignedChar() |
| int | readVariableSizedInt(int numBits) |
| void | recvDecodingTables() |
| void | setDecompressStructureSizes(int newSize100k) |
| void | setupBlock() |
| void | setupNoRandPartA() |
| void | setupNoRandPartB() |
| void | setupNoRandPartC() |
| void | setupRandPartA() |
| void | setupRandPartB() |
| void | setupRandPartC() |
Parameters: input the InputStream to initialize with