Class DecodingStateProtocolDecoder
java.lang.Object
org.apache.mina.filter.codec.statemachine.DecodingStateProtocolDecoder
- All Implemented Interfaces:
ProtocolDecoder
ProtocolDecoder which uses a DecodingState to decode data.
Use a DecodingStateMachine as DecodingState to create
a state machine which can decode your protocol.
NOTE: This is a stateful decoder. You should create one instance per session.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoiddecode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) Decodes binary or protocol-specific content into higher-level message objects.voidReleases all resources related with this decoder.voidfinishDecode(IoSession session, ProtocolDecoderOutput out) Invoked when the specifiedsessionis closed.
-
Field Details
-
state
-
undecodedBuffers
-
session
-
-
Constructor Details
-
DecodingStateProtocolDecoder
Creates a new instance using the specifiedDecodingStateinstance.- Parameters:
state- theDecodingState.- Throws:
IllegalArgumentException- if the specified state isnull.
-
-
Method Details
-
decode
Decodes binary or protocol-specific content into higher-level message objects. MINA invokesProtocolDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput)method with read data, and then the decoder implementation puts decoded messages intoProtocolDecoderOutput.- Specified by:
decodein interfaceProtocolDecoder- Parameters:
session- The current Sessionin- the buffer to decodeout- TheProtocolDecoderOutputthat will receive the decoded message- Throws:
Exception- if the read data violated protocol specification
-
finishDecode
Invoked when the specifiedsessionis closed. This method is useful when you deal with the protocol which doesn't specify the length of a message such as HTTP response withoutcontent-lengthheader. Implement this method to process the remaining data thatProtocolDecoder.decode(IoSession, IoBuffer, ProtocolDecoderOutput)method didn't process completely.- Specified by:
finishDecodein interfaceProtocolDecoder- Parameters:
session- The current Sessionout- TheProtocolDecoderOutputthat contains the decoded message- Throws:
Exception- if the read data violated protocol specification
-
dispose
Releases all resources related with this decoder.- Specified by:
disposein interfaceProtocolDecoder- Parameters:
session- The current Session- Throws:
Exception- if failed to dispose all resources
-