public abstract class HttpObjectDecoder
extends io.netty.handler.codec.ByteToMessageDecoder
ByteBufs into HttpMessages and
 HttpContents.
 | 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 HttpContents 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
 HttpContents 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.HttpContents 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.
 | Modifier and Type | Field and Description | 
|---|---|
protected boolean | 
validateHeaders  | 
| 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. 
 | 
protected  | 
HttpObjectDecoder(int maxInitialLineLength,
                 int maxHeaderSize,
                 int maxChunkSize,
                 boolean chunkedSupported,
                 boolean validateHeaders)
Creates a new instance with the specified parameters. 
 | 
protected  | 
HttpObjectDecoder(int maxInitialLineLength,
                 int maxHeaderSize,
                 int maxChunkSize,
                 boolean chunkedSupported,
                 boolean validateHeaders,
                 int initialBufferSize)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected abstract HttpMessage | 
createInvalidMessage()  | 
protected abstract HttpMessage | 
createMessage(String[] initialLine)  | 
protected void | 
decode(io.netty.channel.ChannelHandlerContext ctx,
      io.netty.buffer.ByteBuf buffer,
      List<Object> out)  | 
protected void | 
decodeLast(io.netty.channel.ChannelHandlerContext ctx,
          io.netty.buffer.ByteBuf in,
          List<Object> out)  | 
protected boolean | 
isContentAlwaysEmpty(HttpMessage msg)  | 
protected abstract boolean | 
isDecodingRequest()  | 
void | 
reset()
Resets the state of the decoder so that it is ready to decode a new message. 
 | 
void | 
userEventTriggered(io.netty.channel.ChannelHandlerContext ctx,
                  Object evt)  | 
actualReadableBytes, callDecode, channelInactive, channelRead, channelReadComplete, discardSomeReadBytes, handlerRemoved, handlerRemoved0, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecodechannelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaughtprotected HttpObjectDecoder()
maxInitialLineLength (4096}, maxHeaderSize (8192), and
 maxChunkSize (8192).protected HttpObjectDecoder(int maxInitialLineLength,
                 int maxHeaderSize,
                 int maxChunkSize,
                 boolean chunkedSupported)
protected HttpObjectDecoder(int maxInitialLineLength,
                 int maxHeaderSize,
                 int maxChunkSize,
                 boolean chunkedSupported,
                 boolean validateHeaders)
protected HttpObjectDecoder(int maxInitialLineLength,
                 int maxHeaderSize,
                 int maxChunkSize,
                 boolean chunkedSupported,
                 boolean validateHeaders,
                 int initialBufferSize)
protected void decode(io.netty.channel.ChannelHandlerContext ctx,
          io.netty.buffer.ByteBuf buffer,
          List<Object> out)
               throws Exception
decode in class io.netty.handler.codec.ByteToMessageDecoderExceptionprotected void decodeLast(io.netty.channel.ChannelHandlerContext ctx,
              io.netty.buffer.ByteBuf in,
              List<Object> out)
                   throws Exception
decodeLast in class io.netty.handler.codec.ByteToMessageDecoderExceptionpublic void userEventTriggered(io.netty.channel.ChannelHandlerContext ctx,
                      Object evt)
                        throws Exception
userEventTriggered in interface io.netty.channel.ChannelInboundHandleruserEventTriggered in class io.netty.handler.codec.ByteToMessageDecoderExceptionprotected boolean isContentAlwaysEmpty(HttpMessage msg)
public void reset()
Expect: 100-continue header.protected abstract boolean isDecodingRequest()
protected abstract HttpMessage createMessage(String[] initialLine) throws Exception
Exceptionprotected abstract HttpMessage createInvalidMessage()
Copyright © 2008–2017 The Netty Project. All rights reserved.