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
A decoder that splits the received
ChannelBuffers by the fixed number
of bytes. For example, if you received the following four fragmented packets:
+---+----+------+----+ | A | BC | DEFG | HI | +---+----+------+----+A
FixedLengthFrameDecoder(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
FieldsModifier and TypeFieldDescriptionprivate final booleanprivate final intFields inherited from class org.jboss.netty.handler.codec.frame.FrameDecoder
cumulation, DEFAULT_MAX_COMPOSITEBUFFER_COMPONENTS -
Constructor Summary
ConstructorsConstructorDescriptionFixedLengthFrameDecoder(int frameLength) CallsFixedLengthFrameDecoder(int, boolean)withfalseFixedLengthFrameDecoder(int frameLength, boolean allocateFullBuffer) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected 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, updateCumulationMethods inherited from class org.jboss.netty.channel.SimpleChannelUpstreamHandler
channelBound, channelConnected, channelInterestChanged, channelOpen, channelUnbound, childChannelClosed, childChannelOpen, handleUpstream, writeComplete
-
Field Details
-
frameLength
private final int frameLength -
allocateFullBuffer
private final boolean allocateFullBuffer
-
-
Constructor Details
-
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 Details
-
decode
protected Object decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffer buffer) throws 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:
Exception
-
newCumulationBuffer
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
-