// ====================================================================== // \title QueuedTest.cpp // \author [user name] // \brief cpp file for QueuedTest component implementation class // ====================================================================== #include "QueuedTest.hpp" // ---------------------------------------------------------------------- // Component construction and destruction // ---------------------------------------------------------------------- QueuedTest :: QueuedTest(const char* const compName) { // TODO Initialize the ParamExternalDelegate // The register function can be called directly here: // E.G. this->registerExternalParameters(SomeParamExternalDelegateChild()); // Or you can call the register function in a public setup method // that is called when setting up the component instance. } QueuedTest :: ~QueuedTest() { } // ---------------------------------------------------------------------- // Handler implementations for typed input ports // ---------------------------------------------------------------------- void QueuedTest :: aliasTypedAsync_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AliasStruct& s ) { // TODO } Fw::String QueuedTest :: noArgsAliasStringReturnSync_handler(FwIndexType portNum) { // TODO return } 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 } Fw::String QueuedTest :: noArgsStringReturnSync_handler(FwIndexType portNum) { // TODO return } void QueuedTest :: noArgsSync_handler(FwIndexType portNum) { // TODO } void QueuedTest :: typedAliasGuarded_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AliasStruct& s ) { // TODO } AliasPrim2 QueuedTest :: typedAliasReturnSync_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AliasStruct& s ) { // TODO return } Fw::String QueuedTest :: typedAliasStringReturnSync_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AnotherAliasStruct& s ) { // TODO return } void QueuedTest :: typedAsync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedAsyncAssert_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedAsyncBlockPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedAsyncDropPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void QueuedTest :: typedGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } F32 QueuedTest :: typedReturnGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& 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 Fw::StringBase& 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 Fw::StringBase& 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 }