Package org.snmp4j.util
Class MultiThreadedMessageDispatcher
java.lang.Object
org.snmp4j.util.MultiThreadedMessageDispatcher
- All Implemented Interfaces:
MessageDispatcher,TransportListener
The
MultiThreadedMessageDispatcher class is a decorator
for any MessageDispatcher instances that processes incoming
message with a supplied ThreadPool. The processing is thus
parallelized on up to the size of the supplied thread pool threads.
In contrast to a MessageDispatcherImpl a
MultiThreadedMessageDispatcher copies the incoming
ByteBuffer for processMessage(TransportMapping sourceTransport, Address incomingAddress, ByteBuffer wholeMessage, TransportStateReference tmStateReference) to allow
concurrent processing of the buffer.
- Since:
- 1.0.2
- Version:
- 2.0
- Author:
- Frank Fock
-
Constructor Summary
ConstructorsConstructorDescriptionMultiThreadedMessageDispatcher(WorkerPool workerPool, MessageDispatcher decoratedDispatcher) Creates a multi-threaded message dispatcher using the providedThreadPoolto concurrently process incoming messages that are forwarded to the supplied decoratedMessageDispatcher. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddCommandResponder(CommandResponder listener) Adds aCommandResponderinstance to the message dispatcher.voidAdds aMessageProcessingModelto the dispatcher.voidaddTransportMapping(TransportMapping<? extends Address> transport) Adds aTransportMappingto the dispatcher.getMessageProcessingModel(int messageProcessingModel) Gets theMessageProcessingModelfor the supplied message processing model ID.intGets the next unique request ID.getTransport(Address destAddress) Returns a transport mapping that can handle the supplied address.Gets theCollectionof transport mappings in this message dispatcher.voidprocessMessage(TransportMapping sourceTransport, Address incomingAddress, ByteBuffer wholeMessage, TransportStateReference tmStateReference) Process an incoming SNMP message.voidreleaseStateReference(int messageProcessingModel, PduHandle pduHandle) Release any state references associated with the suppliedPduHandlein the specified message processing model.voidremoveCommandResponder(CommandResponder listener) Removes a previously addedCommandResponderinstance from the message dispatcher.voidRemoves a previously addedMessageProcessingModelfrom the dispatcher.removeTransportMapping(TransportMapping<? extends Address> transport) Removes a previously addedTransportMappingfrom the dispatcher.intreturnResponsePdu(int messageProcessingModel, int securityModel, byte[] securityName, int securityLevel, PDU pdu, int maxSizeResponseScopedPDU, StateReference stateReference, StatusInformation statusInformation) Returns a response PDU to the sender of the corresponding request PDU.Sends a PDU to the supplied transport address.sendPdu(TransportMapping transportMapping, Target target, PDU pdu, boolean expectResponse) Sends a PDU to the supplied transport address.sendPdu(TransportMapping transportMapping, Target target, PDU pdu, boolean expectResponse, PduHandleCallback<PDU> callback) Sends a PDU to the supplied transport address and returns thePduHandlethat uniquely identifies the request as response after the request has been sent and optional, if aPduHandleCallbackis given, it returns also thePduHandlejust before the request is sent through the the callback interface.
-
Constructor Details
-
MultiThreadedMessageDispatcher
Creates a multi-threaded message dispatcher using the providedThreadPoolto concurrently process incoming messages that are forwarded to the supplied decoratedMessageDispatcher.- Parameters:
workerPool- aWorkerPoolinstance (that can be shared). The worker pool has to be stopped externally.decoratedDispatcher- the decoratedMessageDispatcherthat must be multi-threading safe.
-
-
Method Details
-
getNextRequestID
public int getNextRequestID()Description copied from interface:MessageDispatcherGets the next unique request ID. The returned ID is unique across the last 2^31-1 IDs generated by this message dispatcher.- Specified by:
getNextRequestIDin interfaceMessageDispatcher- Returns:
- an integer value in the range 1..2^31-1. The returned ID can be used to map responses to requests send through this message dispatcher.
-
addMessageProcessingModel
Description copied from interface:MessageDispatcherAdds aMessageProcessingModelto the dispatcher. In order to support a specific SNMP protocol version, the message dispatcher needs a message processing model to process messages before they can be dispatched.- Specified by:
addMessageProcessingModelin interfaceMessageDispatcher- Parameters:
model- aMessageProcessingModelinstance.
-
removeMessageProcessingModel
Description copied from interface:MessageDispatcherRemoves a previously addedMessageProcessingModelfrom the dispatcher.- Specified by:
removeMessageProcessingModelin interfaceMessageDispatcher- Parameters:
model- aMessageProcessingModelinstance.
-
getMessageProcessingModel
Description copied from interface:MessageDispatcherGets theMessageProcessingModelfor the supplied message processing model ID.- Specified by:
getMessageProcessingModelin interfaceMessageDispatcher- Parameters:
messageProcessingModel- a message processing model ID (seeMessageProcessingModel.getID()).- Returns:
- a MessageProcessingModel instance if the ID is known, otherwise
null
-
addTransportMapping
Description copied from interface:MessageDispatcherAdds aTransportMappingto the dispatcher. The transport mapping is used to send and receive messages to/from the network.- Specified by:
addTransportMappingin interfaceMessageDispatcher- Parameters:
transport- aTransportMappinginstance.
-
removeTransportMapping
Description copied from interface:MessageDispatcherRemoves a previously addedTransportMappingfrom the dispatcher.- Specified by:
removeTransportMappingin interfaceMessageDispatcher- Parameters:
transport- aTransportMappinginstance.- Returns:
- the
TransportMappinginstance supplied if it could be successfully removed,nullotherwise.
-
getTransportMappings
Description copied from interface:MessageDispatcherGets theCollectionof transport mappings in this message dispatcher.- Specified by:
getTransportMappingsin interfaceMessageDispatcher- Returns:
- a Collection with the registered transport mappings.
-
addCommandResponder
Description copied from interface:MessageDispatcherAdds aCommandResponderinstance to the message dispatcher. Successfully processed SNMP messages will be presented to all command responder (in the order in which they have been added) until a responder uses theCommandResponderEvent.setProcessed(boolean processed)to set the processed status of the event totrue.- Specified by:
addCommandResponderin interfaceMessageDispatcher- Parameters:
listener- aCommandResponderinstance.
-
removeCommandResponder
Description copied from interface:MessageDispatcherRemoves a previously addedCommandResponderinstance from the message dispatcher.- Specified by:
removeCommandResponderin interfaceMessageDispatcher- Parameters:
listener- aCommandResponderinstance.
-
sendPdu
Description copied from interface:MessageDispatcherSends a PDU to the supplied transport address. This method behaves like a call toMessageDispatcher.sendPdu(TransportMapping transportMapping, Target target, PDU pdu, boolean expectResponse)withtransportMappingset tonull.- Specified by:
sendPduin interfaceMessageDispatcher- Parameters:
target- the target which identifies, transport address, message processing model, security model, security name and level.pdu- the SNMP Protocol Data UnitexpectResponse-trueif a response is expected and a state reference should be saved (if needed for the supplied message processing model).- Returns:
- an
PduHandlethat uniquely identifies this request. - Throws:
MessageException- if sending of the PDU failed.
-
sendPdu
public PduHandle sendPdu(TransportMapping transportMapping, Target target, PDU pdu, boolean expectResponse) throws MessageException Description copied from interface:MessageDispatcherSends a PDU to the supplied transport address.- Specified by:
sendPduin interfaceMessageDispatcher- Parameters:
transportMapping- theTransportMappingto be used to send the PDU. IftransportMappingisnullthe message dispatcher will determine the appropriate transport mapping for the given transport address.target- the target which identifies, transport address, message processing model, security model, security name and level.pdu- the SNMP Protocol Data UnitexpectResponse-trueif a response is expected and a state reference should be saved (if needed for the supplied message processing model).- Returns:
- an
PduHandlethat uniquely identifies this request. - Throws:
MessageException- if sending of the PDU failed.
-
sendPdu
public PduHandle sendPdu(TransportMapping transportMapping, Target target, PDU pdu, boolean expectResponse, PduHandleCallback<PDU> callback) throws MessageException Description copied from interface:MessageDispatcherSends a PDU to the supplied transport address and returns thePduHandlethat uniquely identifies the request as response after the request has been sent and optional, if aPduHandleCallbackis given, it returns also thePduHandlejust before the request is sent through the the callback interface.- Specified by:
sendPduin interfaceMessageDispatcher- Parameters:
transportMapping- theTransportMappingto be used to send the PDU. IftransportMappingisnullthe message dispatcher will determine the appropriate transport mapping for the given transport address.target- the target which identifies, transport address, message processing model, security model, security name and level.pdu- the SNMP Protocol Data UnitexpectResponse-trueif a response is expected and a state reference should be saved (if needed for the supplied message processing model).callback- an optional callback instance that is informed (if notnull) about the newly assigned PduHandle just before the message is sent out.- Returns:
- an
PduHandlethat uniquely identifies this request. - Throws:
MessageException- if sending of the PDU failed.
-
returnResponsePdu
public int returnResponsePdu(int messageProcessingModel, int securityModel, byte[] securityName, int securityLevel, PDU pdu, int maxSizeResponseScopedPDU, StateReference stateReference, StatusInformation statusInformation) throws MessageException Description copied from interface:MessageDispatcherReturns a response PDU to the sender of the corresponding request PDU.- Specified by:
returnResponsePduin interfaceMessageDispatcher- Parameters:
messageProcessingModel- intsecurityModel- intsecurityName- byte[]securityLevel- intpdu- PDUmaxSizeResponseScopedPDU- intstateReference- StateReferencestatusInformation- StatusInformation- Returns:
- an MP error status or
SnmpConstants.SNMP_MP_OKif the operation was successful. - Throws:
MessageException- if message processing fails with a fatal error.
-
releaseStateReference
Description copied from interface:MessageDispatcherRelease any state references associated with the suppliedPduHandlein the specified message processing model.- Specified by:
releaseStateReferencein interfaceMessageDispatcher- Parameters:
messageProcessingModel- a message processing model ID.pduHandle- thePduHandlethat identifies a confirmed class message.- See Also:
-
getTransport
Description copied from interface:MessageDispatcherReturns a transport mapping that can handle the supplied address.- Specified by:
getTransportin interfaceMessageDispatcher- Parameters:
destAddress- an Address instance.- Returns:
- a
TransportMappinginstance that can be used to sent a SNMP message todestAddressornullif such a transport mapping does not exists.
-
processMessage
public void processMessage(TransportMapping sourceTransport, Address incomingAddress, ByteBuffer wholeMessage, TransportStateReference tmStateReference) Description copied from interface:MessageDispatcherProcess an incoming SNMP message. The message is processed and dispatched according to the message's content, the message processing models, and the command responder available to the dispatcher.- Specified by:
processMessagein interfaceMessageDispatcher- Specified by:
processMessagein interfaceTransportListener- Parameters:
sourceTransport- aTransportMappinginstance denoting the transport that received the message and that will be used to send any responses to this message. ThesourceTransporthas to support theincomingAddress's implementation class.incomingAddress- theAddressfrom which the message has been received.wholeMessage- anByteBuffercontaining the received SNMP message.tmStateReference- the transport model state reference as defined by RFC 5590.
-