2016-09-07 20:10:37 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
#include <utils/Components.h>
|
2016-09-07 20:10:37 +02:00
|
|
|
#include <utils/Logger.h>
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
class Hyperion;
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief The component register reflects and manages the current state of all components and Hyperion as a whole
|
|
|
|
/// It emits also real component state changes (triggert from the specific component), which can be used for listening APIs (Network Clients/Plugins)
|
|
|
|
///
|
2016-09-07 20:10:37 +02:00
|
|
|
class ComponentRegister : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-12-27 23:11:32 +01:00
|
|
|
ComponentRegister(Hyperion* hyperion);
|
2016-09-07 20:10:37 +02:00
|
|
|
~ComponentRegister();
|
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief Enable or disable Hyperion (all components)
|
|
|
|
/// @param state The new state of Hyperion
|
|
|
|
///
|
|
|
|
/// @return Returns true on success, false when Hyperion is already at the requested state
|
|
|
|
///
|
|
|
|
bool setHyperionEnable(const bool& state);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Check if a component is currently enabled
|
|
|
|
/// @param comp The component from enum
|
2018-12-28 18:12:45 +01:00
|
|
|
/// @return True if component is running else false. Not found is -1
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
2018-12-28 18:12:45 +01:00
|
|
|
int isComponentEnabled(const hyperion::Components& comp) const;
|
2018-12-27 23:11:32 +01:00
|
|
|
|
|
|
|
/// contains all components and their state
|
2016-09-07 20:10:37 +02:00
|
|
|
std::map<hyperion::Components, bool> getRegister() { return _componentStates; };
|
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
signals:
|
|
|
|
///
|
|
|
|
/// @brief Emits whenever a component changed (really) the state
|
|
|
|
/// @param comp The component
|
|
|
|
/// @param state The new state of the component
|
|
|
|
///
|
|
|
|
void updatedComponentState(const hyperion::Components comp, const bool state);
|
|
|
|
|
2016-09-07 20:10:37 +02:00
|
|
|
public slots:
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief is called whenever a component change a state, DO NOT CALL FROM API (use hyperion->setComponentState() instead)
|
|
|
|
/// @param comp The component
|
|
|
|
/// @param state The new state of the component
|
|
|
|
///
|
2016-09-07 20:10:37 +02:00
|
|
|
void componentStateChanged(const hyperion::Components comp, const bool activated);
|
|
|
|
|
|
|
|
private:
|
2018-12-27 23:11:32 +01:00
|
|
|
/// Hyperion instance
|
|
|
|
Hyperion * _hyperion;
|
|
|
|
/// Logger instance
|
2016-09-07 20:10:37 +02:00
|
|
|
Logger * _log;
|
2018-12-27 23:11:32 +01:00
|
|
|
/// current state of all components
|
|
|
|
std::map<hyperion::Components, bool> _componentStates;
|
|
|
|
/// on hyperion off we save the previous states of all components
|
|
|
|
std::map<hyperion::Components, bool> _prevComponentStates;
|
2016-09-07 20:10:37 +02:00
|
|
|
};
|