fprime/Fw/Comp/PassiveComponentBase.cpp
Thomas Boyer-Chammard ab58cf18fb
Format Fw and add to CI (#3976)
* Format Fw and add to CI

* Fix include of HPP file instead of H in extern C

* Fix format strings
2025-08-04 12:56:02 -07:00

53 lines
1.4 KiB
C++

#include <Fw/Comp/PassiveComponentBase.hpp>
#include <Fw/FPrimeBasicTypes.hpp>
#include <Fw/Types/Assert.hpp>
#include <Fw/Types/ExternalString.hpp>
namespace Fw {
PassiveComponentBase::PassiveComponentBase(const char* name) : Fw::ObjBase(name), m_idBase(0), m_instance(0) {}
#if FW_OBJECT_TO_STRING == 1
const char* PassiveComponentBase::getToStringFormatString() {
return "Comp: %s";
}
void PassiveComponentBase::toString(char* buffer, FwSizeType size) {
FW_ASSERT(size > 0);
FW_ASSERT(buffer != nullptr);
Fw::FormatStatus status = Fw::ExternalString(buffer, static_cast<Fw::ExternalString::SizeType>(size))
.format(this->getToStringFormatString(),
#if FW_OBJECT_NAMES == 1
this->m_objName.toChar()
#else
"UNKNOWN"
#endif
);
if (status != Fw::FormatStatus::SUCCESS) {
buffer[0] = 0;
}
}
#endif
PassiveComponentBase::~PassiveComponentBase() {}
void PassiveComponentBase::init(FwEnumStoreType instance) {
ObjBase::init();
this->m_instance = instance;
}
FwEnumStoreType PassiveComponentBase::getInstance() const {
return this->m_instance;
}
void PassiveComponentBase ::setIdBase(const FwIdType idBase) {
this->m_idBase = idBase;
}
FwIdType PassiveComponentBase ::getIdBase() const {
return this->m_idBase;
}
} // namespace Fw