public abstract class HttpMessageDecoder extends ReplayingDecoder<HttpMessageDecoder.State>
ChannelBuffers into HttpMessages and
HttpChunks.
| 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. |
maxChunkSize 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:
HttpRequest whose chunked
property is true,HttpChunk whose content is 'abcdefghijklmnopqrstuvwxyz',HttpChunk whose content is '1234567890abcdef', andHttpChunkTrailer which 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.
| Modifier and Type | Class and Description |
|---|---|
protected static class |
HttpMessageDecoder.State
The internal state of
HttpMessageDecoder. |
ChannelHandler.Sharable| Modifier and Type | Field and Description |
|---|---|
private long |
chunkSize |
private ChannelBuffer |
content |
private int |
contentRead |
private int |
headerSize |
private int |
maxChunkSize |
private int |
maxHeaderSize |
private int |
maxInitialLineLength |
private HttpMessage |
message |
cumulation, DEFAULT_MAX_COMPOSITEBUFFER_COMPONENTS| Modifier | Constructor and Description |
|---|---|
protected |
HttpMessageDecoder()
Creates a new instance with the default
maxInitialLineLength (4096}, maxHeaderSize (8192), and
maxChunkSize (8192). |
protected |
HttpMessageDecoder(int maxInitialLineLength,
int maxHeaderSize,
int maxChunkSize)
Creates a new instance with the specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract HttpMessage |
createMessage(java.lang.String[] initialLine) |
protected java.lang.Object |
decode(ChannelHandlerContext ctx,
Channel channel,
ChannelBuffer buffer,
HttpMessageDecoder.State state)
Decodes the received packets so far into a frame.
|
private static int |
findEndOfString(java.lang.String sb) |
private static int |
findNonWhitespace(java.lang.String sb,
int offset) |
private static int |
findWhitespace(java.lang.String sb,
int offset) |
private static int |
getChunkSize(java.lang.String hex) |
protected boolean |
isContentAlwaysEmpty(HttpMessage msg) |
protected abstract boolean |
isDecodingRequest() |
private java.lang.Object |
readFixedLengthContent(ChannelBuffer buffer) |
private java.lang.String |
readHeader(ChannelBuffer buffer) |
private HttpMessageDecoder.State |
readHeaders(ChannelBuffer buffer) |
private static java.lang.String |
readLine(ChannelBuffer buffer,
int maxLineLength) |
private HttpChunkTrailer |
readTrailingHeaders(ChannelBuffer buffer) |
private java.lang.Object |
reset() |
private void |
resetState() |
private static void |
skipControlCharacters(ChannelBuffer buffer) |
private static java.lang.String[] |
splitHeader(java.lang.String sb) |
private static java.lang.String[] |
splitInitialLine(java.lang.String sb) |
checkpoint, checkpoint, cleanup, decode, decodeLast, decodeLast, getState, internalBuffer, messageReceived, setStateactualReadableBytes, afterAdd, afterRemove, appendToCumulation, beforeAdd, beforeRemove, channelClosed, channelDisconnected, exceptionCaught, extractFrame, getMaxCumulationBufferCapacity, getMaxCumulationBufferComponents, isUnfold, newCumulationBuffer, replace, setMaxCumulationBufferCapacity, setMaxCumulationBufferComponents, setUnfold, unfoldAndFireMessageReceived, updateCumulationchannelBound, channelConnected, channelInterestChanged, channelOpen, channelUnbound, childChannelClosed, childChannelOpen, handleUpstream, writeCompleteprivate final int maxInitialLineLength
private final int maxHeaderSize
private final int maxChunkSize
private HttpMessage message
private ChannelBuffer content
private long chunkSize
private int headerSize
private int contentRead
protected HttpMessageDecoder()
maxInitialLineLength (4096}, maxHeaderSize (8192), and
maxChunkSize (8192).protected HttpMessageDecoder(int maxInitialLineLength,
int maxHeaderSize,
int maxChunkSize)
protected java.lang.Object decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer, HttpMessageDecoder.State state) throws java.lang.Exception
ReplayingDecoderdecode in class ReplayingDecoder<HttpMessageDecoder.State>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 (null if unused)java.lang.Exceptionprotected boolean isContentAlwaysEmpty(HttpMessage msg)
private java.lang.Object reset()
private void resetState()
private static void skipControlCharacters(ChannelBuffer buffer)
private java.lang.Object readFixedLengthContent(ChannelBuffer buffer)
private HttpMessageDecoder.State readHeaders(ChannelBuffer buffer) throws TooLongFrameException
TooLongFrameExceptionprivate HttpChunkTrailer readTrailingHeaders(ChannelBuffer buffer) throws TooLongFrameException
TooLongFrameExceptionprivate java.lang.String readHeader(ChannelBuffer buffer) throws TooLongFrameException
TooLongFrameExceptionprotected abstract boolean isDecodingRequest()
protected abstract HttpMessage createMessage(java.lang.String[] initialLine) throws java.lang.Exception
java.lang.Exceptionprivate static int getChunkSize(java.lang.String hex)
private static java.lang.String readLine(ChannelBuffer buffer, int maxLineLength) throws TooLongFrameException
TooLongFrameExceptionprivate static java.lang.String[] splitInitialLine(java.lang.String sb)
private static java.lang.String[] splitHeader(java.lang.String sb)
private static int findNonWhitespace(java.lang.String sb,
int offset)
private static int findWhitespace(java.lang.String sb,
int offset)
private static int findEndOfString(java.lang.String sb)