WLED/wled00/presets.cpp

81 wiersze
2.3 KiB
C++
Czysty Zwykły widok Historia

2020-11-06 21:12:48 +00:00
#include "wled.h"
/*
* Methods to handle saving and loading presets to/from the filesystem
*/
bool applyPreset(byte index)
{
2021-01-08 23:35:48 +00:00
if (index == 0) return false;
2020-11-06 21:12:48 +00:00
if (fileDoc) {
errorFlag = readObjectFromFileUsingId("/presets.json", index, fileDoc) ? ERR_NONE : ERR_FS_PLOAD;
2020-11-08 23:50:13 +00:00
JsonObject fdo = fileDoc->as<JsonObject>();
if (fdo["ps"] == index) fdo.remove("ps"); //remove load request for same presets to prevent recursive crash
2020-11-06 21:12:48 +00:00
#ifdef WLED_DEBUG_FS
serializeJson(*fileDoc, Serial);
#endif
2021-06-10 00:52:20 +00:00
deserializeState(fdo, index);
2020-11-06 21:12:48 +00:00
} else {
DEBUGFS_PRINTLN(F("Make read buf"));
DynamicJsonDocument fDoc(JSON_BUFFER_SIZE);
errorFlag = readObjectFromFileUsingId("/presets.json", index, &fDoc) ? ERR_NONE : ERR_FS_PLOAD;
JsonObject fdo = fDoc.as<JsonObject>();
2020-11-08 23:50:13 +00:00
if (fdo["ps"] == index) fdo.remove("ps");
2020-11-06 21:12:48 +00:00
#ifdef WLED_DEBUG_FS
serializeJson(fDoc, Serial);
#endif
2021-06-10 00:52:20 +00:00
deserializeState(fdo, index);
2020-11-06 21:12:48 +00:00
}
if (!errorFlag) {
currentPreset = index;
return true;
}
return false;
}
2021-06-10 00:52:20 +00:00
//persist=false is not currently honored
2020-11-06 21:12:48 +00:00
void savePreset(byte index, bool persist, const char* pname, JsonObject saveobj)
{
2020-11-11 22:48:14 +00:00
if (index == 0 || index > 250) return;
2020-11-29 21:07:12 +00:00
bool docAlloc = (fileDoc != nullptr);
2020-11-06 21:12:48 +00:00
JsonObject sObj = saveobj;
if (!docAlloc) {
DEBUGFS_PRINTLN(F("Allocating saving buffer"));
2020-11-29 21:07:12 +00:00
DynamicJsonDocument lDoc(JSON_BUFFER_SIZE);
sObj = lDoc.to<JsonObject>();
2020-11-06 21:12:48 +00:00
if (pname) sObj["n"] = pname;
2020-11-29 21:07:12 +00:00
DEBUGFS_PRINTLN(F("Save current state"));
serializeState(sObj, true);
currentPreset = index;
writeObjectToFileUsingId("/presets.json", index, &lDoc);
} else { //from JSON API
2020-11-06 21:12:48 +00:00
DEBUGFS_PRINTLN(F("Reuse recv buffer"));
sObj.remove(F("psave"));
sObj.remove(F("v"));
2020-11-29 21:07:12 +00:00
if (!sObj["o"]) {
DEBUGFS_PRINTLN(F("Save current state"));
serializeState(sObj, true, sObj["ib"], sObj["sb"]);
currentPreset = index;
}
sObj.remove("o");
sObj.remove("ib");
sObj.remove("sb");
sObj.remove(F("error"));
sObj.remove(F("time"));
2020-11-06 21:12:48 +00:00
2020-11-29 21:07:12 +00:00
writeObjectToFileUsingId("/presets.json", index, fileDoc);
}
2021-05-25 07:59:19 +00:00
presetsModifiedTime = toki.second(); //unix time
2020-11-06 21:12:48 +00:00
updateFSInfo();
}
void deletePreset(byte index) {
StaticJsonDocument<24> empty;
writeObjectToFileUsingId("/presets.json", index, &empty);
2021-05-25 07:59:19 +00:00
presetsModifiedTime = toki.second(); //unix time
2020-11-06 21:12:48 +00:00
updateFSInfo();
}