blob: 262179243b9ae87295614bc5a7dc79598bb678cf [file] [log] [blame]
Václav Kubernát24df80e2018-06-06 15:18:03 +02001/*
2 * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/
3 * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/
4 *
5 * Written by Václav Kubernát <kubervac@fit.cvut.cz>
6 *
7*/
8
9#include <experimental/iterator>
10#include "ast_path.hpp"
11#include "utils.hpp"
12
13container_::container_(const std::string& name)
14 : m_name(name)
15{
16}
17
18bool container_::operator==(const container_& b) const
19{
20 return this->m_name == b.m_name;
21}
22
23leaf_::leaf_(const std::string& name)
24 : m_name(name)
25{
26}
27
Václav Kubernát744f57f2018-06-29 22:46:26 +020028bool module_::operator==(const module_& b) const
29{
30 return this->m_name == b.m_name;
31}
32
33node_::node_() = default;
34
35node_::node_(decltype(m_suffix) node)
36 : m_suffix(node)
37{
38}
39
40node_::node_(module_ module, decltype(m_suffix) node)
41 : m_prefix(module)
42 , m_suffix(node)
43{
44}
45
46
47bool node_::operator==(const node_& b) const
48{
49 return this->m_suffix == b.m_suffix && this->m_prefix == b.m_prefix;
50}
51
Václav Kubernát24df80e2018-06-06 15:18:03 +020052bool leaf_::operator==(const leaf_& b) const
53{
54 return this->m_name == b.m_name;
55}
56
57listElement_::listElement_(const std::string& listName, const std::map<std::string, std::string>& keys)
58 : m_name(listName)
59 , m_keys(keys)
60{
61}
62
63bool listElement_::operator==(const listElement_& b) const
64{
65 return (this->m_name == b.m_name && this->m_keys == b.m_keys);
66}
67
68bool path_::operator==(const path_& b) const
69{
70 if (this->m_nodes.size() != b.m_nodes.size())
71 return false;
72 return this->m_nodes == b.m_nodes;
73}
74
75
Václav Kubernát744f57f2018-06-29 22:46:26 +020076struct nodeToSchemaStringVisitor : public boost::static_visitor<std::string> {
Václav Kubernát24df80e2018-06-06 15:18:03 +020077 std::string operator()(const nodeup_&) const
78 {
79 return "..";
80 }
81 template <class T>
82 std::string operator()(const T& node) const
83 {
84 return node.m_name;
85 }
86};
Václav Kubernát744f57f2018-06-29 22:46:26 +020087struct nodeToDataStringVisitor : public boost::static_visitor<std::string> {
Václav Kubernát24df80e2018-06-06 15:18:03 +020088 std::string operator()(const listElement_& node) const
89 {
90 std::ostringstream res;
91 res << node.m_name + "[";
92 std::transform(node.m_keys.begin(), node.m_keys.end(),
93 std::experimental::make_ostream_joiner(res, ' '),
94 [] (const auto& it) { return it.first + "=" + it.second; });
95 res << "]";
Václav Kubernátebca2552018-06-08 19:06:02 +020096 return res.str();
Václav Kubernát24df80e2018-06-06 15:18:03 +020097 }
98 std::string operator()(const nodeup_&) const
99 {
100 return "..";
101 }
102 template <class T>
103 std::string operator()(const T& node) const
104 {
105 return node.m_name;
106 }
107};
108
Václav Kubernát744f57f2018-06-29 22:46:26 +0200109std::string nodeToSchemaString(decltype(path_::m_nodes)::value_type node)
110{
111 return boost::apply_visitor(nodeToSchemaStringVisitor(), node.m_suffix);
112}
113
Václav Kubernát24df80e2018-06-06 15:18:03 +0200114std::string pathToDataString(const path_& path)
115{
116 std::string res;
117 for (const auto it : path.m_nodes)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200118 if (it.m_prefix)
119 res = joinPaths(res, it.m_prefix.value().m_name + ":" + boost::apply_visitor(nodeToDataStringVisitor(), it.m_suffix));
120 else
121 res = joinPaths(res, boost::apply_visitor(nodeToDataStringVisitor(), it.m_suffix));
122
123 return res;
124}
125
126std::string pathToAbsoluteSchemaString(const path_& path)
127{
128 std::string res;
129 if (path.m_nodes.empty()) {
130 return "";
131 }
132
133 auto topLevelModule = path.m_nodes.at(0).m_prefix.value();
134 for (const auto it : path.m_nodes) {
135 if (it.m_prefix)
136 res = joinPaths(res, it.m_prefix.value().m_name + ":" + boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
137 else
138 res = joinPaths(res, topLevelModule.m_name + ":" + boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
139 }
Václav Kubernát24df80e2018-06-06 15:18:03 +0200140 return res;
141}
142
143std::string pathToSchemaString(const path_& path)
144{
145 std::string res;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200146 for (const auto it : path.m_nodes) {
147 if (it.m_prefix)
148 res = joinPaths(res, it.m_prefix.value().m_name + ":" + boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
149 else
150 res = joinPaths(res, boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
151 }
Václav Kubernát24df80e2018-06-06 15:18:03 +0200152 return res;
153}