@InterfaceAudience.Private public class LzmaCompressor extends Object implements org.apache.hadoop.io.compress.Compressor
| Modifier and Type | Field and Description |
|---|---|
protected static org.tukaani.xz.ArrayCache |
ARRAY_CACHE |
protected int |
bufferSize |
protected long |
bytesRead |
protected long |
bytesWritten |
protected boolean |
finish |
protected boolean |
finished |
protected ByteBuffer |
inBuf |
protected org.tukaani.xz.LZMA2Options |
lzOptions |
protected ByteBuffer |
outBuf |
| Constructor and Description |
|---|
LzmaCompressor(int level,
int bufferSize) |
| Modifier and Type | Method and Description |
|---|---|
int |
compress(byte[] b,
int off,
int len) |
void |
end() |
void |
finish() |
boolean |
finished() |
long |
getBytesRead() |
long |
getBytesWritten() |
(package private) int |
maxCompressedLength(int len) |
boolean |
needsInput() |
void |
reinit(org.apache.hadoop.conf.Configuration conf) |
void |
reset() |
void |
setDictionary(byte[] b,
int off,
int len) |
void |
setInput(byte[] b,
int off,
int len) |
protected static final org.tukaani.xz.ArrayCache ARRAY_CACHE
protected ByteBuffer inBuf
protected ByteBuffer outBuf
protected int bufferSize
protected boolean finish
protected boolean finished
protected long bytesRead
protected long bytesWritten
protected org.tukaani.xz.LZMA2Options lzOptions
LzmaCompressor(int level, int bufferSize)
public int compress(byte[] b, int off, int len) throws IOException
compress in interface org.apache.hadoop.io.compress.CompressorIOExceptionpublic void end()
end in interface org.apache.hadoop.io.compress.Compressorpublic void finish()
finish in interface org.apache.hadoop.io.compress.Compressorpublic boolean finished()
finished in interface org.apache.hadoop.io.compress.Compressorpublic long getBytesRead()
getBytesRead in interface org.apache.hadoop.io.compress.Compressorpublic long getBytesWritten()
getBytesWritten in interface org.apache.hadoop.io.compress.Compressorpublic boolean needsInput()
needsInput in interface org.apache.hadoop.io.compress.Compressorpublic void reinit(org.apache.hadoop.conf.Configuration conf)
reinit in interface org.apache.hadoop.io.compress.Compressorpublic void reset()
reset in interface org.apache.hadoop.io.compress.Compressorpublic void setDictionary(byte[] b, int off, int len)
setDictionary in interface org.apache.hadoop.io.compress.Compressorpublic void setInput(byte[] b, int off, int len)
setInput in interface org.apache.hadoop.io.compress.Compressorint maxCompressedLength(int len)
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.