Package org.apache.mina.filter.codec
Class CumulativeProtocolDecoder
- java.lang.Object
-
- org.apache.mina.filter.codec.ProtocolDecoderAdapter
-
- org.apache.mina.filter.codec.CumulativeProtocolDecoder
-
- All Implemented Interfaces:
ProtocolDecoder
- Direct Known Subclasses:
DemuxingProtocolDecoder,ObjectSerializationDecoder,PrefixedStringDecoder
public abstract class CumulativeProtocolDecoder extends ProtocolDecoderAdapter
AProtocolDecoderthat cumulates the content of received buffers to a cumulative buffer to help users implement decoders.If the received
IoBufferis only a part of a message. decoders should cumulate received buffers to make a message complete or to postpone decoding until more buffers arrive.Here is an example decoder that decodes CRLF terminated lines into
Commandobjects:public class CrLfTerminatedCommandLineDecoder extends CumulativeProtocolDecoder { private Command parseCommand(IoBuffer in) { // Convert the bytes in the specified buffer to a // Command object. ... } protected boolean doDecode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) throws Exception { // Remember the initial position. int start = in.position(); // Now find the first CRLF in the buffer. byte previous = 0; while (in.hasRemaining()) { byte current = in.get(); if (previous == '\r' && current == '\n') { // Remember the current position and limit. int position = in.position(); int limit = in.limit(); try { in.position(start); in.limit(position); // The bytes between in.position() and in.limit() // now contain a full CRLF terminated line. out.write(parseCommand(in.slice())); } finally { // Set the position to point right after the // detected line and set the limit to the old // one. in.position(position); in.limit(limit); } // Decoded one line; CumulativeProtocolDecoder will // call me again until I return false. So just // return true until there are no more lines in the // buffer. return true; } previous = current; } // Could not find CRLF in the buffer. Reset the initial // position to the one we recorded above. in.position(start); return false; } }Please note that this decoder simply forward the call to doDecode(IoSession, IoBuffer, ProtocolDecoderOutput) if the underlying transport doesn't have a packet fragmentation. Whether the transport has fragmentation or not is determined by querying
TransportMetadata.- Author:
- Apache MINA Project
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCumulativeProtocolDecoder()Creates a new instance.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voiddecode(IoSession session, IoBuffer in, ProtocolDecoderOutput out)Cumulates content ofininto internal buffer and forwards decoding request to doDecode(IoSession, IoBuffer, ProtocolDecoderOutput).voiddispose(IoSession session)Releases the cumulative buffer used by the specifiedsession.protected abstract booleandoDecode(IoSession session, IoBuffer in, ProtocolDecoderOutput out)Implement this method to consume the specified cumulative buffer and decode its content into message(s).voidsetTransportMetadataFragmentation(boolean transportMetadataFragmentation)Let the user change the way we handle fragmentation.-
Methods inherited from class org.apache.mina.filter.codec.ProtocolDecoderAdapter
finishDecode
-
-
-
-
Method Detail
-
decode
public void decode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) throws Exception
Cumulates content ofininto internal buffer and forwards decoding request to doDecode(IoSession, IoBuffer, ProtocolDecoderOutput).doDecode()is invoked repeatedly until it returnsfalseand the cumulative buffer is compacted after decoding ends.- Parameters:
session- The current Sessionin- the buffer to decodeout- TheProtocolDecoderOutputthat will receive the decoded message- Throws:
IllegalStateException- if yourdoDecode()returnedtruenot consuming the cumulative buffer.Exception- if the read data violated protocol specification
-
doDecode
protected abstract boolean doDecode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) throws Exception
Implement this method to consume the specified cumulative buffer and decode its content into message(s).- Parameters:
session- The current Sessionin- the cumulative bufferout- TheProtocolDecoderOutputthat will receive the decoded message- Returns:
trueif and only if there's more to decode in the buffer and you want to havedoDecodemethod invoked again. Returnfalseif remaining data is not enough to decode, then this method will be invoked again when more data is cumulated.- Throws:
Exception- if cannot decodein.
-
dispose
public void dispose(IoSession session) throws Exception
Releases the cumulative buffer used by the specifiedsession. Please don't forget to callsuper.dispose( session )when you override this method.- Specified by:
disposein interfaceProtocolDecoder- Overrides:
disposein classProtocolDecoderAdapter- Parameters:
session- The current Session- Throws:
Exception- if failed to dispose all resources
-
setTransportMetadataFragmentation
public void setTransportMetadataFragmentation(boolean transportMetadataFragmentation)
Let the user change the way we handle fragmentation. If set tofalse, the decode() method will not check the TransportMetadata fragmentation capability- Parameters:
transportMetadataFragmentation- The flag to set.
-
-