Package org.yamcs.tctm.pus
Class PusCommandPostprocessor
java.lang.Object
org.yamcs.tctm.pus.PusCommandPostprocessor
- All Implemented Interfaces:
CommandPostprocessor
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringprotected CommandHistoryPublisherprotected CcsdsSeqCountFiller -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturn the size of the binary packet for this command.protected booleanvoidinit(String yamcsInstance, YConfiguration config) Called to initialise the postprocessor and set the cmd hist publisher (used to publish command acknowledgments), the timeService (required to timestamp acks) and the configurationbyte[]processes the command and returns the binary buffer.voidsetCommandHistoryPublisher(CommandHistoryPublisher commandHistoryListener) sets the command history listener which can be used by the preprocessor to provide command history entries related to the command processed
-
Field Details
-
CCSDS_SEQCOUNT_PARA_NAME
- See Also:
-
seqFiller
-
commandHistoryListener
-
-
Constructor Details
-
PusCommandPostprocessor
public PusCommandPostprocessor()
-
-
Method Details
-
init
Description copied from interface:CommandPostprocessorCalled to initialise the postprocessor and set the cmd hist publisher (used to publish command acknowledgments), the timeService (required to timestamp acks) and the configuration- Specified by:
initin interfaceCommandPostprocessor
-
process
Description copied from interface:CommandPostprocessorprocesses the command and returns the binary buffer. Returns null if the command cannot be processed (e.g. its size does not correspond to what this processor expects). In this case, the post-processor is expected to fail the command in the command history (also filling in an appropriate reason)- Specified by:
processin interfaceCommandPostprocessor- Returns:
- the processed command or null if the command cannot be processed
-
getBinaryLength
Description copied from interface:CommandPostprocessorReturn the size of the binary packet for this command.This is required in the frame links which bundle multiple commands together to know if the command will fit into the frame before post-processing it.
- Specified by:
getBinaryLengthin interfaceCommandPostprocessor- Returns:
- the size of the binary packet which the method
CommandPostprocessor.process(PreparedCommand)will return.
-
hasCrc
-
setCommandHistoryPublisher
Description copied from interface:CommandPostprocessorsets the command history listener which can be used by the preprocessor to provide command history entries related to the command processed- Specified by:
setCommandHistoryPublisherin interfaceCommandPostprocessor
-