4 #include "serialization.h" 6 #include <yaml-cpp/yaml.h> 8 SerializationTypeError::SerializationTypeError(
const std::string &type_name)
9 : std::runtime_error(
"Type not found: " + type_name),
10 _type_name(type_name) {}
12 void toYAML(
const Variant &v, YAML::Emitter &emitter) {
14 if (type ==
typeid(std::string)) {
15 emitter << v.value<std::string>();
16 }
else if (type ==
typeid(std::vector<Variant>)) {
17 emitter << YAML::BeginSeq;
18 for (
auto &x : v.value<std::vector<Variant>>()) {
21 emitter << YAML::EndSeq;
22 }
else if (type ==
typeid(std::map<std::string, Variant>)) {
23 emitter << YAML::BeginMap;
24 for (
auto &x : v.value<std::map<std::string, Variant>>()) {
25 emitter << YAML::Key << x.first << YAML::Value;
26 toYAML(x.second, emitter);
28 emitter << YAML::EndMap;
30 throw std::runtime_error(std::string() +
"unknown variant type " +
35 void toYAML(
const Variant &v, std::ostream &stream) {
36 YAML::Emitter emitter(stream);
39 std::string toYAML(
const Variant &v) {
40 std::stringstream stream;
45 Variant parseYAML(
const YAML::Node &yaml) {
46 if (yaml.IsSequence()) {
47 std::vector<Variant> ret;
48 for (
auto &y : yaml) {
49 ret.push_back(parseYAML(y));
54 std::map<std::string, Variant> ret;
55 for (
auto &y : yaml) {
56 ret[y.first.as<std::string>()] = parseYAML(y.second);
60 return Variant(yaml.as<std::string>());
63 Variant parseYAML(
const std::string &str) {
64 YAML::Node yaml = YAML::Load(str);
65 return parseYAML(yaml);