muwerk Scheduler Library
A low-resource cooperative scheduler with MQTT-like queues for Arduinos, ATtiny up to ESP32
Loading...
Searching...
No Matches
doctor.h
1// doctor.h -- system diagnostics via messages / mqtt
2#pragma once
3
4#include <Arduino_JSON.h>
5
6#include "scheduler.h"
7#include "heartbeat.h"
8
9namespace ustd {
10
53class Doctor {
54 private:
55 // muwerk task management
56 Scheduler *pSched;
57 int tID;
58
59 // active configuration
60 String name;
61
62 // runtime control - state management
63 bool bActive = false;
64 heartbeat memoryInterval;
65
66 public:
67 Doctor(String name = "doctor") : name(name) {
69 }
70
71 ~Doctor() {
72 }
73
74 void begin(Scheduler *_pSched) {
79 pSched = _pSched;
80
81 tID = pSched->add([this]() { this->loop(); }, name, 100000); // every 100 ms
82
83 pSched->subscribe(tID, name + "/#", [this](String topic, String msg, String originator) {
84 this->subsMsg(topic, msg, originator);
85 });
86
87 bActive = true;
88 }
89
90 protected:
91 void publishDiagnostics() {
92 JSONVar diaginfo;
93#if defined(USTD_FEATURE_FREE_MEMORY)
94 diaginfo["free_memory"] = freeMemory();
95#endif
96#ifdef __ESP__
97 diaginfo["sdk_version"] = (const char *)ESP.getSdkVersion();
98 diaginfo["cpu_frequency"] = (int)ESP.getCpuFreqMHz();
99 diaginfo["free_sketch_space"] = (int)ESP.getFreeSketchSpace();
100 diaginfo["flash_size"] = (int)ESP.getFlashChipSize();
101 diaginfo["flash_speed_mhz"] = (float)((float)ESP.getFlashChipSpeed() / 1000000.0f);
102 diaginfo["program_size"] = (int)ESP.getSketchSize();
103#ifdef __ESP32__
104 diaginfo["hardware"] = (const char *)"ESP32";
105 diaginfo["chip_revision"] = (int)ESP.getChipRevision();
106#else
107 diaginfo["hardware"] = (const char *)"ESP8266";
108 diaginfo["chip_id"] = (int)ESP.getChipId();
109 diaginfo["core_version"] = (const char *)(ESP.getCoreVersion().c_str());
110 diaginfo["flash_chip_id"] = (int)ESP.getFlashChipId();
111 diaginfo["real_flash_size"] = (int)ESP.getFlashChipRealSize();
112 diaginfo["last_reset_reason"] = (const char *)(ESP.getResetReason().c_str());
113#endif // __ESP32__
114#endif // __ESP__
115
116#if defined(__ARDUINO__)
117#ifdef __ATMEGA__
118 diaginfo["hardware"] = (const char *)"Arduino MEGA";
119#elif defined(__UNO__)
120 diaginfo["hardware"] = (const char *)"Arduino UNO";
121#else
122 diaginfo["hardware"] = (const char *)"Arduino unknown";
123#endif
124#endif // __ARDUINO__
125
126#if defined(__RISC_V__)
127 diaginfo["hardware"] = (const char *)"RISC-V";
128#endif // __RISC_V__
129
130#if defined(__ARM__)
131 diaginfo["hardware"] = (const char *)"ARM";
132#endif // __ARM__
133
134 pSched->publish(name + "/diagnostics", JSON.stringify(diaginfo));
135 }
136
137#if defined(USTD_FEATURE_FREE_MEMORY)
138 void publishMemory() {
139 int mem = freeMemory();
140 pSched->publish(name + "/memory", String(mem));
141 }
142#endif
143
144 void publishTimeinfo() {
145 JSONVar timeinfo;
146#ifdef USTD_FEATURE_CLK_READ
147 time_t now = time(nullptr);
148 char szTime[24];
149 struct tm *plt = localtime(&now);
150 strftime(szTime, 9, "%T", plt);
151 timeinfo["time"] = (const char *)szTime;
152 strftime(szTime, 20, "%Y.%m.%d %H:%M:%S", plt);
153 timeinfo["date"] = (const char *)szTime;
154 timeinfo["time_t"] = (long)time(nullptr);
155#endif
156 timeinfo["uptime"] = (long)pSched->getUptime();
157 timeinfo["millis"] = millis();
158 pSched->publish(name + "/timeinfo", JSON.stringify(timeinfo));
159 }
160
161 void loop() {
162 if (bActive) {
163#if defined(USTD_FEATURE_FREE_MEMORY)
164 if (memoryInterval.beat()) {
165 publishMemory();
166 }
167#endif
168 }
169 }
170
171 void subsMsg(String topic, String msg, String originator) {
172#if defined(USTD_FEATURE_FREE_MEMORY)
173 if (topic == name + "/memory/get") {
174 if (msg != "") {
175 int period = msg.toInt();
176 memoryInterval = period * 1000;
177 } else {
178 memoryInterval = 0;
179 }
180 publishMemory();
181 }
182#endif
183 if (topic == name + "/diagnostics/get") {
184 publishDiagnostics();
185 }
186 if (topic == name + "/timeinfo/get") {
187 publishTimeinfo();
188 }
189#ifdef __ESP__
190 if (topic == name + "/restart") {
191 ESP.restart();
192 }
193#endif
194 };
195}; // Doctor
196
197} // namespace ustd
muwerk Doctor Class
Definition doctor.h:53
Doctor(String name="doctor")
Definition doctor.h:67
void begin(Scheduler *_pSched)
Definition doctor.h:74
muwerk Scheduler Class
Definition scheduler.h:199
int add(T_TASK task, String name, unsigned long minMicroSecs=100000L, T_PRIO prio=PRIO_NORMAL)
Definition scheduler.h:475
unsigned long getUptime()
Definition scheduler.h:554
bool publish(String topic, String msg="", String originator="")
Definition scheduler.h:367
int subscribe(int taskID, String topic, T_SUBS subs, String originator="")
Definition scheduler.h:395
muwerk HeartBeat Class
Definition heartbeat.h:47
unsigned long beat()
Definition heartbeat.h:75
The muwerk namespace.
Definition console.h:15