com.ning.compress.gzip.GZIPRecycler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compress-lzf Show documentation
Show all versions of compress-lzf Show documentation
Compression codec for LZF encoding for particularly encoding/decoding, with reasonable compression.
Compressor is basic Lempel-Ziv codec, without Huffman (deflate/gzip) or statistical post-encoding.
See "http://oldhome.schmorp.de/marc/liblzf.html" for more on original LZF package.
package com.ning.compress.gzip;
import java.lang.ref.SoftReference;
import java.util.zip.Deflater;
import java.util.zip.Inflater;
/**
* GZIP-codec-specific "extension" to {@link com.ning.compress.BufferRecycler},
* used for recycling expensive objects.
*
* @author Tatu Saloranta ([email protected])
*/
public final class GZIPRecycler
{
final protected static ThreadLocal> _recyclerRef
= new ThreadLocal>();
protected Inflater _inflater;
protected Deflater _deflater;
/**
* Accessor to get thread-local recycler instance
*/
public static GZIPRecycler instance()
{
SoftReference ref = _recyclerRef.get();
GZIPRecycler br = (ref == null) ? null : ref.get();
if (br == null) {
br = new GZIPRecycler();
_recyclerRef.set(new SoftReference(br));
}
return br;
}
/*
///////////////////////////////////////////////////////////////////////
// API
///////////////////////////////////////////////////////////////////////
*/
public Deflater allocDeflater()
{
Deflater d = _deflater;
if (d == null) { // important: true means 'dont add zlib header'; gzip has its own
d = new Deflater(Deflater.DEFAULT_COMPRESSION, true);
} else {
_deflater = null;
}
return d;
}
public void releaseDeflater(Deflater d)
{
if (d != null) {
d.reset();
_deflater = d;
}
}
public Inflater allocInflater()
{
Inflater i = _inflater;
if (i == null) { // important: true means 'dont add zlib header'; gzip has its own
i = new Inflater(true);
} else {
_inflater = null;
}
return i;
}
public void releaseInflater(Inflater i)
{
if (i != null) {
i.reset();
_inflater = i;
}
}
}