added access to objectlist and a produce function to ObjectManager
This commit is contained in:
parent
dd281f8a67
commit
20eb232bf5
@ -78,7 +78,7 @@ SystemObjectIF* ObjectManager::getSystemObject(object_id_t id) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ObjectManager::initialize() {
|
void ObjectManager::produce() {
|
||||||
if (objectFactoryFunction == nullptr) {
|
if (objectFactoryFunction == nullptr) {
|
||||||
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
||||||
sif::error << "ObjectManager::initialize: Passed produceObjects "
|
sif::error << "ObjectManager::initialize: Passed produceObjects "
|
||||||
@ -90,6 +90,10 @@ void ObjectManager::initialize() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
objectFactoryFunction(factoryArgs);
|
objectFactoryFunction(factoryArgs);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ObjectManager::initialize() {
|
||||||
|
produce();
|
||||||
ReturnValue_t result = RETURN_FAILED;
|
ReturnValue_t result = RETURN_FAILED;
|
||||||
uint32_t errorCount = 0;
|
uint32_t errorCount = 0;
|
||||||
for (auto const& it : objectList) {
|
for (auto const& it : objectList) {
|
||||||
@ -140,3 +144,7 @@ void ObjectManager::printList() {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const std::map<object_id_t, SystemObjectIF*> * ObjectManager::getObjectList(){
|
||||||
|
return &objectList;
|
||||||
|
}
|
||||||
|
@ -42,7 +42,9 @@ class ObjectManager : public ObjectManagerIF {
|
|||||||
ReturnValue_t insert(object_id_t id, SystemObjectIF* object) override;
|
ReturnValue_t insert(object_id_t id, SystemObjectIF* object) override;
|
||||||
ReturnValue_t remove(object_id_t id) override;
|
ReturnValue_t remove(object_id_t id) override;
|
||||||
void initialize() override;
|
void initialize() override;
|
||||||
|
void produce() override;
|
||||||
void printList() override;
|
void printList() override;
|
||||||
|
const std::map<object_id_t, SystemObjectIF*> * getObjectList() override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
SystemObjectIF* getSystemObject(object_id_t id) override;
|
SystemObjectIF* getSystemObject(object_id_t id) override;
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef FSFW_OBJECTMANAGER_OBJECTMANAGERIF_H_
|
#ifndef FSFW_OBJECTMANAGER_OBJECTMANAGERIF_H_
|
||||||
#define FSFW_OBJECTMANAGER_OBJECTMANAGERIF_H_
|
#define FSFW_OBJECTMANAGER_OBJECTMANAGERIF_H_
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include "../returnvalues/HasReturnvaluesIF.h"
|
#include "../returnvalues/HasReturnvaluesIF.h"
|
||||||
#include "../serviceinterface/ServiceInterface.h"
|
#include "../serviceinterface/ServiceInterface.h"
|
||||||
#include "SystemObjectIF.h"
|
#include "SystemObjectIF.h"
|
||||||
@ -58,12 +60,14 @@ class ObjectManagerIF : public HasReturnvaluesIF {
|
|||||||
* @li RETURN_OK in case the object was successfully removed
|
* @li RETURN_OK in case the object was successfully removed
|
||||||
*/
|
*/
|
||||||
virtual ReturnValue_t remove(object_id_t id) = 0;
|
virtual ReturnValue_t remove(object_id_t id) = 0;
|
||||||
|
virtual void produce() = 0;
|
||||||
virtual void initialize() = 0;
|
virtual void initialize() = 0;
|
||||||
/**
|
/**
|
||||||
* @brief This is a debug function, that prints the current content of the
|
* @brief This is a debug function, that prints the current content of the
|
||||||
* object list.
|
* object list.
|
||||||
*/
|
*/
|
||||||
virtual void printList() = 0;
|
virtual void printList() = 0;
|
||||||
|
virtual const std::map<object_id_t, SystemObjectIF*>* getObjectList() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* OBJECTMANAGERIF_H_ */
|
#endif /* OBJECTMANAGERIF_H_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user