1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-11-16 20:19:13 +01:00
doorlockd-mirror/doorlockd/lib/util.h

29 lines
591 B
C
Raw Normal View History

2015-05-11 00:18:22 +02:00
#ifndef UTIL_H
#define UTIL_H
#include <algorithm>
2015-09-25 00:13:30 +02:00
#include <exception>
2015-05-11 00:18:22 +02:00
#include <json/json.h>
template <typename T>
T getJson(const Json::Value &root, const std::string &key);
template <typename T>
static T getJsonOrFail(const Json::Value &root, const std::string &key)
2015-05-11 00:18:22 +02:00
{
if (root.isObject() == false)
2015-05-11 00:18:22 +02:00
{
throw std::runtime_error("Invalid Json Object");
}
if (root.isMember(key) == false) {
throw std::runtime_error("Json key \"" + key + "\" not existing");
2015-05-11 00:18:22 +02:00
}
return getJson<T>(root, key);
}
std::string randHexString(unsigned int len);
2015-05-11 00:18:22 +02:00
#endif