2018-08-13 19:23:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <json/json.h>
|
|
|
|
|
|
|
|
namespace waybar::util {
|
|
|
|
|
2018-08-18 15:54:20 +00:00
|
|
|
struct JsonParser {
|
2019-04-18 15:52:00 +00:00
|
|
|
JsonParser() : reader_(builder_.newCharReader()) {}
|
2018-08-18 15:54:20 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
const Json::Value parse(const std::string& data) const {
|
2018-08-18 15:54:20 +00:00
|
|
|
Json::Value root;
|
|
|
|
std::string err;
|
2019-04-18 15:43:16 +00:00
|
|
|
if (data.empty()) {
|
|
|
|
return root;
|
|
|
|
}
|
2019-04-18 15:52:00 +00:00
|
|
|
bool res = reader_->parse(data.c_str(), data.c_str() + data.size(), &root, &err);
|
|
|
|
if (!res) throw std::runtime_error(err);
|
2018-08-18 15:54:20 +00:00
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
~JsonParser() = default;
|
2018-08-18 15:54:20 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
private:
|
|
|
|
Json::CharReaderBuilder builder_;
|
2018-08-20 12:50:45 +00:00
|
|
|
std::unique_ptr<Json::CharReader> const reader_;
|
2018-08-18 15:54:20 +00:00
|
|
|
};
|
2018-08-13 19:23:43 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::util
|