public class ZlibCompressor extends Object implements Compressor
Compressor
based on the popular
zlib compression algorithm.
http://www.zlib.net/限定符和类型 | 类和说明 |
---|---|
static class |
ZlibCompressor.CompressionHeader
The type of header for compressed data.
|
static class |
ZlibCompressor.CompressionLevel
The compression level for zlib library.
|
static class |
ZlibCompressor.CompressionStrategy
The compression level for zlib library.
|
构造器和说明 |
---|
ZlibCompressor()
Creates a new compressor with the default compression level.
|
ZlibCompressor(Configuration conf)
Creates a new compressor, taking settings from the configuration.
|
ZlibCompressor(ZlibCompressor.CompressionLevel level,
ZlibCompressor.CompressionStrategy strategy,
ZlibCompressor.CompressionHeader header,
int directBufferSize)
Creates a new compressor using the specified compression level.
|
限定符和类型 | 方法和说明 |
---|---|
int |
compress(byte[] b,
int off,
int len)
Fills specified buffer with compressed data.
|
protected void |
construct(ZlibCompressor.CompressionLevel level,
ZlibCompressor.CompressionStrategy strategy,
ZlibCompressor.CompressionHeader header,
int directBufferSize) |
void |
end()
Closes the compressor and discards any unprocessed input.
|
void |
finish()
When called, indicates that compression should end
with the current contents of the input buffer.
|
boolean |
finished()
Returns true if the end of the compressed
data output stream has been reached.
|
long |
getBytesRead()
Returns the total number of uncompressed bytes input so far.
|
long |
getBytesWritten()
Returns the total number of compressed bytes output so far.
|
boolean |
needsInput()
Returns true if the input data buffer is empty and
#setInput() should be called to provide more input.
|
void |
reinit(Configuration conf)
Prepare the compressor to be used in a new stream with settings defined in
the given Configuration.
|
void |
reset()
Resets compressor so that a new set of input data can be processed.
|
void |
setDictionary(byte[] b,
int off,
int len)
Sets preset dictionary for compression.
|
void |
setInput(byte[] b,
int off,
int len)
Sets input data for compression.
|
public ZlibCompressor()
public ZlibCompressor(Configuration conf)
public ZlibCompressor(ZlibCompressor.CompressionLevel level, ZlibCompressor.CompressionStrategy strategy, ZlibCompressor.CompressionHeader header, int directBufferSize)
level
- Compression level #CompressionLevelstrategy
- Compression strategy #CompressionStrategyheader
- Compression header #CompressionHeaderdirectBufferSize
- Size of the direct buffer to be used.protected final void construct(ZlibCompressor.CompressionLevel level, ZlibCompressor.CompressionStrategy strategy, ZlibCompressor.CompressionHeader header, int directBufferSize)
public void reinit(Configuration conf)
reinit
在接口中 Compressor
conf
- Configuration storing new settingspublic void setInput(byte[] b, int off, int len)
Compressor
true
indicating that more input data is required.setInput
在接口中 Compressor
b
- Input dataoff
- Start offsetlen
- Lengthpublic void setDictionary(byte[] b, int off, int len)
Compressor
setDictionary
在接口中 Compressor
b
- Dictionary data bytesoff
- Start offsetlen
- Lengthpublic boolean needsInput()
Compressor
needsInput
在接口中 Compressor
true
if the input data buffer is empty and
#setInput() should be called in order to provide more input.public void finish()
Compressor
finish
在接口中 Compressor
public boolean finished()
Compressor
finished
在接口中 Compressor
true
if the end of the compressed
data output stream has been reached.public int compress(byte[] b, int off, int len) throws IOException
Compressor
compress
在接口中 Compressor
b
- Buffer for the compressed dataoff
- Start offset of the datalen
- Size of the bufferIOException
public long getBytesWritten()
getBytesWritten
在接口中 Compressor
public long getBytesRead()
getBytesRead
在接口中 Compressor
public void reset()
Compressor
reset
在接口中 Compressor
public void end()
Compressor
end
在接口中 Compressor
Copyright © 2009 The Apache Software Foundation