Files
IoTManager/src/modules/virtual/Loging/Loging.cpp

342 lines
12 KiB
C++
Raw Normal View History

#include "Global.h"
#include "classes/IoTItem.h"
#include "ESPConfiguration.h"
#include "NTP.h"
void *getAPI_Date(String params);
class Loging : public IoTItem {
private:
String logid;
String id;
2022-09-08 00:27:38 +02:00
String filesList = "";
int _publishType = -2;
int _wsNum = -1;
int points;
int keepdays;
IoTItem *dateIoTItem;
String prevDate = "";
bool firstTimeDate = true;
unsigned long interval;
public:
Loging(String parameters) : IoTItem(parameters) {
jsonRead(parameters, F("logid"), logid);
jsonRead(parameters, F("id"), id);
jsonRead(parameters, F("points"), points);
if (points > 300) {
2022-08-30 00:23:06 +02:00
points = 300;
SerialPrint("E", F("Loging"), "'" + id + "' user set more points than allowed, value reset to 300");
}
jsonRead(parameters, F("int"), interval);
2022-09-08 19:21:28 +02:00
interval = interval * 1000 * 60; //приводим к милисекундам
jsonRead(parameters, F("keepdays"), keepdays);
//создадим экземпляр класса даты
2022-09-15 14:02:24 +02:00
dateIoTItem = (IoTItem *)getAPI_Date("{\"id\": \"" + id + "-date\",\"int\":\"20\",\"subtype\":\"date\"}");
IoTItems.push_back(dateIoTItem);
2022-09-11 10:39:51 +02:00
SerialPrint("E", F("Loging"), "created date instance " + id);
}
void doByInterval() {
//если объект логгирования не был создан
if (!isItemExist(logid)) {
SerialPrint("E", F("Loging"), "'" + id + "' loging object not exist, return");
return;
}
String value = getItemValue(logid);
//если значение логгирования пустое
if (value == "") {
SerialPrint("E", F("Loging"), "'" + id + "' loging value is empty, return");
return;
}
//если время не было получено из интернета
if (!isTimeSynch) {
SerialPrint("E", F("Loging"), "'" + id + "' Сant loging - time not synchronized, return");
return;
}
regEvent(value, F("Loging"));
String logData;
2022-09-23 02:24:50 +02:00
jsonWriteInt(logData, "x", unixTime);
jsonWriteFloat(logData, "y1", value.toFloat());
//прочитаем путь к файлу последнего сохранения
2022-08-27 01:24:59 +02:00
String filePath = readDataDB(id);
//если данные о файле отсутствуют, создадим новый
2022-08-30 00:23:06 +02:00
if (filePath == "failed" || filePath == "") {
SerialPrint("E", F("Loging"), "'" + id + "' file path not found, start create new file");
createNewFileWithData(logData);
2022-08-27 01:32:31 +02:00
return;
} else {
//если файл все же есть но был создан не сегодня, то создаем сегодняшний
if (getTodayDateDotFormated() != getDateDotFormatedFromUnix(getFileUnixLocalTime(filePath))) {
SerialPrint("E", F("Loging"), "'" + id + "' file too old, start create new file");
createNewFileWithData(logData);
return;
}
}
//считаем количество строк и определяем размер файла
size_t size = 0;
int lines = countJsonObj(filePath, size);
SerialPrint("i", F("Loging"), "'" + id + "' " + "lines = " + String(lines) + ", size = " + String(size));
//если количество строк до заданной величины и дата не менялась
if (lines <= points && !hasDayChanged()) {
//просто добавим в существующий файл новые данные
addNewDataToExistingFile(filePath, logData);
//если больше или поменялась дата то создадим следующий файл
} else {
createNewFileWithData(logData);
}
2022-09-15 14:02:24 +02:00
//запускаем процедуру удаления старых файлов если память переполняется
deleteLastFile();
}
void createNewFileWithData(String &logData) {
logData = logData + ",";
2022-09-08 00:27:38 +02:00
String path = "/lg/" + id + "/" + String(unixTimeShort) + ".txt"; //создадим путь вида /lg/id/133256622333.txt
//создадим пустой файл
if (writeEmptyFile(path) != "sucсess") {
SerialPrint("E", F("Loging"), "'" + id + "' file writing error, return");
return;
}
//запишем в него данные
if (addFile(path, logData) != "sucсess") {
SerialPrint("E", F("Loging"), "'" + id + "' data writing error, return");
return;
}
//запишем путь к нему в базу данных
if (saveDataDB(id, path) != "sucсess") {
SerialPrint("E", F("Loging"), "'" + id + "' db file writing error, return");
return;
}
2022-08-30 00:23:06 +02:00
SerialPrint("i", F("Loging"), "'" + id + "' file created http://" + WiFi.localIP().toString() + path);
}
2022-08-30 00:23:06 +02:00
void addNewDataToExistingFile(String &path, String &logData) {
logData = logData + ",";
if (addFile(path, logData) != "sucсess") {
SerialPrint("i", F("Loging"), "'" + id + "' file writing error, return");
return;
};
2022-08-30 00:23:06 +02:00
SerialPrint("i", F("Loging"), "'" + id + "' loging in file http://" + WiFi.localIP().toString() + path);
}
bool hasDayChanged() {
bool changed = false;
String currentDate = getTodayDateDotFormated();
if (!firstTimeDate) {
if (prevDate != currentDate) {
changed = true;
SerialPrint("i", F("NTP"), "Change day event");
2022-09-26 16:19:44 +02:00
#if defined(ESP8266)
FileFS.gc();
#endif
#if defined(ESP32)
#endif
}
}
firstTimeDate = false;
prevDate = currentDate;
return changed;
}
void publishValue() {
String dir = "/lg/" + id;
2022-09-14 18:06:40 +02:00
filesList = getFilesList(dir);
SerialPrint("i", F("Loging"), "file list: " + filesList);
2022-09-08 00:27:38 +02:00
int f = 0;
2022-08-30 00:23:06 +02:00
bool noData = true;
2022-09-08 00:27:38 +02:00
while (filesList.length()) {
2022-09-23 02:24:50 +02:00
String path = selectToMarker(filesList, ";");
2022-09-08 00:27:38 +02:00
2022-09-23 02:24:50 +02:00
path = "/lg/" + id + path;
2022-09-08 00:27:38 +02:00
f++;
2022-09-08 19:21:28 +02:00
2022-09-23 02:24:50 +02:00
unsigned long fileUnixTimeLocal = getFileUnixLocalTime(path);
2022-09-08 00:27:38 +02:00
unsigned long reqUnixTime = strDateToUnix(getItemValue(id + "-date"));
if (fileUnixTimeLocal > reqUnixTime && fileUnixTimeLocal < reqUnixTime + 86400) {
noData = false;
2022-09-23 02:24:50 +02:00
if (_publishType == TO_MQTT) {
publishChartFileToMqtt(path, id, calculateMaxCount());
2022-09-23 02:24:50 +02:00
} else if (_publishType == TO_WS) {
publishChartToWs(path, _wsNum, 1000, calculateMaxCount(), id);
2022-09-23 02:24:50 +02:00
} else if (_publishType == TO_MQTT_WS) {
publishChartFileToMqtt(path, id, calculateMaxCount());
publishChartToWs(path, _wsNum, 1000, calculateMaxCount(), id);
}
2022-09-23 02:24:50 +02:00
SerialPrint("i", F("Loging"), String(f) + ") " + path + ", " + getDateTimeDotFormatedFromUnix(fileUnixTimeLocal) + ", sent");
2022-09-08 19:21:28 +02:00
} else {
2022-09-23 02:24:50 +02:00
SerialPrint("i", F("Loging"), String(f) + ") " + path + ", " + getDateTimeDotFormatedFromUnix(fileUnixTimeLocal) + ", skipped");
2022-09-08 19:21:28 +02:00
}
2022-09-08 00:27:38 +02:00
filesList = deleteBeforeDelimiter(filesList, ";");
2022-08-30 00:23:06 +02:00
}
//если данных нет отправляем пустой грфик
if (noData) {
clearValue();
}
2022-09-08 00:27:38 +02:00
}
void clearHistory() {
String dir = "/lg/" + id;
cleanDirectory(dir);
2022-09-08 00:27:38 +02:00
}
2022-09-15 14:02:24 +02:00
void deleteLastFile() {
IoTFSInfo tmp = getFSInfo();
SerialPrint("i", "Loging", String(tmp.freePer) + " % free flash remaining");
if (tmp.freePer <= 20.00) {
String dir = "/lg/" + id;
2022-09-15 14:02:24 +02:00
filesList = getFilesList(dir);
int i = 0;
while (filesList.length()) {
2022-09-23 02:24:50 +02:00
String path = selectToMarker(filesList, ";");
path = dir + path;
2022-09-15 14:02:24 +02:00
i++;
if (i == 1) {
2022-09-23 02:24:50 +02:00
removeFile(path);
SerialPrint("!", "Loging", String(i) + ") " + path + " => oldest files been deleted");
2022-09-15 14:02:24 +02:00
return;
}
filesList = deleteBeforeDelimiter(filesList, ";");
}
}
}
2022-09-26 16:19:44 +02:00
void clearValue() {
String topic = mqttRootDevice + "/" + id;
String json = "{\"maxCount\":0,\"topic\":\"" + topic + "\",\"status\":[]}";
String pk = "/string/chart.json|" + json;
//standWebSocket.broadcastTXT(pk);
2022-09-26 16:19:44 +02:00
}
void publishChartToWsSinglePoint(String value) {
String topic = mqttRootDevice + "/" + id;
String json = "{\"maxCount\":" + String(calculateMaxCount()) + ",\"topic\":\"" + topic + "\",\"status\":[{\"x\":" + String(unixTime) + ",\"y1\":" + value + "}]}";
String pk = "/string/chart.json|" + json;
//standWebSocket.broadcastTXT(pk);
2022-09-26 16:19:44 +02:00
}
2022-09-23 02:24:50 +02:00
void setPublishDestination(int publishType, int wsNum = -1) {
_publishType = publishType;
_wsNum = wsNum;
}
String getValue() {
return "";
}
void loop() {
if (enableDoByInt) {
currentMillis = millis();
difference = currentMillis - prevMillis;
if (difference >= interval) {
prevMillis = millis();
this->doByInterval();
}
}
}
void regEvent(String value, String consoleInfo = "") {
String userDate = getItemValue(id + "-date");
String currentDate = getTodayDateDotFormated();
//отправляем в график данные только когда выбран сегодняшний день
if (userDate == currentDate) {
// generateEvent(_id, value);
// publishStatusMqtt(_id, value);
2022-09-26 16:19:44 +02:00
publishChartToWsSinglePoint(value);
// SerialPrint("i", "Sensor " + consoleInfo, "'" + _id + "' data: " + value + "'");
}
}
//просто максимальное количество точек
2022-09-08 00:27:38 +02:00
int calculateMaxCount() {
return 86400;
2022-09-08 00:27:38 +02:00
}
//путь вида: /lg/log/1231231.txt
unsigned long getFileUnixLocalTime(String path) {
return gmtTimeToLocal(selectToMarkerLast(deleteToMarkerLast(path, "."), "/").toInt() + START_DATETIME);
}
2022-09-08 00:27:38 +02:00
};
void *getAPI_Loging(String subtype, String param) {
if (subtype == F("Loging")) {
return new Loging(param);
} else {
return nullptr;
}
}
class Date : public IoTItem {
private:
bool firstTime = true;
public:
String id;
Date(String parameters) : IoTItem(parameters) {
jsonRead(parameters, F("id"), id);
value.isDecimal = false;
}
void setValue(String valStr) {
value.valS = valStr;
setValue(value);
}
void setValue(IoTValue Value) {
value = Value;
regEvent(value.valS, "");
//отправка данных при изменении даты
for (std::list<IoTItem *>::iterator it = IoTItems.begin(); it != IoTItems.end(); ++it) {
if ((*it)->getSubtype() == "Loging") {
if ((*it)->getID() == selectToMarker(id, "-")) {
2022-09-23 02:24:50 +02:00
(*it)->setPublishDestination(TO_MQTT_WS);
(*it)->clearValue();
(*it)->publishValue();
}
}
}
}
void setTodayDate() {
setValue(getTodayDateDotFormated());
SerialPrint("E", F("Loging"), "today date set " + getTodayDateDotFormated());
}
void doByInterval() {
if (isTimeSynch) {
if (firstTime) {
setTodayDate();
firstTime = false;
}
}
}
};
void *getAPI_Date(String param) {
return new Date(param);
}