blob: 3a486a592c8412edf64a9305ac75efe8b3dfb96e [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>
Václav Kubernát509ce652019-05-29 19:46:44 +020010#include <sstream>
Václav Kubernát24df80e2018-06-06 15:18:03 +020011#include "ast_path.hpp"
12#include "utils.hpp"
13
14container_::container_(const std::string& name)
15 : m_name(name)
16{
17}
18
19bool container_::operator==(const container_& b) const
20{
21 return this->m_name == b.m_name;
22}
23
24leaf_::leaf_(const std::string& name)
25 : m_name(name)
26{
27}
28
Václav Kubernát744f57f2018-06-29 22:46:26 +020029bool module_::operator==(const module_& b) const
30{
31 return this->m_name == b.m_name;
32}
33
Václav Kubernát2eaceb82018-10-08 19:56:30 +020034dataNode_::dataNode_() = default;
Václav Kubernát744f57f2018-06-29 22:46:26 +020035
Václav Kubernát2eaceb82018-10-08 19:56:30 +020036dataNode_::dataNode_(decltype(m_suffix) node)
Václav Kubernát744f57f2018-06-29 22:46:26 +020037 : m_suffix(node)
38{
39}
40
Václav Kubernát2eaceb82018-10-08 19:56:30 +020041dataNode_::dataNode_(module_ module, decltype(m_suffix) node)
Václav Kubernát744f57f2018-06-29 22:46:26 +020042 : m_prefix(module)
43 , m_suffix(node)
44{
45}
46
Václav Kubernát5c75b252018-10-10 18:33:47 +020047schemaNode_::schemaNode_(decltype(m_suffix) node)
48 : m_suffix(node)
49{
50}
51
Václav Kubernát2eaceb82018-10-08 19:56:30 +020052schemaNode_::schemaNode_(module_ module, decltype(m_suffix) node)
53 : m_prefix(module)
54 , m_suffix(node)
55{
56}
Václav Kubernát744f57f2018-06-29 22:46:26 +020057
Václav Kubernát2eaceb82018-10-08 19:56:30 +020058schemaNode_::schemaNode_() = default;
59
60bool schemaNode_::operator==(const schemaNode_& b) const
61{
62 return this->m_suffix == b.m_suffix && this->m_prefix == b.m_prefix;
63}
64
65bool dataNode_::operator==(const dataNode_& b) const
Václav Kubernát744f57f2018-06-29 22:46:26 +020066{
67 return this->m_suffix == b.m_suffix && this->m_prefix == b.m_prefix;
68}
69
Václav Kubernát24df80e2018-06-06 15:18:03 +020070bool leaf_::operator==(const leaf_& b) const
71{
72 return this->m_name == b.m_name;
73}
74
75listElement_::listElement_(const std::string& listName, const std::map<std::string, std::string>& keys)
76 : m_name(listName)
77 , m_keys(keys)
78{
79}
80
81bool listElement_::operator==(const listElement_& b) const
82{
83 return (this->m_name == b.m_name && this->m_keys == b.m_keys);
84}
85
Václav Kubernát2eaceb82018-10-08 19:56:30 +020086bool list_::operator==(const list_& b) const
87{
88 return (this->m_name == b.m_name);
89}
90
91list_::list_(const std::string& listName)
92 : m_name(listName)
93{
94}
95
96bool schemaPath_::operator==(const schemaPath_& b) const
97{
98 if (this->m_nodes.size() != b.m_nodes.size())
99 return false;
100 return this->m_nodes == b.m_nodes;
101}
102
103bool dataPath_::operator==(const dataPath_& b) const
Václav Kubernát24df80e2018-06-06 15:18:03 +0200104{
105 if (this->m_nodes.size() != b.m_nodes.size())
106 return false;
107 return this->m_nodes == b.m_nodes;
108}
109
110
Václav Kubernát744f57f2018-06-29 22:46:26 +0200111struct nodeToSchemaStringVisitor : public boost::static_visitor<std::string> {
Václav Kubernát24df80e2018-06-06 15:18:03 +0200112 std::string operator()(const nodeup_&) const
113 {
114 return "..";
115 }
116 template <class T>
117 std::string operator()(const T& node) const
118 {
119 return node.m_name;
120 }
121};
Jan Kundrát2a8f4332018-09-14 17:05:31 +0200122
123std::string escapeListKeyString(const std::string& what)
124{
125 // If we have both single and double quote, then we're screwed, but that "shouldn't happen"
126 // in <= YANG 1.1 due to limitations in XPath 1.0.
127 if (what.find('\'') != std::string::npos) {
128 return '\"' + what + '\"';
129 } else {
130 return '\'' + what + '\'';
131 }
132}
133
Václav Kubernát744f57f2018-06-29 22:46:26 +0200134struct nodeToDataStringVisitor : public boost::static_visitor<std::string> {
Václav Kubernát24df80e2018-06-06 15:18:03 +0200135 std::string operator()(const listElement_& node) const
136 {
137 std::ostringstream res;
138 res << node.m_name + "[";
139 std::transform(node.m_keys.begin(), node.m_keys.end(),
Václav Kubernát5395e712019-12-03 18:24:33 +0100140 std::experimental::make_ostream_joiner(res, "]["),
Jan Kundrát2a8f4332018-09-14 17:05:31 +0200141 [] (const auto& it) { return it.first + "=" + escapeListKeyString(it.second); });
Václav Kubernát24df80e2018-06-06 15:18:03 +0200142 res << "]";
Václav Kubernátebca2552018-06-08 19:06:02 +0200143 return res.str();
Václav Kubernát24df80e2018-06-06 15:18:03 +0200144 }
145 std::string operator()(const nodeup_&) const
146 {
147 return "..";
148 }
149 template <class T>
150 std::string operator()(const T& node) const
151 {
152 return node.m_name;
153 }
154};
155
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200156std::string nodeToSchemaString(decltype(dataPath_::m_nodes)::value_type node)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200157{
158 return boost::apply_visitor(nodeToSchemaStringVisitor(), node.m_suffix);
159}
160
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200161std::string pathToDataString(const dataPath_& path)
Václav Kubernát24df80e2018-06-06 15:18:03 +0200162{
163 std::string res;
Václav Kubernát5395e712019-12-03 18:24:33 +0100164 if (path.m_scope == Scope::Absolute) {
165 res = "/";
166 }
Václav Kubernát24df80e2018-06-06 15:18:03 +0200167 for (const auto it : path.m_nodes)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200168 if (it.m_prefix)
169 res = joinPaths(res, it.m_prefix.value().m_name + ":" + boost::apply_visitor(nodeToDataStringVisitor(), it.m_suffix));
170 else
171 res = joinPaths(res, boost::apply_visitor(nodeToDataStringVisitor(), it.m_suffix));
172
173 return res;
174}
175
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200176std::string pathToAbsoluteSchemaString(const dataPath_& path)
177{
178 return pathToAbsoluteSchemaString(dataPathToSchemaPath(path));
179}
180
181std::string pathToAbsoluteSchemaString(const schemaPath_& path)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200182{
183 std::string res;
184 if (path.m_nodes.empty()) {
185 return "";
186 }
187
188 auto topLevelModule = path.m_nodes.at(0).m_prefix.value();
189 for (const auto it : path.m_nodes) {
190 if (it.m_prefix)
191 res = joinPaths(res, it.m_prefix.value().m_name + ":" + boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
192 else
193 res = joinPaths(res, topLevelModule.m_name + ":" + boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
194 }
Václav Kubernát24df80e2018-06-06 15:18:03 +0200195 return res;
196}
197
Václav Kubernát5c75b252018-10-10 18:33:47 +0200198std::string pathToSchemaString(const schemaPath_& path)
Václav Kubernát24df80e2018-06-06 15:18:03 +0200199{
200 std::string res;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200201 for (const auto it : path.m_nodes) {
202 if (it.m_prefix)
203 res = joinPaths(res, it.m_prefix.value().m_name + ":" + boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
204 else
205 res = joinPaths(res, boost::apply_visitor(nodeToSchemaStringVisitor(), it.m_suffix));
206 }
Václav Kubernát24df80e2018-06-06 15:18:03 +0200207 return res;
208}
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200209
Václav Kubernát5c75b252018-10-10 18:33:47 +0200210std::string pathToSchemaString(const dataPath_& path)
211{
212 return pathToSchemaString(dataPathToSchemaPath(path));
213}
214
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200215struct dataSuffixToSchemaSuffix : boost::static_visitor<decltype(schemaNode_::m_suffix)> {
216 auto operator()(const listElement_& listElement) const
217 {
218 return list_{listElement.m_name};
219 }
220
221 template <typename T>
222 auto operator()(const T& suffix) const
223 {
224 return suffix;
225 }
226};
227
228schemaNode_ dataNodeToSchemaNode(const dataNode_& node)
229{
230 schemaNode_ res;
231 res.m_prefix = node.m_prefix;
232 res.m_suffix = boost::apply_visitor(dataSuffixToSchemaSuffix(), node.m_suffix);
233 return res;
234}
235
236schemaPath_ dataPathToSchemaPath(const dataPath_& path)
237{
Václav Kubernátbf083ec2019-02-19 13:58:09 +0100238 schemaPath_ res{path.m_scope, {}};
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200239
Václav Kubernátbf083ec2019-02-19 13:58:09 +0100240 std::transform(path.m_nodes.begin(), path.m_nodes.end(),
241 std::back_inserter(res.m_nodes),
242 [](const dataNode_& node) { return dataNodeToSchemaNode(node); });
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200243
Václav Kubernátbf083ec2019-02-19 13:58:09 +0100244 return res;
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200245}