forked from ct-Open-Source/Basecamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Configuration.cpp
208 lines (170 loc) · 4.55 KB
/
Configuration.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
/*
Basecamp - ESP32 library to simplify the basics of IoT projects
Written by Merlin Schumacher ([email protected]) for c't magazin für computer technik (https://www.ct.de)
Licensed under GPLv3. See LICENSE for details.
*/
#include "Configuration.hpp"
Configuration::Configuration()
: _memOnlyConfig( true ),
_jsonFile()
{
}
Configuration::Configuration(String filename)
: _memOnlyConfig( false ),
_jsonFile(std::move(filename))
{
}
void Configuration::setMemOnly() {
_memOnlyConfig = true;
_jsonFile = "";
}
void Configuration::setFileName(const String& filename) {
_memOnlyConfig = false;
_jsonFile = filename;
}
bool Configuration::load() {
DEBUG_PRINTLN("Loading config file ");
if (_memOnlyConfig) {
DEBUG_PRINTLN("Memory-only configuration: Nothing loaded!");
return false;
}
DEBUG_PRINTLN(_jsonFile);
if (!SPIFFS.begin(true)) {
Serial.println("Could not access SPIFFS.");
return false;
}
File configFile = SPIFFS.open(_jsonFile, "r");
if (!configFile || configFile.isDirectory()) {
Serial.println("Failed to open config file");
return false;
}
DynamicJsonBuffer _jsonBuffer;
JsonObject& _jsonData = _jsonBuffer.parseObject(configFile);
if (!_jsonData.success()) {
Serial.println("Failed to parse config file.");
return false;
}
for (const auto& configItem : _jsonData) {
set(configItem.key, configItem.value);
}
configFile.close();
return true;
}
bool Configuration::save() {
DEBUG_PRINTLN("Saving config file");
if (_memOnlyConfig) {
DEBUG_PRINTLN("Memory-only configuration: Nothing saved!");
return false;
}
File configFile = SPIFFS.open(_jsonFile, "w");
if (!configFile) {
Serial.println("Failed to open config file for writing");
return false;
}
if (configuration.empty())
{
Serial.println("Configuration empty");
}
DynamicJsonBuffer _jsonBuffer;
JsonObject &_jsonData = _jsonBuffer.createObject();
for (const auto& x : configuration)
{
_jsonData.set(x.first, String{x.second});
}
_jsonData.printTo(configFile);
#ifdef DEBUG
_jsonData.prettyPrintTo(Serial);
#endif
configFile.close();
_configurationTainted = false;
return true;
}
void Configuration::set(String key, String value) {
std::ostringstream debug;
debug << "Settting " << key.c_str() << " to " << value.c_str() << "(was " << get(key).c_str() << ")";
DEBUG_PRINTLN(debug.str().c_str());
if (get(key) != value) {
_configurationTainted = true;
configuration[key] = value;
} else {
DEBUG_PRINTLN("Cowardly refusing to overwrite existing key with the same value");
}
}
void Configuration::set(ConfigurationKey key, String value)
{
set(getKeyName(key), std::move(value));
}
const String &Configuration::get(String key) const
{
auto found = configuration.find(key);
if (found != configuration.end()) {
std::ostringstream debug;
debug << "Config value for " << key.c_str() << ": " << found->second.c_str();
DEBUG_PRINTLN(debug.str().c_str());
return found->second;
}
// Default: if not set, we just return an empty String. TODO: Throw?
return noResult_;
}
const String &Configuration::get(ConfigurationKey key) const
{
return get(getKeyName(key));
}
// return a char* instead of a Arduino String to maintain backwards compatibility
// with printed examples
[[deprecated("getCString() is deprecated. Use get() instead")]]
char* Configuration::getCString(String key)
{
char *newCString = (char*) malloc(configuration[key].length()+1);
strcpy(newCString,get(key).c_str());
return newCString;
}
bool Configuration::keyExists(const String& key) const
{
return (configuration.find(key) != configuration.end());
}
bool Configuration::keyExists(ConfigurationKey key) const
{
return (configuration.find(getKeyName(key)) != configuration.end());
}
bool Configuration::isKeySet(ConfigurationKey key) const
{
auto found = configuration.find(getKeyName(key));
if (found == configuration.end())
{
return false;
}
return (found->second.length() > 0);
}
void Configuration::reset()
{
configuration.clear();
this->save();
this->load();
}
void Configuration::resetExcept(const std::list<ConfigurationKey> &keysToPreserve)
{
std::map<ConfigurationKey, String> preservedKeys;
for (const auto &key : keysToPreserve) {
if (keyExists(key)) {
// Make a copy of the old value
preservedKeys[key] = get(key);
}
}
configuration.clear();
for (const auto &key : preservedKeys) {
set(key.first, key.second);
}
this->save();
this->load();
}
void Configuration::dump() {
#ifdef DEBUG
for (const auto &p : configuration) {
Serial.print( "configuration[");
Serial.print(p.first);
Serial.print("] = ");
Serial.println(p.second);
}
#endif
}