forked from nagius/RemoteRelay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogger.cpp
139 lines (122 loc) · 3.94 KB
/
Logger.cpp
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
/*************************************************************************
*
* This file is part of the Remoterelay Arduino sketch.
* Copyleft 2017 Nicolas Agius <[email protected]>
* Copyleft 2022-2024 Johannes Unger (just minor enhancements)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* ***********************************************************************/
#include "Logger.h"
Logger::Logger() {
// Init ring log
for (int i = RINGLOG_SIZE; i --> 0; ) {
ringlog[i][0]='\0';
}
enableDebug = false;
enableSerial = false;
}
void Logger::setDebug(bool d) {
enableDebug = d;
}
void Logger::setSerial(bool d) {
enableSerial = d;
}
void Logger::debug(const __FlashStringHelper *fmt, ...) {
if (!enableDebug) {
return;
}
va_list ap;
va_start(ap, fmt);
log(fmt, ap);
va_end(ap);
}
void Logger::info(const __FlashStringHelper *fmt, ...) {
va_list ap;
va_start(ap, fmt);
log(fmt, ap);
va_end(ap);
}
void Logger::logNow(const char* const p_buffer) {
// Add timestamp header
uint32_t uptime = millis();
// pucgenie: don't use F() here.
const char LOG_MILLIS_FORMAT[] = "[%07d] ";
#define len_LOG_MILLIS_FORMAT sizeof(LOG_MILLIS_FORMAT)-1
char * const ringlogline = ringlog[index];
// pucgenie: I don't like \0
snprintf(ringlogline, len_LOG_MILLIS_FORMAT + 1, LOG_MILLIS_FORMAT, uptime);
strncpy(ringlogline + len_LOG_MILLIS_FORMAT, p_buffer, BUF_LEN - len_LOG_MILLIS_FORMAT);
#undef len_LOG_MILLIS_FORMAT
if (enableSerial) {
Serial.println(ringlogline);
}
// Loop over at the begining of the ring
if (++index >= RINGLOG_SIZE) {
index = 0;
}
}
void Logger::log(const __FlashStringHelper *fmt, va_list ap) {
// just keep it allocated
static char buffer[BUF_LEN];
// Generate log message (does not support float)
// FIXME: Handle return code. Loop for continuation.
vsnprintf_P(buffer, BUF_LEN, reinterpret_cast<PGM_P>(fmt), ap);
logNow(buffer);
}
void Logger::getLog(String &msg) {
// Get uptime
char uptime[9];
// pucgenie: microoptimization: Don't use F() here.
{
int _printerror = snprintf(uptime, sizeof(uptime), "%08lu", millis() / 1000);
if (_printerror < 0 || ((unsigned int) _printerror >= sizeof(uptime))) {
// can't use logger...
Serial.println(F("Time formatting broken. Continuing anyway..."));
}
}
// pucgenie: Don't worry about a few wasted CPU cycles to do that everytime.
if (!msg.reserve(255)) {
// can't use logger...
Serial.println(F("Couldn't reserve String buffer. Continuing anyway..."));
}
// Generate header
msg += " ==== DEBUG LOG ====\r\n\
Chip ID: ";
msg += ESP.getChipId();
msg += "\r\nFree Heap: ";
msg += ESP.getFreeHeap();
msg += "\r\nFlash Size: ";
msg += ESP.getFlashChipSize();
msg += "\r\nUptime: ";
msg += uptime;
msg += "\r\nPrinting last ";
msg += RINGLOG_SIZE;
msg += " lines of the log:\r\n";
// Get most recent half of the ring
for (int i = index; i < RINGLOG_SIZE; ++i) {
if (strlen(ringlog[i]) > 0) {
msg += ringlog[i];
msg += "\r\n";
}
}
// Get older half of the ring
for (int i = 0; i < index; ++i) {
if (strlen(ringlog[i]) > 0) {
msg += ringlog[i];
msg += "\r\n";
}
}
msg += " ==== END LOG ====\r\n";
}