31 lines
894 B
C++
31 lines
894 B
C++
#ifndef JsonUtils_h
|
|
#define JsonUtils_h
|
|
|
|
#include <Arduino.h>
|
|
#include <utils/ip_utils.h>
|
|
#include <ArduinoJson.h>
|
|
|
|
class JsonUtils {
|
|
public:
|
|
static void readIP(const JsonVariant &root, const String &key, IPAddress &ip, const String &def) {
|
|
IPAddress defaultIp = {};
|
|
if (!defaultIp.fromString(def)) {
|
|
defaultIp = INADDR_NONE;
|
|
}
|
|
readIP(root, key, ip, defaultIp);
|
|
}
|
|
|
|
static void readIP(const JsonVariant &root, const String &key, IPAddress &ip,
|
|
const IPAddress &defaultIp = INADDR_NONE) {
|
|
if (!root[key].is<String>() || !ip.fromString(root[key].as<String>())) {
|
|
ip = defaultIp;
|
|
}
|
|
}
|
|
|
|
static void writeIP(JsonVariant &root, const String &key, const IPAddress &ip) {
|
|
if (IPUtils::isSet(ip)) {
|
|
root[key] = ip.toString();
|
|
}
|
|
}
|
|
};
|
|
#endif // end JsonUtils
|