Class HttpContentCompressor
java.lang.Object
org.jboss.netty.channel.SimpleChannelHandler
org.jboss.netty.handler.codec.http.HttpContentEncoder
org.jboss.netty.handler.codec.http.HttpContentCompressor
- All Implemented Interfaces:
ChannelDownstreamHandler,ChannelHandler,ChannelUpstreamHandler,LifeCycleAwareChannelHandler
Compresses an
HttpMessage and an HttpChunk in gzip or
deflate encoding while respecting the "Accept-Encoding" header.
If there is no matching encoding, no compression is done. For more
information on how this handler modifies the message, please refer to
HttpContentEncoder.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new handler with the default compression level (6), default window size (15) and default memory level (8).HttpContentCompressor(int compressionLevel) Creates a new handler with the specified compression level, default window size (15) and default memory level (8).HttpContentCompressor(int compressionLevel, int windowBits, int memLevel) Creates a new handler with the specified compression level, window size, and memory level. -
Method Summary
Modifier and TypeMethodDescriptionprotected StringgetTargetContentEncoding(String acceptEncoding) Returns the expected content encoding of the encoded content.protected EncoderEmbedder<ChannelBuffer> newContentEncoder(HttpMessage msg, String acceptEncoding) Returns a newEncoderEmbedderthat encodes the HTTP message content.Methods inherited from class org.jboss.netty.handler.codec.http.HttpContentEncoder
afterAdd, afterRemove, beforeAdd, beforeRemove, channelClosed, messageReceived, writeRequestedMethods inherited from class org.jboss.netty.channel.SimpleChannelHandler
bindRequested, channelBound, channelConnected, channelDisconnected, channelInterestChanged, channelOpen, channelUnbound, childChannelClosed, childChannelOpen, closeRequested, connectRequested, disconnectRequested, exceptionCaught, handleDownstream, handleUpstream, setInterestOpsRequested, unbindRequested, writeComplete
-
Constructor Details
-
HttpContentCompressor
public HttpContentCompressor()Creates a new handler with the default compression level (6), default window size (15) and default memory level (8). -
HttpContentCompressor
public HttpContentCompressor(int compressionLevel) Creates a new handler with the specified compression level, default window size (15) and default memory level (8).- Parameters:
compressionLevel-1yields the fastest compression and9yields the best compression.0means no compression. The default compression level is6.
-
HttpContentCompressor
public HttpContentCompressor(int compressionLevel, int windowBits, int memLevel) Creates a new handler with the specified compression level, window size, and memory level.- Parameters:
compressionLevel-1yields the fastest compression and9yields the best compression.0means no compression. The default compression level is6.windowBits- The base two logarithm of the size of the history buffer. The value should be in the range9to15inclusive. Larger values result in better compression at the expense of memory usage. The default value is 15.memLevel- How much memory should be allocated for the internal compression state.1uses minimum memory and9uses maximum memory. Larger values result in better and faster compression at the expense of memory usage. The default value is 8.
-
-
Method Details
-
newContentEncoder
protected EncoderEmbedder<ChannelBuffer> newContentEncoder(HttpMessage msg, String acceptEncoding) throws Exception Description copied from class:HttpContentEncoderReturns a newEncoderEmbedderthat encodes the HTTP message content.- Specified by:
newContentEncoderin classHttpContentEncoder- Parameters:
acceptEncoding- the value of the"Accept-Encoding"header- Returns:
- a new
EncoderEmbedderif there is a supported encoding inacceptEncoding.nullotherwise. - Throws:
Exception
-
getTargetContentEncoding
Description copied from class:HttpContentEncoderReturns the expected content encoding of the encoded content.- Specified by:
getTargetContentEncodingin classHttpContentEncoder- Parameters:
acceptEncoding- the value of the"Accept-Encoding"header- Returns:
- the expected content encoding of the new content
- Throws:
Exception
-