// ====================================================================== // \title QueuedTest.cpp // \author [user name] // \brief cpp file for QueuedTest component implementation class // ====================================================================== #include "FpConfig.hpp" #include "QueuedTest.hpp" // ---------------------------------------------------------------------- // Component construction and destruction // ---------------------------------------------------------------------- QueuedTest :: QueuedTest(const char* const compName) : QueuedTestComponentBase(compName) { } QueuedTest :: ~QueuedTest() { } // ---------------------------------------------------------------------- // Handler implementations for user-defined typed input ports // ---------------------------------------------------------------------- void QueuedTest :: noArgsAsync_handler(FwIndexType portNum) { // TODO } void QueuedTest :: noArgsGuarded_handler(FwIndexType portNum) { // TODO } U32 QueuedTest :: noArgsReturnGuarded_handler(FwIndexType portNum) { // TODO return } U32 QueuedTest :: noArgsReturnSync_handler(FwIndexType portNum) { // TODO return } void QueuedTest :: noArgsSync_handler(FwIndexType portNum) { // TODO } void QueuedTest :: typedAsync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedAsyncAssert_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedAsyncBlockPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedAsyncDropPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } F32 QueuedTest :: typedReturnGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedReturnPortStrings::StringSize80& str2, const E& e, const A& a, const S& s ) { // TODO return } F32 QueuedTest :: typedReturnSync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedReturnPortStrings::StringSize80& str2, const E& e, const A& a, const S& s ) { // TODO return } void QueuedTest :: typedSync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } // ---------------------------------------------------------------------- // Handler implementations for commands // ---------------------------------------------------------------------- void QueuedTest :: CMD_SYNC_cmdHandler( FwOpcodeType opCode, U32 cmdSeq ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_SYNC_PRIMITIVE_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, U32 u32, F32 f32, bool b ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_SYNC_STRING_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, const Fw::CmdStringArg& str1, const Fw::CmdStringArg& str2 ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_SYNC_ENUM_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, E e ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_SYNC_ARRAY_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, A a ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_SYNC_STRUCT_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, S s ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_GUARDED_cmdHandler( FwOpcodeType opCode, U32 cmdSeq ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_GUARDED_PRIMITIVE_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, U32 u32, F32 f32, bool b ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_GUARDED_STRING_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, const Fw::CmdStringArg& str1, const Fw::CmdStringArg& str2 ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_GUARDED_ENUM_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, E e ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_GUARDED_ARRAY_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, A a ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_GUARDED_STRUCT_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, S s ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_ASYNC_cmdHandler( FwOpcodeType opCode, U32 cmdSeq ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_PRIORITY_cmdHandler( FwOpcodeType opCode, U32 cmdSeq ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_PARAMS_PRIORITY_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, U32 u32 ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_DROP_cmdHandler( FwOpcodeType opCode, U32 cmdSeq ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } void QueuedTest :: CMD_PARAMS_PRIORITY_DROP_cmdHandler( FwOpcodeType opCode, U32 cmdSeq, U32 u32 ) { // TODO this->cmdResponse_out(opCode, cmdSeq, Fw::CmdResponse::OK); } // ---------------------------------------------------------------------- // Handler implementations for user-defined internal interfaces // ---------------------------------------------------------------------- void QueuedTest :: internalArray_internalInterfaceHandler(const A& a) { // TODO } void QueuedTest :: internalEnum_internalInterfaceHandler(const E& e) { // TODO } void QueuedTest :: internalPrimitive_internalInterfaceHandler( U32 u32, F32 f32, bool b ) { // TODO } void QueuedTest :: internalPriorityDrop_internalInterfaceHandler() { // TODO } void QueuedTest :: internalString_internalInterfaceHandler( const Fw::InternalInterfaceString& str1, const Fw::InternalInterfaceString& str2 ) { // TODO } void QueuedTest :: internalStruct_internalInterfaceHandler(const S& s) { // TODO } // ---------------------------------------------------------------------- // Handler implementations for data products // ---------------------------------------------------------------------- void QueuedTest :: dpRecv_Container1_handler( DpContainer& container, Fw::Success::T status ) { // TODO } void QueuedTest :: dpRecv_Container2_handler( DpContainer& container, Fw::Success::T status ) { // TODO } void QueuedTest :: dpRecv_Container3_handler( DpContainer& container, Fw::Success::T status ) { // TODO } void QueuedTest :: dpRecv_Container4_handler( DpContainer& container, Fw::Success::T status ) { // TODO } void QueuedTest :: dpRecv_Container5_handler( DpContainer& container, Fw::Success::T status ) { // TODO }