Class HttpMessageDecoder
java.lang.Object
org.jboss.netty.channel.SimpleChannelUpstreamHandler
org.jboss.netty.handler.codec.frame.FrameDecoder
org.jboss.netty.handler.codec.replay.ReplayingDecoder<HttpMessageDecoder.State>
org.jboss.netty.handler.codec.http.HttpMessageDecoder
- All Implemented Interfaces:
ChannelHandler,ChannelUpstreamHandler,LifeCycleAwareChannelHandler
- Direct Known Subclasses:
HttpRequestDecoder,HttpResponseDecoder,RtspMessageDecoder
Decodes
ChannelBuffers into HttpMessages and
HttpChunks.
Parameters that prevents excessive memory consumption
| Name | Meaning |
|---|---|
maxInitialLineLength |
The maximum length of the initial line
(e.g. "GET / HTTP/1.0" or "HTTP/1.0 200 OK")
If the length of the initial line exceeds this value, a
TooLongFrameException will be raised. |
maxHeaderSize |
The maximum length of all headers. If the sum of the length of each
header exceeds this value, a TooLongFrameException will be raised. |
maxChunkSize |
The maximum length of the content or each chunk. If the content length
(or the length of each chunk) exceeds this value, the content or chunk
will be split into multiple HttpChunks whose length is
maxChunkSize at maximum. |
Chunked Content
If the content of an HTTP message is greater thanmaxChunkSize or
the transfer encoding of the HTTP message is 'chunked', this decoder
generates one HttpMessage instance and its following
HttpChunks per single HTTP message to avoid excessive memory
consumption. For example, the following HTTP message:
GET / HTTP/1.1 Transfer-Encoding: chunked 1a abcdefghijklmnopqrstuvwxyz 10 1234567890abcdef 0 Content-MD5: ... [blank line]triggers
HttpRequestDecoder to generate 4 objects:
- An
HttpRequestwhosechunkedproperty istrue, - The first
HttpChunkwhose content is'abcdefghijklmnopqrstuvwxyz', - The second
HttpChunkwhose content is'1234567890abcdef', and - An
HttpChunkTrailerwhich marks the end of the content.
HttpChunks by yourself for your
convenience, insert HttpChunkAggregator after this decoder in the
ChannelPipeline. However, please note that your server might not
be as memory efficient as without the aggregator.
Extensibility
Please note that this decoder is designed to be extended to implement a protocol derived from HTTP, such as RTSP and ICAP. To implement the decoder of such a derived protocol, extend this class and implement all abstract methods properly.-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate longprivate ChannelBufferprivate intprivate intprivate final intprivate final intprivate final intprivate HttpMessageFields inherited from class org.jboss.netty.handler.codec.frame.FrameDecoder
cumulation, DEFAULT_MAX_COMPOSITEBUFFER_COMPONENTS -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCreates a new instance with the defaultmaxInitialLineLength (4096},maxHeaderSize (8192), andmaxChunkSize (8192).protectedHttpMessageDecoder(int maxInitialLineLength, int maxHeaderSize, int maxChunkSize) Creates a new instance with the specified parameters. -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract HttpMessagecreateMessage(String[] initialLine) protected Objectdecode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, HttpMessageDecoder.State state) Decodes the received packets so far into a frame.private static intprivate static intfindNonWhitespace(String sb, int offset) private static intfindWhitespace(String sb, int offset) private static intgetChunkSize(String hex) protected booleanprotected abstract booleanprivate ObjectreadFixedLengthContent(ChannelBuffer buffer) private StringreadHeader(ChannelBuffer buffer) private HttpMessageDecoder.StatereadHeaders(ChannelBuffer buffer) private static StringreadLine(ChannelBuffer buffer, int maxLineLength) private HttpChunkTrailerreadTrailingHeaders(ChannelBuffer buffer) private Objectreset()private voidprivate static voidskipControlCharacters(ChannelBuffer buffer) private static String[]splitHeader(String sb) private static String[]Methods inherited from class org.jboss.netty.handler.codec.replay.ReplayingDecoder
checkpoint, checkpoint, cleanup, decode, decodeLast, decodeLast, getState, internalBuffer, messageReceived, setStateMethods inherited from class org.jboss.netty.handler.codec.frame.FrameDecoder
actualReadableBytes, afterAdd, afterRemove, appendToCumulation, beforeAdd, beforeRemove, channelClosed, channelDisconnected, exceptionCaught, extractFrame, getMaxCumulationBufferCapacity, getMaxCumulationBufferComponents, isUnfold, newCumulationBuffer, replace, setMaxCumulationBufferCapacity, setMaxCumulationBufferComponents, setUnfold, unfoldAndFireMessageReceived, updateCumulationMethods inherited from class org.jboss.netty.channel.SimpleChannelUpstreamHandler
channelBound, channelConnected, channelInterestChanged, channelOpen, channelUnbound, childChannelClosed, childChannelOpen, handleUpstream, writeComplete
-
Field Details
-
maxInitialLineLength
private final int maxInitialLineLength -
maxHeaderSize
private final int maxHeaderSize -
maxChunkSize
private final int maxChunkSize -
message
-
-
chunkSize
private long chunkSize -
headerSize
private int headerSize -
contentRead
private int contentRead
-
-
Constructor Details
-
HttpMessageDecoder
protected HttpMessageDecoder()Creates a new instance with the defaultmaxInitialLineLength (4096},maxHeaderSize (8192), andmaxChunkSize (8192). -
HttpMessageDecoder
protected HttpMessageDecoder(int maxInitialLineLength, int maxHeaderSize, int maxChunkSize) Creates a new instance with the specified parameters.
-
-
Method Details
-
decode
protected Object decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, HttpMessageDecoder.State state) throws Exception Description copied from class:ReplayingDecoderDecodes the received packets so far into a frame.- Specified by:
decodein classReplayingDecoder<HttpMessageDecoder.State>- Parameters:
ctx- the context of this handlerchannel- the current channelbuffer- the cumulative buffer of received packets so far. Note that the buffer might be empty, which means you should not make an assumption that the buffer contains at least one byte in your decoder implementation.state- the current decoder state (nullif unused)- Returns:
- the decoded frame
- Throws:
Exception
-
isContentAlwaysEmpty
-
reset
-
resetState
private void resetState() -
skipControlCharacters
-
readFixedLengthContent
-
readHeaders
- Throws:
TooLongFrameException
-
readTrailingHeaders
- Throws:
TooLongFrameException
-
readHeader
- Throws:
TooLongFrameException
-
isDecodingRequest
protected abstract boolean isDecodingRequest() -
createMessage
- Throws:
Exception
-
getChunkSize
-
readLine
private static String readLine(ChannelBuffer buffer, int maxLineLength) throws TooLongFrameException - Throws:
TooLongFrameException
-
splitInitialLine
-
splitHeader
-
findNonWhitespace
-
findWhitespace
-
findEndOfString
-