-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathLogKit.h
342 lines (261 loc) · 11.2 KB
/
LogKit.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
// Leka - LekaOS
// Copyright 2021 APF France handicap
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include <array>
#include <cinttypes>
#include <cstdint>
#include <cstdio>
#include <cstring>
#include <functional>
#include <string_view>
#include <unordered_map>
#include "drivers/BufferedSerial.h"
#include "events/EventQueue.h"
#include "platform/FileHandle.h"
#include "rtos/Kernel.h"
#include "rtos/Mutex.h"
#include "rtos/Thread.h"
#include "CircularQueue.h"
#include "cxxsupport/lstd_scoped_lock.h"
namespace leka::logger {
#if defined(ENABLE_LOG_DEBUG)
//
// MARK: - Buffers
//
namespace buffer {
inline auto timestamp = std::array<char, 32> {};
inline auto filename = std::array<char, 128> {};
inline auto message = std::array<char, 256> {};
inline auto output = std::array<char, 512> {};
inline auto fifo = CircularQueue<char, 8192> {};
inline auto process_buffer = std::array<char, 64> {};
}; // namespace buffer
//
// MARK: - Levels
//
namespace level {
enum class name
{
debug,
info,
error,
};
inline const std::unordered_map<level::name, std::string_view> lut = {
{level::name::debug, "[DBUG]"},
{level::name::info, "[INFO]"},
{level::name::error, "[ERR ]"},
};
} // namespace level
//
// MARK: - Events, threads & locks
//
namespace internal {
inline auto mutex = rtos::Mutex {};
inline auto thread = rtos::Thread {osPriorityLow};
inline auto event_queue = events::EventQueue {32 * EVENTS_EVENT_SIZE};
[[maybe_unused]] inline void start_event_queue()
{
internal::thread.start(callback(&internal::event_queue, &events::EventQueue::dispatch_forever));
}
} // namespace internal
//
// MARK: - FIFO processing
//
using filehandle_ptr = mbed::FileHandle *;
namespace internal {
inline filehandle_ptr filehandle = nullptr;
inline void filehandle_low_level_write(const char *data, const std::size_t size)
{
internal::filehandle->write(data, size);
}
inline void disable_filehandle_input()
{
if (filehandle == nullptr) {
return;
}
internal::filehandle->enable_input(false);
}
inline void enable_filehandle_input()
{
if (filehandle == nullptr) {
return;
}
internal::filehandle->enable_input(true);
}
} // namespace internal
[[maybe_unused]] inline void set_filehandle_pointer(filehandle_ptr fh)
{
internal::filehandle = fh;
internal::disable_filehandle_input();
}
inline void process_fifo()
{
while (!buffer::fifo.empty()) {
auto length = buffer::fifo.pop(buffer::process_buffer.data(), std::size(buffer::process_buffer));
internal::filehandle->write(buffer::process_buffer.data(), length);
}
}
//
// MARK: - Serial
//
namespace internal {
inline auto default_serial = mbed::BufferedSerial(USBTX, USBRX, 115200);
} // namespace internal
//
// MARK: - Now
//
using now_function_t = std::function<int64_t()>; // LCOV_EXCL_LINE
namespace internal {
inline auto default_now_function() -> int64_t
{
return rtos::Kernel::Clock::now().time_since_epoch().count();
}
inline now_function_t now = default_now_function;
} // namespace internal
[[maybe_unused]] inline void set_now_function(const now_function_t &func)
{
internal::now = func;
}
//
// MARK: - Sink
//
using sink_function_t = std::function<void(const char *, std::size_t)>; // LCOV_EXCL_LINE
namespace internal {
inline void default_sink_function(const char *str, [[maybe_unused]] std::size_t size)
{
buffer::fifo.push(std::span {str, size});
internal::event_queue.call(process_fifo);
}
inline sink_function_t sink = default_sink_function;
} // namespace internal
[[maybe_unused]] inline void set_sink_function(const sink_function_t &func)
{
internal::sink = func;
}
//
// MARK: - Format functions
//
[[maybe_unused]] inline void format_time_human_readable(int64_t now)
{
auto now_u32 = static_cast<uint32_t>(now);
auto ms = now_u32 % 1000;
auto sec = now_u32 / 1000;
auto min = sec / 60;
auto hour = min / 60;
// ? Format: hhh:mm:ss.μμμ e.g. 008:15:12.345
snprintf(buffer::timestamp.data(), std::size(buffer::timestamp),
"%03" PRIu32 ":%02" PRIu32 ":%02" PRIu32 ".%03" PRIu32, hour, min % 60, sec % 60, ms);
}
[[maybe_unused]] inline void format_filename_line_function(const char *filename, const int line, const char *function)
{
snprintf(buffer::filename.data(), std::size(buffer::filename), "[%s:%i] %s", filename, line, function);
}
template <typename... Args>
void format_message(const char *message = nullptr, Args... args)
{
static auto format = std::array<char, 128> {};
if (sizeof...(args) == 0) {
if (message == nullptr || *message == '\0') {
buffer::message.at(0) = '\0';
return;
}
snprintf(buffer::message.data(), std::size(buffer::message), "> %s", message);
return;
}
snprintf(format.data(), std::size(format), "> %s", message);
snprintf(buffer::message.data(), std::size(buffer::message), format.data(), args...);
}
template <typename... Args>
auto format_output(const char *message = nullptr, Args... args) -> int
{
return snprintf(buffer::output.data(), std::size(buffer::output), message, args...);
}
//
// MARK: - Public functions
//
inline void init(filehandle_ptr fh = &internal::default_serial,
const sink_function_t &sink = internal::default_sink_function)
{
set_filehandle_pointer(fh);
set_sink_function(sink);
internal::start_event_queue();
}
#else
// ? No op versions when debug is off
inline void init(...) {} // NOSONAR
inline void set_now_function(...) {} // NOSONAR
inline void set_sink_function(...) {} // NOSONAR
inline void set_print_function(...) {} // NOSONAR
inline void set_filehandle_pointer(...) {} // NOSONAR
namespace internal {
inline void default_sink_function(...) {} // NOSONAR
inline void disable_filehandle_input(...) {} // NOSONAR
inline void enable_filehandle_input(...) {} // NOSONAR
} // namespace internal
#endif // ENABLE_LOG_DEBUG
} // namespace leka::logger
//
// MARK: - Macros
//
#if defined(ENABLE_LOG_DEBUG) // defined (ENABLE_LOG_DEBUG)
// NOLINTBEGIN (cppcoreguidelines-macro-usage bugprone-lambda-function-name)
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
#define log_debug(str, ...) \
do { \
using namespace leka::logger; \
const auto lock = lstd::scoped_lock {leka::logger::internal::mutex}; \
format_time_human_readable(leka::logger::internal::now()); \
format_filename_line_function(__FILENAME__, __LINE__, __FUNCTION__); \
format_message(str, ##__VA_ARGS__); \
auto length = format_output("%s %s %s %s\n", leka::logger::buffer::timestamp.data(), \
leka::logger::level::lut.at(leka::logger::level::name::debug).data(), \
leka::logger::buffer::filename.data(), leka::logger::buffer::message.data()); \
leka::logger::internal::sink(leka::logger::buffer::output.data(), length); \
} while (0)
#define log_info(str, ...) \
do { \
using namespace leka::logger; \
const auto lock = lstd::scoped_lock {leka::logger::internal::mutex}; \
format_time_human_readable(leka::logger::internal::now()); \
format_filename_line_function(__FILENAME__, __LINE__, __FUNCTION__); \
format_message(str, ##__VA_ARGS__); \
auto length = format_output("%s %s %s %s\n", leka::logger::buffer::timestamp.data(), \
leka::logger::level::lut.at(leka::logger::level::name::info).data(), \
leka::logger::buffer::filename.data(), leka::logger::buffer::message.data()); \
leka::logger::internal::sink(leka::logger::buffer::output.data(), length); \
} while (0)
#define log_error(str, ...) \
do { \
using namespace leka::logger; \
const auto lock = lstd::scoped_lock {leka::logger::internal::mutex}; \
format_time_human_readable(leka::logger::internal::now()); \
format_filename_line_function(__FILENAME__, __LINE__, __FUNCTION__); \
format_message(str, ##__VA_ARGS__); \
auto length = format_output("%s %s %s %s\n", leka::logger::buffer::timestamp.data(), \
leka::logger::level::lut.at(leka::logger::level::name::error).data(), \
leka::logger::buffer::filename.data(), leka::logger::buffer::message.data()); \
leka::logger::internal::sink(leka::logger::buffer::output.data(), length); \
} while (0)
#define log_free(str, ...) \
do { \
using namespace leka::logger; \
const auto lock = lstd::scoped_lock {leka::logger::internal::mutex}; \
auto length = format_output(str, ##__VA_ARGS__); \
leka::logger::internal::sink(leka::logger::buffer::output.data(), length); \
} while (0)
#define log_ll(p_data, size) \
do { \
using namespace leka::logger; \
const auto lock = lstd::scoped_lock {leka::logger::internal::mutex}; \
leka::logger::buffer::fifo.push(std::span {p_data, static_cast<std::size_t>(size)}); \
leka::logger::internal::event_queue.call(process_fifo); \
} while (0)
// NOLINTEND (cppcoreguidelines-macro-usage bugprone-lambda-function-name)
#else // not defined (ENABLE_LOG_DEBUG)
#define log_debug(str, ...)
#define log_info(str, ...)
#define log_error(str, ...)
#define log_free(str, ...)
#define log_ll(p_data, size)
#endif // not defined (ENABLE_LOG_DEBUG)