-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenericDevice.h
158 lines (130 loc) · 3.57 KB
/
GenericDevice.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#ifndef GENERICDEVICE_H
#define GENERICDEVICE_H
#include "commons/components_commons.h"
#include "State.h"
#include <stdint.h>
#include <stddef.h>
#include <Task.h>
class GenericDevice {
public:
GenericDevice(AbstractState *fallbackState = nullptr);
GenericDevice(AbstractState *fallbackState, const char *deviceName,
LogLevel logLevel = COMPONENTS_DEFAULT_LOG_LEVEL);
void setup();
void loop(uint16_t watchdogTimeOutFlag = WDTO_500MS);
TaskManager& getTaskManager();
void enterState(AbstractState &state);
void enterState(AbstractState &state, const Event &event);
void receiveEvent(const Event &event);
virtual ~GenericDevice();
protected:
virtual void onSetup();
virtual void onIdle();
TaskManager taskManager;
Logger logger {nullptr, LogLevel::OFF};
private:
void enterFallbackState();
void enterFallbackState(const Event &event);
AbstractState *currentState = nullptr;
AbstractState *fallbackState = nullptr;
};
inline GenericDevice::GenericDevice(AbstractState *fallbackState) :
fallbackState(fallbackState) {
}
inline GenericDevice::GenericDevice(AbstractState *fallbackState,
const char *deviceName, LogLevel logLevel) :
fallbackState(fallbackState) {
logger.setName(deviceName);
logger.setLogLevel(logLevel);
}
inline void GenericDevice::setup() {
taskManager.Setup();
logger.debug("onSetup");
onSetup();
}
inline void GenericDevice::onSetup() {
}
inline void GenericDevice::loop(uint16_t watchdogTimeOutFlag) {
taskManager.Loop(watchdogTimeOutFlag);
if (taskManager.IsIdle()) {
#ifdef DEBUG_ENTERING_IDLE_STATE
logger.debug("onIdle");
#endif
onIdle();
}
}
inline void GenericDevice::onIdle() {
}
inline TaskManager& GenericDevice::getTaskManager() {
return taskManager;
}
inline void GenericDevice::enterState(AbstractState &state) {
if (currentState != nullptr) {
currentState->logger.debug("onExitState");
currentState->onExitState();
}
state.logger.debug("onEnterState");
if (state.onEnterState()) {
currentState = &state;
} else {
enterFallbackState();
}
}
inline void GenericDevice::enterState(AbstractState &state,
const Event &event) {
if (currentState != nullptr) {
currentState->logger.debug("onExitState");
currentState->onExitState();
}
if (state.canHandleEvent(event)) {
state.logger.debug("onEnterState");
if (state.onEnterStateWithGenericEvent(event)) {
currentState = &state;
return;
}
}
state.logger.warn("can't handle event");
enterFallbackState(event);
}
inline void GenericDevice::receiveEvent(const Event &event) {
if (currentState == nullptr) {
logger.warn("can't handle event");
return;
}
if (currentState->canHandleEvent(event)) {
currentState->logger.debug("handleEvent");
if (currentState->handleGenericEvent(event)) {
return;
}
}
currentState->logger.warn("can't handle event");
currentState->logger.debug("onExitState");
currentState->onExitState();
enterFallbackState(event);
}
inline void GenericDevice::enterFallbackState() {
if (fallbackState != nullptr) {
fallbackState->logger.warn("onEnterState");
fallbackState->onEnterState();
currentState = fallbackState;
} else {
currentState = nullptr;
logger.error("hanged up");
}
}
inline void GenericDevice::enterFallbackState(const Event &event) {
if (fallbackState != nullptr) {
fallbackState->logger.warn("onEnterState");
if (!(fallbackState->canHandleEvent(event)
&& fallbackState->onEnterStateWithGenericEvent(event))) {
fallbackState->onEnterState();
currentState = fallbackState;
}
} else {
currentState = nullptr;
logger.error("hanged up");
}
}
inline GenericDevice::~GenericDevice() {
}
#endif