-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.cpp
247 lines (220 loc) · 6.6 KB
/
config.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
#include "config.h"
namespace {
const std::map<const char*, const char*> defaultValues = {
{ "apiKey.id", "" },
{ "apiKey.key", "" },
{ "apiKey.encoding", "" },
{ "callbackUrl", "https://p.bleskomat.com/u" },
{ "shorten", "true" },
{ "uriSchemaPrefix", "" },
{ "fiatCurrency", "EUR" },
{ "fiatPrecision", "2" },
{ "coinValues", "0.05,0.10,0.20,0.50,1.00,2.00" },
{ "coinSignalPin", "16" },
{ "coinInhibitPin", "21" },
{ "coinBaudRate", "9600" },
{ "buttonPin", "33" },
{ "buttonDelay", "5000" },
{ "buttonDebounce", "200" },
{ "tftRotation", "3" },
{ "locale", "en" },
{ "logLevel", "info" },
{ "spiffsFormatted", "false" }
};
// https://arduinojson.org/v6/api/dynamicjsondocument/
DynamicJsonDocument configJsonDoc(8192);
JsonObject values;// current configuration values
// Using Preferences library as a wrapper to Non-Volatile Storage (flash memory):
// https://github.com/espressif/arduino-esp32/tree/master/libraries/Preferences
// https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/storage/nvs_flash.html
const char* nvs_namespace = "BleskomatConfig";
const bool nvs_readonly = false;
Preferences nvs_prefs;
bool nvs_available = false;
bool setConfigValue(const char* key, const std::string &value) {
if (config::isConfigKey(key)) {
values[key] = value;
return true;
}
return false;
}
std::string getConfigValue(const char* key) {
if (values.containsKey(key)) {
const std::string value = values[key].as<const char*>();
return value;
}
return "";
}
bool initNVS() {
const bool result = nvs_prefs.begin(nvs_namespace, nvs_readonly);
if (result) {
nvs_available = true;
}
return result;
}
void endNVS() {
nvs_prefs.end();
nvs_available = false;
}
// Maximum NVS key length is 15 characters.
const unsigned short nvsKeyMaxLength = 15;
std::string truncateNVSKey(const char* key) {
return std::string(key).substr(0, nvsKeyMaxLength);
}
bool keyExistsInNVS(const char* t_key) {
const std::string key = truncateNVSKey(t_key);
return nvs_prefs.isKey(key.c_str());
}
std::string readValueFromNVS(const char* t_key) {
const std::string key = truncateNVSKey(t_key);
return std::string(nvs_prefs.getString(key.c_str(), "").c_str());
}
void saveKeyValueToNVS(const char* t_key, const std::string &value) {
if (!keyExistsInNVS(t_key) || readValueFromNVS(t_key) != value) {
const std::string key = truncateNVSKey(t_key);
nvs_prefs.putString(key.c_str(), value.c_str());
}
}
bool readFromNVS() {
if (!nvs_available && !initNVS()) {
return false;
}
for (auto const& defaultValue : defaultValues) {
const char* key = defaultValue.first;
if (keyExistsInNVS(key)) {
setConfigValue(key, readValueFromNVS(key));
} else {
setConfigValue(key, defaultValue.second);
}
}
return true;
}
}
namespace config {
void init() {
values = configJsonDoc.createNestedObject("values");
if (initNVS()) {
std::cout << "Non-volatile storage initialized" << std::endl;
if (!readFromNVS()) {
std::cout << "Failed to read configurations from non-volatile storage" << std::endl;
}
} else {
std::cout << "Failed to initialize non-volatile storage" << std::endl;
}
endNVS();
// Hard-coded configuration overrides - for development purposes.
// Uncomment the following lines, as needed, to override config options.
// values["apiKey.id"] = "";
// values["apiKey.key"] = "";
// values["apiKey.encoding"] = "";
// values["callbackUrl"] = "https://p.bleskomat.com/u";
// values["shorten"] = "true";
// values["uriSchemaPrefix"] = "";
// values["fiatCurrency"] = "CZK";
// values["fiatPrecision"] = "0";
// values["coinValues"] = "1.00,2.00,5.00,10.00,20.00,50.00";
// values["coinSignalPin"] = "16";
// values["coinInhibitPin"] = "21";
// values["coinBaudRate"] = "9600";
// values["buttonPin"] = "33";
// values["buttonDelay"] = "2000";
// values["buttonDebounce"] = "200";
// values["tftRotation"] = "2";
// values["locale"] = "en";
// values["logLevel"] = "info";
// values["spiffsFormatted"] = "true";
}
Lnurl::SignerConfig getLnurlSignerConfig() {
struct Lnurl::SignerConfig lnurl;
lnurl.apiKey.id = config::getString("apiKey.id");
lnurl.apiKey.key = config::getString("apiKey.key");
lnurl.apiKey.encoding = config::getString("apiKey.encoding");
lnurl.callbackUrl = config::getString("callbackUrl");
lnurl.shorten = config::getBool("shorten");
return lnurl;
}
std::string getString(const char* key) {
return getConfigValue(key);
}
unsigned int getUnsignedInt(const char* key) {
const std::string value = getConfigValue(key);
if (value != "") {
return (unsigned int) std::stoi(value);
}
return 0;
}
unsigned short getUnsignedShort(const char* key) {
const std::string value = getConfigValue(key);
if (value != "") {
return (unsigned short) std::stoi(value);
}
return 0;
}
float getFloat(const char* key) {
const std::string value = getConfigValue(key);
if (value != "") {
return std::atof(value.c_str());
}
return 0;
}
std::vector<float> getFloatVector(const char* key) {
return util::stringListToFloatVector(getConfigValue(key));
}
bool getBool(const char* key) {
const std::string value = getConfigValue(key);
return (value == "true" || value == "1");
}
bool isConfigKey(const char* key) {
if (values.containsKey(key)) {
return true;
}
const auto pos = defaultValues.find(key);
return pos != defaultValues.end();
}
JsonObject getConfigurations() {
DynamicJsonDocument docConfigs(8192);
for (JsonPair kv : values) {
const char* key = kv.key().c_str();
const std::string value = kv.value().as<const char*>();
if (key == "apiKey.key") {
docConfigs[key] = "XXX";
} else {
docConfigs[key] = value;
}
}
return docConfigs.as<JsonObject>();
}
std::string getConfigurationsAsString() {
std::string str = "Bleskomat configurations:\n";
for (JsonPair kv : values) {
const char* key = kv.key().c_str();
const std::string value = kv.value().as<const char*>();
str += " " + std::string(key) + "=";
if (value != "") {
if (key == "apiKey.key") {
str += "XXX";
} else {
str += value;
}
}
str += "\n";
}
str.pop_back();// remove last line-break character
return str;
}
bool saveConfigurations(const JsonObject &configurations) {
if (!nvs_available && !initNVS()) {
return false;
}
for (JsonPair kv : configurations) {
const char* key = kv.key().c_str();
if (isConfigKey(key)) {
const std::string value = kv.value().as<const char*>();
saveKeyValueToNVS(key, value);
setConfigValue(key, value);
}
}
endNVS();
return true;
}
}