36 lines
992 B
C++
36 lines
992 B
C++
#ifndef HEALTHTABLE_H_
|
|
#define HEALTHTABLE_H_
|
|
|
|
#include "HealthTableIF.h"
|
|
#include "../objectmanager/SystemObject.h"
|
|
#include "../ipc/MutexIF.h"
|
|
#include <map>
|
|
|
|
typedef std::map<object_id_t, HasHealthIF::HealthState> HealthMap;
|
|
|
|
class HealthTable: public HealthTableIF, public SystemObject {
|
|
public:
|
|
HealthTable(object_id_t objectid);
|
|
virtual ~HealthTable();
|
|
|
|
virtual ReturnValue_t registerObject(object_id_t object,
|
|
HasHealthIF::HealthState initilialState = HasHealthIF::HEALTHY);
|
|
|
|
virtual bool hasHealth(object_id_t object);
|
|
virtual void setHealth(object_id_t object, HasHealthIF::HealthState newState);
|
|
virtual HasHealthIF::HealthState getHealth(object_id_t);
|
|
|
|
virtual uint32_t getPrintSize();
|
|
virtual void printAll(uint8_t *pointer, size_t maxSize);
|
|
|
|
protected:
|
|
MutexIF* mutex;
|
|
HealthMap healthMap;
|
|
|
|
HealthMap::iterator mapIterator;
|
|
|
|
virtual ReturnValue_t iterate(std::pair<object_id_t,HasHealthIF::HealthState> *value, bool reset = false);
|
|
};
|
|
|
|
#endif /* HEALTHTABLE_H_ */
|