Compressor@DoNotPool public class BuiltInGzipCompressor extends java.lang.Object implements Compressor
Compressor based on the popular gzip compressed file format.
http://www.gzip.org/| Constructor | Description |
|---|---|
BuiltInGzipCompressor(Configuration conf) |
| Modifier and Type | Method | Description |
|---|---|---|
int |
compress(byte[] b,
int off,
int len) |
Fills specified buffer with compressed data.
|
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() |
Return number of uncompressed bytes input so far.
|
long |
getBytesWritten() |
Return 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 BuiltInGzipCompressor(Configuration conf)
public boolean finished()
Compressorfinished in interface Compressortrue if the end of the compressed
data output stream has been reached.public boolean needsInput()
CompressorneedsInput in interface Compressortrue if the input data buffer is empty and
#setInput() should be called in order to provide more input.public int compress(byte[] b,
int off,
int len)
throws java.io.IOException
Compressorcompress in interface Compressorb - Buffer for the compressed dataoff - Start offset of the datalen - Size of the bufferjava.io.IOException - raised on errors performing I/O.public long getBytesRead()
CompressorgetBytesRead in interface Compressorpublic long getBytesWritten()
CompressorgetBytesWritten in interface Compressorpublic void end()
Compressorend in interface Compressorpublic void finish()
Compressorfinish in interface Compressorpublic void reinit(Configuration conf)
Compressorreinit in interface Compressorconf - Configuration from which new setting are fetchedpublic void reset()
Compressorreset in interface Compressorpublic void setDictionary(byte[] b,
int off,
int len)
CompressorsetDictionary in interface Compressorb - Dictionary data bytesoff - Start offsetlen - Lengthpublic void setInput(byte[] b,
int off,
int len)
Compressortrue indicating that more input data is required.setInput in interface Compressorb - Input dataoff - Start offsetlen - LengthCopyright © 2008–2025 Apache Software Foundation. All rights reserved.