Class FixedLengthFrameDecoder
- java.lang.Object
-
- org.jboss.netty.channel.SimpleChannelUpstreamHandler
-
- org.jboss.netty.handler.codec.frame.FrameDecoder
-
- org.jboss.netty.handler.codec.frame.FixedLengthFrameDecoder
-
- All Implemented Interfaces:
ChannelHandler,ChannelUpstreamHandler,LifeCycleAwareChannelHandler
public class FixedLengthFrameDecoder extends FrameDecoder
A decoder that splits the receivedChannelBuffers by the fixed number of bytes. For example, if you received the following four fragmented packets:+---+----+------+----+ | A | BC | DEFG | HI | +---+----+------+----+
AFixedLengthFrameDecoder(3)will decode them into the following three packets with the fixed length:+-----+-----+-----+ | ABC | DEF | GHI | +-----+-----+-----+
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jboss.netty.channel.ChannelHandler
ChannelHandler.Sharable
-
-
Field Summary
Fields Modifier and Type Field Description private booleanallocateFullBufferprivate intframeLength-
Fields inherited from class org.jboss.netty.handler.codec.frame.FrameDecoder
cumulation, DEFAULT_MAX_COMPOSITEBUFFER_COMPONENTS
-
-
Constructor Summary
Constructors Constructor Description FixedLengthFrameDecoder(int frameLength)CallsFixedLengthFrameDecoder(int, boolean)withfalseFixedLengthFrameDecoder(int frameLength, boolean allocateFullBuffer)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Objectdecode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer)Decodes the received packets so far into a frame.protected ChannelBuffernewCumulationBuffer(ChannelHandlerContext ctx, int minimumCapacity)Create a newChannelBufferwhich is used for the cumulation.-
Methods inherited from class org.jboss.netty.handler.codec.frame.FrameDecoder
actualReadableBytes, afterAdd, afterRemove, appendToCumulation, beforeAdd, beforeRemove, channelClosed, channelDisconnected, cleanup, decodeLast, exceptionCaught, extractFrame, getMaxCumulationBufferCapacity, getMaxCumulationBufferComponents, internalBuffer, isUnfold, messageReceived, replace, setMaxCumulationBufferCapacity, setMaxCumulationBufferComponents, setUnfold, unfoldAndFireMessageReceived, updateCumulation
-
Methods inherited from class org.jboss.netty.channel.SimpleChannelUpstreamHandler
channelBound, channelConnected, channelInterestChanged, channelOpen, channelUnbound, childChannelClosed, childChannelOpen, handleUpstream, writeComplete
-
-
-
-
Constructor Detail
-
FixedLengthFrameDecoder
public FixedLengthFrameDecoder(int frameLength)
CallsFixedLengthFrameDecoder(int, boolean)withfalse
-
FixedLengthFrameDecoder
public FixedLengthFrameDecoder(int frameLength, boolean allocateFullBuffer)Creates a new instance.- Parameters:
frameLength- the length of the frameallocateFullBuffer-trueif the cumulativeChannelBuffershould use theframeLengthas its initial size
-
-
Method Detail
-
decode
protected java.lang.Object decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer) throws java.lang.Exception
Description copied from class:FrameDecoderDecodes the received packets so far into a frame. If an sub-class wants to extract a frame out of the buffer it should use theFrameDecoder.extractFrame(ChannelBuffer, int, int)method, to make optimizations easier later.- Specified by:
decodein classFrameDecoder- 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.- Returns:
- the decoded frame if a full frame was received and decoded.
nullif there's not enough data in the buffer to decode a frame. - Throws:
java.lang.Exception
-
newCumulationBuffer
protected ChannelBuffer newCumulationBuffer(ChannelHandlerContext ctx, int minimumCapacity)
Description copied from class:FrameDecoderCreate a newChannelBufferwhich is used for the cumulation. Sub-classes may override this.- Overrides:
newCumulationBufferin classFrameDecoder- Parameters:
ctx-ChannelHandlerContextfor this handler- Returns:
- buffer the
ChannelBufferwhich is used for cumulation
-
-