public class HAProxyMessageDecoder extends ByteToMessageDecoder
ByteToMessageDecoder.Cumulator ChannelHandler.Sharable COMPOSITE_CUMULATOR, MERGE_CUMULATOR | Constructor and Description |
|---|
HAProxyMessageDecoder ()
Creates a new decoder with no additional data (TLV) restrictions
|
HAProxyMessageDecoder (int maxTlvSize)
Creates a new decoder with restricted additional data (TLV) size
Note: limiting TLV size only affects processing of v2, binary headers.
|
| Modifier and Type | Method and Description |
|---|---|
void |
channelRead (ChannelHandlerContext ctx,
java.lang.Object msg)
Calls
ChannelHandlerContext.fireChannelRead(Object) to forward
to the next ChannelInboundHandler in the ChannelPipeline. |
protected void |
decode (ChannelHandlerContext ctx,
ByteBuf in,
java.util.List<java.lang.Object> out)
Decode the from one
ByteBuf to an other. |
static ProtocolDetectionResult<HAProxyProtocolVersion> |
detectProtocol (ByteBuf buffer)
Returns the
ProtocolDetectionResult for the given ByteBuf. |
boolean |
isSingleDecode ()
If
true then only one message is decoded on each
ByteToMessageDecoder.channelRead(ChannelHandlerContext, Object) call. |
actualReadableBytes, callDecode, channelInactive, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, handlerRemoved0, internalBuffer, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggered channelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught ensureNotSharable, handlerAdded, isSharable clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithandlerAdded public HAProxyMessageDecoder()
public HAProxyMessageDecoder(int maxTlvSize)
Note: limiting TLV size only affects processing of v2, binary headers. Also, as allowed by the 1.5 spec
TLV data is currently ignored. For maximum performance it would be best to configure your upstream proxy host to
NOT send TLV data and instantiate with a max TLV size of 0.
maxTlvSize - maximum number of bytes allowed for additional data (Type-Length-Value vectors) in a v2 headerpublic boolean isSingleDecode()
ByteToMessageDecoder true then only one message is decoded on each
ByteToMessageDecoder.channelRead(ChannelHandlerContext, Object) call.
Default is false as this has performance impacts.isSingleDecode in class ByteToMessageDecoder public void channelRead(ChannelHandlerContext ctx, java.lang.Object msg) throws java.lang.Exception
ChannelInboundHandlerAdapter ChannelHandlerContext.fireChannelRead(Object) to forward
to the next ChannelInboundHandler in the ChannelPipeline.
Sub-classes may override this method to change behavior.channelRead in interface ChannelInboundHandler channelRead in class ByteToMessageDecoder java.lang.Exceptionprotected final void decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out) throws java.lang.Exception
ByteToMessageDecoder ByteBuf to an other. This method will be called till either the input
ByteBuf has nothing to read when return from this method or till nothing was read from the input
ByteBuf.decode in class ByteToMessageDecoder ctx - the ChannelHandlerContext which this ByteToMessageDecoder belongs toin - the ByteBuf from which to read dataout - the List to which decoded messages should be addedjava.lang.Exception - is thrown if an error occurspublic static ProtocolDetectionResult<HAProxyProtocolVersion> detectProtocol(ByteBuf buffer)
ProtocolDetectionResult for the given ByteBuf.Copyright © 2008–2018 The Netty Project. All rights reserved.