public abstract class HttpObjectDecoder extends ReplayingDecoder<io.netty.handler.codec.http.HttpObjectDecoder.State>
ByteBuf
s into HttpMessage
s and
HttpContent
s.
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 HttpContent s 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
HttpContent
s 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 3 objects:
HttpRequest
,HttpContent
whose content is 'abcdefghijklmnopqrstuvwxyz'
,LastHttpContent
whose content is '1234567890abcdef'
, which marks
the end of the content.HttpContent
s by yourself for your
convenience, insert HttpObjectAggregator
after this decoder in the
ChannelPipeline
. However, please note that your server might not
be as memory efficient as without the aggregator.
ChannelHandler.Sharable
Modifier | Constructor and Description |
---|---|
protected |
HttpObjectDecoder()
Creates a new instance with the default
maxInitialLineLength (4096 }, maxHeaderSize (8192) , and
maxChunkSize (8192) . |
protected |
HttpObjectDecoder(int maxInitialLineLength,
int maxHeaderSize,
int maxChunkSize,
boolean chunkedSupported)
Creates a new instance with the specified parameters.
|
Modifier and Type | Method and Description |
---|---|
protected abstract HttpMessage |
createInvalidMessage() |
protected abstract HttpMessage |
createMessage(String[] initialLine) |
protected Object |
decode(ChannelHandlerContext ctx,
ByteBuf buffer)
Decode the from one
ByteBuf to an other. |
protected boolean |
isContentAlwaysEmpty(HttpMessage msg) |
protected abstract boolean |
isDecodingRequest() |
actualReadableBytes, callDecode, channelInactive, channelReadSuspended, checkpoint, checkpoint, discardInboundReadBytes, discardInboundReadBytes0, internalBuffer, newInboundBuffer, newInboundBuffer0, state, state
decodeLast, inboundBufferUpdated, isSingleDecode, setSingleDecode
freeInboundBuffer, inboundBufferUpdated
channelActive, channelRegistered, channelUnregistered, userEventTriggered
afterAdd, afterRemove, beforeAdd, beforeRemove, exceptionCaught
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
channelActive, channelRegistered, channelUnregistered, userEventTriggered
afterAdd, afterRemove, beforeAdd, beforeRemove, exceptionCaught
protected HttpObjectDecoder()
maxInitialLineLength (4096
}, maxHeaderSize (8192)
, and
maxChunkSize (8192)
.protected HttpObjectDecoder(int maxInitialLineLength, int maxHeaderSize, int maxChunkSize, boolean chunkedSupported)
protected Object decode(ChannelHandlerContext ctx, ByteBuf buffer) throws Exception
ByteToMessageDecoder
ByteBuf
to an other. This method will be called till either the input
ByteBuf
has nothing to read anymore, till nothing was read from the input ByteBuf
or till
this method returns null
.decode
in class ByteToMessageDecoder
ctx
- the ChannelHandlerContext
which this ByteToByteDecoder
belongs tobuffer
- the ByteBuf
from which to read dataByteBuf
was decoded, or null
if
there was not enough data left in the ByteBuf
to decode.Exception
- is thrown if an error accourprotected boolean isContentAlwaysEmpty(HttpMessage msg)
protected abstract boolean isDecodingRequest()
protected abstract HttpMessage createMessage(String[] initialLine) throws Exception
Exception
protected abstract HttpMessage createInvalidMessage()
Copyright © 2008-2013 The Netty Project. All Rights Reserved.