-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataLogger.cpp
560 lines (469 loc) · 15.7 KB
/
DataLogger.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
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
#include "Main.h"
#include "DataLogger.hpp"
#include <CircularBuffer.h>
#include <byteswap.h>
namespace
{
const constexpr char *kLoggingTag = "Logger";
AsyncEventSource events("/dataevents");
const constexpr char *dbFilename = "/spiffs/Esp32DataLogger.db";
const constexpr int dbPageSizeExp = 12; // 4096
const constexpr char *dbFilenameWithoutFs = &dbFilename[7];
SemaphoreHandle_t dbMutex = xSemaphoreCreateMutex();
FILE *dbFile;
byte dbBuffer[1 << dbPageSizeExp];
bool dbAccessible = false;
int flushEveryMillis;
QueueHandle_t recordQueueHandle;
TaskHandle_t queueTaskHandle;
struct dblog_read_context dataReadDbContext;
time_t dataReadLastTimestamp;
bool dataReadFinalize;
SemaphoreHandle_t latestRecordsMutex = xSemaphoreCreateMutex();
CircularBuffer<Record, latestRecordsBufferSize> latestRecordsBuffer;
}
void setupDataLogger(int flushEverySeconds, int queueLength)
{
ESP_LOGD(kLoggingTag, "Entering setupDataLogger()");
recoverDb();
flushEveryMillis = flushEverySeconds * 1000;
recordQueueHandle = xQueueCreate(queueLength, sizeof(Record));
auto createTaskResult = xTaskCreate(queueTask, "recordQueue", 8192 * 2, nullptr, uxTaskPriorityGet(nullptr), &queueTaskHandle);
if (createTaskResult != pdPASS)
{
ESP_LOGE(kLoggingTag, "Error %d creating task", createTaskResult);
while (true)
;
}
asyncWebServer.serveStatic("/", SPIFFS, "/").setDefaultFile("index.htm");
asyncWebServer.on("/data", HTTP_GET, dataResponseHandler);
events.onConnect([](AsyncEventSourceClient *client) {
ESP_LOGI(kLoggingTag, "SSE client connected");
if (xSemaphoreTake(latestRecordsMutex, 100) == pdTRUE)
{
// TODO: combine multiple records into one event message as JSON array or do this in a separate (one-off) task
using index_t = decltype(latestRecordsBuffer)::index_t;
for (index_t i = 0; i < latestRecordsBuffer.size(); i++)
{
ESP_LOGI(kLoggingTag, "Sending latestRecordsBuffer[%d]", i);
// only send a few samples here to avoid AsyncTCP locking up
events.send(latestRecordsBuffer[i].toJsonString().c_str());
}
xSemaphoreGive(latestRecordsMutex);
}
});
asyncWebServer.addHandler(&events);
}
bool isDatabaseAccessible()
{
return dbAccessible;
}
bool addRecord(const Record &record, bool addToRingbuffer)
{
ESP_LOGD(kLoggingTag, "Entering addRecord()");
events.send(record.toJsonString().c_str());
if (addToRingbuffer && xSemaphoreTake(latestRecordsMutex, 100) == pdTRUE)
{
latestRecordsBuffer.push(record);
xSemaphoreGive(latestRecordsMutex);
}
return xQueueSendToBack(recordQueueHandle, &record, 0) == pdPASS;
}
void flushQueue()
{
ESP_LOGD(kLoggingTag, "Entering flushQueue()");
xTaskNotify(queueTaskHandle, 0, eNoAction);
}
uint getQueueSize()
{
return uxQueueMessagesWaiting(recordQueueHandle);
}
void queueTask(void *taskParameter)
{
ESP_LOGD(kLoggingTag, "Entering queueTask()");
while (true)
{
xTaskNotifyWait(0, 0, nullptr, pdMS_TO_TICKS(flushEveryMillis));
queueTaskFlush();
}
vTaskDelete(nullptr);
}
void queueTaskFlush()
{
ESP_LOGD(kLoggingTag, "Entering queueTaskFlush()");
auto messagesWaiting = uxQueueMessagesWaiting(recordQueueHandle);
if (!messagesWaiting)
{
ESP_LOGI(kLoggingTag, "Queue is empty, nothing to flush");
return;
}
ESP_LOGI(kLoggingTag, "Flushing queue");
if (!aquireDbMutex(flushEveryMillis * 10, __func__))
return;
bool fileExists;
dbFile = nullptr;
int res;
struct dblog_write_context ctx;
ctx.buf = dbBuffer;
ctx.col_count = Record::ColumnCount;
ctx.page_size_exp = dbPageSizeExp;
ctx.read_fn = read_fn_wctx;
ctx.write_fn = write_fn;
ctx.flush_fn = flush_fn;
Record record;
fileExists = dbFileExists();
dbFile = fopen(dbFilename, !fileExists ? "w+b" : "r+b");
if (!dbFile)
{
ESP_LOGE(kLoggingTag, "Error opening/creating database file '%s'", dbFilename);
goto exit;
}
res = !fileExists ? dblog_write_init(&ctx) : dblog_init_for_append(&ctx);
if (res)
{
ESP_LOGE(kLoggingTag, "dblog_write_init or dblog_init_for_append returned error %d", res);
goto exit;
}
while (xQueueReceive(recordQueueHandle, &record, 0) == pdTRUE)
{
ESP_LOGI(kLoggingTag, "Adding record with timestamp %ld", record.timestamp);
res = record.AppendToDb(&ctx);
if (res)
{
ESP_LOGE(kLoggingTag, "AppendToDb returned error %d", res);
goto exit;
}
}
ESP_LOGI(kLoggingTag, "Finalizing database");
res = dblog_finalize(&ctx);
if (res)
{
ESP_LOGE(kLoggingTag, "dblog_finalize returned error %d", res);
goto exit;
}
ESP_LOGI(kLoggingTag, " Done flushing queue and adding records");
exit:
if (dbFile)
fclose(dbFile);
ESP_LOGV(kLoggingTag, "Mutex: xSemaphoreGive");
releaseDbMutex(__func__);
}
bool recoverDb()
{
ESP_LOGI(kLoggingTag, "Checking / recovering database");
if (!aquireDbMutex(1000 * 10, __func__))
return false;
bool result = false;
dbFile = nullptr;
int res;
struct dblog_write_context ctx;
ctx.buf = dbBuffer;
ctx.read_fn = read_fn_wctx;
ctx.write_fn = write_fn;
ctx.flush_fn = flush_fn;
int32_t page_size;
if (!dbFileExists())
{
result = true;
goto exit;
}
dbFile = fopen(dbFilename, "r+b");
if (!dbFile)
{
ESP_LOGE(kLoggingTag, "Error opening database file '%s'", dbFilename);
goto exit;
}
page_size = dblog_read_page_size(&ctx);
ESP_LOGI(kLoggingTag, "Database page size: %d", page_size);
if (page_size < 512)
{
ESP_LOGE(kLoggingTag, "Page size invalid");
goto exit;
}
res = dblog_recover(&ctx);
if (res)
{
ESP_LOGE(kLoggingTag, "dblog_recover returned error %d", res);
goto exit;
}
result = true;
ESP_LOGI(kLoggingTag, " Done recovering database");
exit:
if (dbFile)
fclose(dbFile);
releaseDbMutex(__func__);
dbAccessible = result;
return result;
}
void resetDb()
{
ESP_LOGI(kLoggingTag, "Resetting / removing database");
if (dbFileExists())
{
auto removeResult = SPIFFS.remove(dbFilenameWithoutFs);
ESP_LOGI(kLoggingTag, "Remove result: %d", removeResult);
}
ESP_LOGI(kLoggingTag, "Clearing queue");
xQueueReset(recordQueueHandle);
dbAccessible = true;
}
bool dbFileExists(bool noLog)
{
ESP_LOGD(kLoggingTag, "Entering dbFileExists()");
bool fileExists = SPIFFS.exists(dbFilenameWithoutFs);
if (!noLog)
ESP_LOGI(kLoggingTag, "Database file exists: %d", fileExists);
else
ESP_LOGD(kLoggingTag, "Database file exists: %d", fileExists);
return fileExists;
}
void dataResponseHandler(AsyncWebServerRequest *request)
{
ESP_LOGD(kLoggingTag, "Entering respondWithData()");
bool sentResponse = false;
time_t recordsFrom = 0, recordsUntil = 0;
int res;
AsyncWebServerResponse *response;
if (auto param = request->getParam("from"))
recordsFrom = param->value().toInt();
if (auto param = request->getParam("until"))
recordsUntil = param->value().toInt();
if (!recordsFrom)
{
time(&recordsFrom);
recordsFrom -= 60 * 60;
}
ESP_LOGI(kLoggingTag, "Responding with data: recordsFrom = %ld, recordsUntil = %ld", recordsFrom, recordsUntil);
if (!aquireDbMutex(1000 * 10, __func__))
{
request->send(500);
return;
}
if (!dbFileExists())
{
request->send(200, "application/json", "[]");
releaseDbMutex("respondWithData empty");
sentResponse = true;
goto exitHandler;
}
memset(&dataReadDbContext, 0, sizeof(dataReadDbContext));
dataReadDbContext.buf = dbBuffer;
dataReadDbContext.read_fn = read_fn_rctx;
dbFile = nullptr;
dbFile = fopen(dbFilename, "rb");
if (!dbFile)
{
ESP_LOGE(kLoggingTag, "Error opening database file '%s'", dbFilename);
goto exitHandler;
}
res = dblog_read_init(&dataReadDbContext);
if (res)
{
ESP_LOGE(kLoggingTag, "dblog_read_init returned error %d", res);
goto exitHandler;
}
ESP_LOGI(kLoggingTag, "Page size: %d, last data page: %d", (int32_t)1 << dataReadDbContext.page_size_exp, dataReadDbContext.last_leaf_page);
res = dblog_bin_srch_row_by_val(&dataReadDbContext, 0, DBLOG_TYPE_INT, &recordsFrom, sizeof(recordsFrom), 0);
if (res)
{
ESP_LOGE(kLoggingTag, "dblog_bin_srch_row_by_val returned error %d", res);
goto exitHandler;
}
dataReadLastTimestamp = 0;
dataReadFinalize = false;
response = request->beginChunkedResponse("application/json", [recordsUntil](uint8_t *buffer, size_t maxLen, size_t index) -> size_t {
ESP_LOGV(kLoggingTag, "ChunkedResponse: recordsUntil = %ld, dataReadFinalize = %d, dataReadLastTimestamp = %ld, buffer = %p, maxLen = %d, index = %d",
recordsUntil, dataReadFinalize, dataReadLastTimestamp, buffer, maxLen, index);
uint8_t *workBuffer = buffer;
size_t lengthRemaining = maxLen;
size_t bytesWritten;
if (dataReadFinalize)
return 0;
bool isFirstRecord = index == 0;
while (lengthRemaining > Record::JsonMaxChars)
{
*workBuffer = isFirstRecord ? '[' : ',';
workBuffer += 1;
lengthRemaining -= 1;
if (!isFirstRecord)
{
if ((recordsUntil && dataReadLastTimestamp >= recordsUntil) || dblog_read_next_row(&dataReadDbContext))
{
*(workBuffer - 1) = ']';
dataReadFinalize = true;
goto exitResponse;
}
}
auto rowBuffer = rowToBuffer(&dataReadDbContext, recordsUntil ? &dataReadLastTimestamp : nullptr);
rowBuffer.getBytes(workBuffer, lengthRemaining);
bytesWritten = rowBuffer.length();
workBuffer += bytesWritten;
lengthRemaining -= bytesWritten;
isFirstRecord = false;
}
// completely fill remaining buffer as otherwise we might get called again with a maxLen of 3 or so instead of with a new large buffer...
for (bytesWritten = 0; bytesWritten < lengthRemaining; bytesWritten++)
workBuffer[bytesWritten] = ' ';
workBuffer += bytesWritten;
lengthRemaining -= bytesWritten;
exitResponse:
bytesWritten = maxLen - lengthRemaining;
ESP_LOGV(kLoggingTag, "ChunkedResponse: bytesWritten = %d, buffer = '%.*s', lengthRemaining = %d, dataReadFinalize = %d, dataReadLastTimestamp = %ld",
bytesWritten, bytesWritten, buffer, lengthRemaining, dataReadFinalize, dataReadLastTimestamp);
return bytesWritten;
});
request->onDisconnect([]() {
fclose(dbFile);
releaseDbMutex("respondWithData onDisconnect");
});
request->send(response);
sentResponse = true;
exitHandler:
if (!sentResponse)
{
request->send(500);
if (dbFile)
fclose(dbFile);
releaseDbMutex("respondWithData !sentResponse");
}
}
String rowToBuffer(struct dblog_read_context *ctx, time_t *timestamp)
{
String buffer((char *)nullptr);
for (int i = 0; addColumnToBuffer(ctx, i, buffer); i++)
;
if (timestamp)
{
uint32_t col_type;
*timestamp = (time_t)read_int32((const byte *)dblog_read_col_val(ctx, 0, &col_type));
}
return buffer;
}
bool addColumnToBuffer(struct dblog_read_context *ctx, int col_idx, String &buffer)
{
uint32_t col_type;
const byte *col_val = (const byte *)dblog_read_col_val(ctx, col_idx, &col_type);
if (!col_val)
{
if (col_idx == 0)
ESP_LOGE(kLoggingTag, "Error reading column value");
else
buffer.concat(']');
return false;
}
buffer.concat(col_idx == 0 ? '[' : ',');
switch (col_type)
{
case 0:
buffer.concat("null");
break;
case 1:
buffer.concat(*((int8_t *)col_val));
break;
case 2:
buffer.concat(read_int16(col_val));
break;
case 4:
buffer.concat(read_int32(col_val));
break;
case 6:
{
char buf[2 + 3 * sizeof(int64_t)];
sprintf(buf, "%lld", read_int64(col_val));
buffer.concat(buf);
}
break;
case 7:
buffer.concat(read_double(col_val));
break;
default:
{
if (col_type < 12)
{
ESP_LOGE(kLoggingTag, "Unuspported column type %d", col_type);
return false;
}
uint32_t col_len = dblog_derive_data_len(col_type);
buffer.reserve(buffer.length() + (col_type % 2 ? col_len : col_len * 2));
for (int j = 0; j < col_len; j++)
{
if (col_type % 2)
buffer.concat((char)col_val[j]);
else
{
buffer.concat(String(col_val[j], HEX));
}
}
}
}
return true;
}
inline int16_t read_int16(const byte *ptr)
{
return __bswap_16(*(int16_t *)ptr);
}
inline int32_t read_int32(const byte *ptr)
{
return __bswap_32(*(int32_t *)ptr);
}
inline int64_t read_int64(const byte *ptr)
{
return __bswap_64(*(int64_t *)ptr);
}
inline double read_double(const byte *ptr)
{
int64_t doubleAsInt = read_int64(ptr);
// avoid strict-aliasing rules warning
double *doublePtr = (double *)&doubleAsInt;
return *doublePtr;
}
inline bool aquireDbMutex(uint blockMillis, const char *owner)
{
ESP_LOGD(kLoggingTag, "Mutex: xSemaphoreTake for owner '%s'", owner);
if (xSemaphoreTake(dbMutex, pdMS_TO_TICKS(blockMillis)) == pdFALSE)
{
ESP_LOGE(kLoggingTag, "Timeout aquiring database mutex for owner '%s'", owner);
return false;
}
ESP_LOGD(kLoggingTag, " Mutex: got it for owner '%s'", owner);
return true;
}
inline void releaseDbMutex(const char *owner)
{
ESP_LOGD(kLoggingTag, "Mutex: xSemaphoreGive from owner '%s'", owner);
xSemaphoreGive(dbMutex);
}
int32_t read_fn_rctx(struct dblog_read_context *ctx, void *buf, uint32_t pos, size_t len)
{
if (fseek(dbFile, pos, SEEK_SET))
return DBLOG_RES_SEEK_ERR;
size_t ret = fread(buf, 1, len, dbFile);
if (ret != len)
return DBLOG_RES_READ_ERR;
return ret;
}
int32_t read_fn_wctx(struct dblog_write_context *ctx, void *buf, uint32_t pos, size_t len)
{
if (fseek(dbFile, pos, SEEK_SET))
return DBLOG_RES_SEEK_ERR;
size_t ret = fread(buf, 1, len, dbFile);
if (ret != len)
return DBLOG_RES_READ_ERR;
return ret;
}
int32_t write_fn(struct dblog_write_context *ctx, void *buf, uint32_t pos, size_t len)
{
if (fseek(dbFile, pos, SEEK_SET))
return DBLOG_RES_SEEK_ERR;
size_t ret = fwrite(buf, 1, len, dbFile);
if (ret != len)
return DBLOG_RES_ERR;
if (fflush(dbFile))
return DBLOG_RES_FLUSH_ERR;
fsync(fileno(dbFile));
return ret;
}
int flush_fn(struct dblog_write_context *ctx)
{
return DBLOG_RES_OK;
}