Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 1 | /* |
| 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át | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 10 | #include <sstream> |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 11 | #include "ast_path.hpp" |
| 12 | #include "utils.hpp" |
| 13 | |
| 14 | container_::container_(const std::string& name) |
| 15 | : m_name(name) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | bool container_::operator==(const container_& b) const |
| 20 | { |
| 21 | return this->m_name == b.m_name; |
| 22 | } |
| 23 | |
| 24 | leaf_::leaf_(const std::string& name) |
| 25 | : m_name(name) |
| 26 | { |
| 27 | } |
| 28 | |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 29 | bool leafListElement_::operator==(const leafListElement_& b) const |
| 30 | { |
| 31 | return this->m_name == b.m_name && this->m_value == b.m_value; |
| 32 | } |
| 33 | |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 34 | leafList_::leafList_(const std::string& name) |
| 35 | : m_name(name) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | bool leafList_::operator==(const leafList_& b) const |
| 40 | { |
| 41 | return this->m_name == b.m_name; |
| 42 | } |
| 43 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 44 | bool module_::operator==(const module_& b) const |
| 45 | { |
| 46 | return this->m_name == b.m_name; |
| 47 | } |
| 48 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 49 | dataNode_::dataNode_() = default; |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 50 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 51 | dataNode_::dataNode_(decltype(m_suffix) node) |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 52 | : m_suffix(node) |
| 53 | { |
| 54 | } |
| 55 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 56 | dataNode_::dataNode_(module_ module, decltype(m_suffix) node) |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 57 | : m_prefix(module) |
| 58 | , m_suffix(node) |
| 59 | { |
| 60 | } |
| 61 | |
Václav Kubernát | 2db124c | 2020-05-28 21:58:36 +0200 | [diff] [blame] | 62 | dataNode_::dataNode_(boost::optional<module_> module, decltype(m_suffix) node) |
| 63 | : m_prefix(module) |
| 64 | , m_suffix(node) |
| 65 | { |
| 66 | |
| 67 | } |
| 68 | |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 69 | schemaNode_::schemaNode_(decltype(m_suffix) node) |
| 70 | : m_suffix(node) |
| 71 | { |
| 72 | } |
| 73 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 74 | schemaNode_::schemaNode_(module_ module, decltype(m_suffix) node) |
| 75 | : m_prefix(module) |
| 76 | , m_suffix(node) |
| 77 | { |
| 78 | } |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 79 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 80 | schemaNode_::schemaNode_() = default; |
| 81 | |
| 82 | bool schemaNode_::operator==(const schemaNode_& b) const |
| 83 | { |
| 84 | return this->m_suffix == b.m_suffix && this->m_prefix == b.m_prefix; |
| 85 | } |
| 86 | |
| 87 | bool dataNode_::operator==(const dataNode_& b) const |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 88 | { |
| 89 | return this->m_suffix == b.m_suffix && this->m_prefix == b.m_prefix; |
| 90 | } |
| 91 | |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 92 | bool leaf_::operator==(const leaf_& b) const |
| 93 | { |
| 94 | return this->m_name == b.m_name; |
| 95 | } |
| 96 | |
Václav Kubernát | c15fe82 | 2020-06-04 11:28:39 +0200 | [diff] [blame] | 97 | listElement_::listElement_(const std::string& listName, const ListInstance& keys) |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 98 | : m_name(listName) |
| 99 | , m_keys(keys) |
| 100 | { |
| 101 | } |
| 102 | |
| 103 | bool listElement_::operator==(const listElement_& b) const |
| 104 | { |
| 105 | return (this->m_name == b.m_name && this->m_keys == b.m_keys); |
| 106 | } |
| 107 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 108 | bool list_::operator==(const list_& b) const |
| 109 | { |
| 110 | return (this->m_name == b.m_name); |
| 111 | } |
| 112 | |
| 113 | list_::list_(const std::string& listName) |
| 114 | : m_name(listName) |
| 115 | { |
| 116 | } |
| 117 | |
Jan Kundrát | 97376f7 | 2020-06-15 19:26:31 +0200 | [diff] [blame^] | 118 | namespace { |
| 119 | template <typename T, typename U> |
| 120 | auto findFirstOf(const std::vector<U>& nodes) |
| 121 | { |
| 122 | return std::find_if(nodes.begin(), nodes.end(), [](const auto& e) { |
| 123 | return std::holds_alternative<T>(e.m_suffix); |
| 124 | }); |
| 125 | } |
| 126 | |
| 127 | template <typename T> |
| 128 | void validatePathNodes(const std::vector<T>& nodes) |
| 129 | { |
| 130 | static_assert(std::is_same<T, dataNode_>() || std::is_same<T, schemaNode_>()); |
| 131 | |
| 132 | if (nodes.empty()) { |
| 133 | // there are default ctors, so it makes sense to specify the same thing via explicit args and not fail |
| 134 | return; |
| 135 | } |
| 136 | |
| 137 | if (auto firstLeaf = findFirstOf<leaf_>(nodes); |
| 138 | firstLeaf != nodes.end() && firstLeaf != nodes.end() - 1) { |
| 139 | throw std::logic_error{"Cannot put any extra nodes after a leaf"}; |
| 140 | } |
| 141 | |
| 142 | if (auto firstLeafList = findFirstOf<leafList_>(nodes); |
| 143 | firstLeafList != nodes.end() && firstLeafList != nodes.end() - 1) { |
| 144 | throw std::logic_error{"Cannot put any extra nodes after a leaf-list"}; |
| 145 | } |
| 146 | |
| 147 | if constexpr (std::is_same<T, dataNode_>()) { |
| 148 | if (auto firstLeafListElements = findFirstOf<leafListElement_>(nodes); |
| 149 | firstLeafListElements != nodes.end() && firstLeafListElements != nodes.end() - 1) { |
| 150 | throw std::logic_error{"Cannot put any extra nodes after a leaf-list with element specification"}; |
| 151 | } |
| 152 | if (auto firstList = findFirstOf<list_>(nodes); |
| 153 | firstList != nodes.end() && firstList != nodes.end() - 1) { |
| 154 | throw std::logic_error{ |
| 155 | "A list with no key specification can be present only as a last item in a dataPath. Did you mean to use a schemaPath?" |
| 156 | }; |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | schemaPath_::schemaPath_() |
| 163 | { |
| 164 | } |
| 165 | |
| 166 | schemaPath_::schemaPath_(const Scope scope, const std::vector<schemaNode_>& nodes, const TrailingSlash trailingSlash) |
| 167 | : m_scope(scope) |
| 168 | , m_nodes(nodes) |
| 169 | , m_trailingSlash(trailingSlash) |
| 170 | { |
| 171 | validatePathNodes(m_nodes); |
| 172 | } |
| 173 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 174 | bool schemaPath_::operator==(const schemaPath_& b) const |
| 175 | { |
| 176 | if (this->m_nodes.size() != b.m_nodes.size()) |
| 177 | return false; |
| 178 | return this->m_nodes == b.m_nodes; |
| 179 | } |
| 180 | |
Jan Kundrát | 97376f7 | 2020-06-15 19:26:31 +0200 | [diff] [blame^] | 181 | dataPath_::dataPath_() |
| 182 | { |
| 183 | } |
| 184 | |
| 185 | dataPath_::dataPath_(const Scope scope, const std::vector<dataNode_>& nodes, const TrailingSlash trailingSlash) |
| 186 | : m_scope(scope) |
| 187 | , m_nodes(nodes) |
| 188 | , m_trailingSlash(trailingSlash) |
| 189 | { |
| 190 | validatePathNodes(m_nodes); |
| 191 | } |
| 192 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 193 | bool dataPath_::operator==(const dataPath_& b) const |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 194 | { |
| 195 | if (this->m_nodes.size() != b.m_nodes.size()) |
| 196 | return false; |
| 197 | return this->m_nodes == b.m_nodes; |
| 198 | } |
| 199 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 200 | struct nodeToSchemaStringVisitor { |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 201 | std::string operator()(const nodeup_&) const |
| 202 | { |
| 203 | return ".."; |
| 204 | } |
| 205 | template <class T> |
| 206 | std::string operator()(const T& node) const |
| 207 | { |
| 208 | return node.m_name; |
| 209 | } |
| 210 | }; |
Jan Kundrát | 2a8f433 | 2018-09-14 17:05:31 +0200 | [diff] [blame] | 211 | |
| 212 | std::string escapeListKeyString(const std::string& what) |
| 213 | { |
| 214 | // If we have both single and double quote, then we're screwed, but that "shouldn't happen" |
| 215 | // in <= YANG 1.1 due to limitations in XPath 1.0. |
| 216 | if (what.find('\'') != std::string::npos) { |
| 217 | return '\"' + what + '\"'; |
| 218 | } else { |
| 219 | return '\'' + what + '\''; |
| 220 | } |
| 221 | } |
| 222 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 223 | struct nodeToDataStringVisitor { |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 224 | std::string operator()(const listElement_& node) const |
| 225 | { |
| 226 | std::ostringstream res; |
| 227 | res << node.m_name + "["; |
| 228 | std::transform(node.m_keys.begin(), node.m_keys.end(), |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 229 | std::experimental::make_ostream_joiner(res, "]["), |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 230 | [] (const auto& it) { return it.first + "=" + escapeListKeyString(leafDataToString(it.second)); }); |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 231 | res << "]"; |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 232 | return res.str(); |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 233 | } |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 234 | std::string operator()(const leafListElement_& node) const |
| 235 | { |
| 236 | return node.m_name + "[.=" + escapeListKeyString(leafDataToString(node.m_value)) + "]"; |
| 237 | } |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 238 | std::string operator()(const nodeup_&) const |
| 239 | { |
| 240 | return ".."; |
| 241 | } |
| 242 | template <class T> |
| 243 | std::string operator()(const T& node) const |
| 244 | { |
| 245 | return node.m_name; |
| 246 | } |
| 247 | }; |
| 248 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 249 | std::string nodeToSchemaString(decltype(dataPath_::m_nodes)::value_type node) |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 250 | { |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 251 | return std::visit(nodeToSchemaStringVisitor(), node.m_suffix); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 252 | } |
| 253 | |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 254 | std::string pathToDataString(const dataPath_& path, Prefixes prefixes) |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 255 | { |
| 256 | std::string res; |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 257 | if (path.m_scope == Scope::Absolute) { |
| 258 | res = "/"; |
| 259 | } |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 260 | |
Václav Kubernát | ef08574 | 2020-04-21 09:28:44 +0200 | [diff] [blame] | 261 | for (const auto& it : path.m_nodes) { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 262 | if (it.m_prefix) |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 263 | res = joinPaths(res, it.m_prefix.value().m_name + ":" + std::visit(nodeToDataStringVisitor(), it.m_suffix)); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 264 | else |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 265 | res = joinPaths(res, (prefixes == Prefixes::Always ? path.m_nodes.at(0).m_prefix.value().m_name + ":" : "") + std::visit(nodeToDataStringVisitor(), it.m_suffix)); |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 266 | } |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 267 | |
| 268 | return res; |
| 269 | } |
| 270 | |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 271 | std::string pathToSchemaString(const schemaPath_& path, Prefixes prefixes) |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 272 | { |
| 273 | std::string res; |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 274 | if (path.m_scope == Scope::Absolute) { |
| 275 | res = "/"; |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Václav Kubernát | ef08574 | 2020-04-21 09:28:44 +0200 | [diff] [blame] | 278 | for (const auto& it : path.m_nodes) { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 279 | if (it.m_prefix) |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 280 | res = joinPaths(res, it.m_prefix.value().m_name + ":" + std::visit(nodeToSchemaStringVisitor(), it.m_suffix)); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 281 | else |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 282 | res = joinPaths(res, (prefixes == Prefixes::Always ? path.m_nodes.at(0).m_prefix.value().m_name + ":" : "") + std::visit(nodeToSchemaStringVisitor(), it.m_suffix)); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 283 | } |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 284 | return res; |
| 285 | } |
| 286 | |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 287 | std::string pathToSchemaString(const dataPath_& path, Prefixes prefixes) |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 288 | { |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 289 | return pathToSchemaString(dataPathToSchemaPath(path), prefixes); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 290 | } |
| 291 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 292 | struct dataSuffixToSchemaSuffix { |
| 293 | using ReturnType = decltype(schemaNode_::m_suffix); |
| 294 | ReturnType operator()(const listElement_& listElement) const |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 295 | { |
| 296 | return list_{listElement.m_name}; |
| 297 | } |
| 298 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 299 | ReturnType operator()(const leafListElement_& leafListElement) const |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 300 | { |
| 301 | return leafList_{leafListElement.m_name}; |
| 302 | } |
| 303 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 304 | template <typename T> |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 305 | ReturnType operator()(const T& suffix) const |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 306 | { |
| 307 | return suffix; |
| 308 | } |
| 309 | }; |
| 310 | |
| 311 | schemaNode_ dataNodeToSchemaNode(const dataNode_& node) |
| 312 | { |
| 313 | schemaNode_ res; |
| 314 | res.m_prefix = node.m_prefix; |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 315 | res.m_suffix = std::visit(dataSuffixToSchemaSuffix(), node.m_suffix); |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 316 | return res; |
| 317 | } |
| 318 | |
| 319 | schemaPath_ dataPathToSchemaPath(const dataPath_& path) |
| 320 | { |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 321 | schemaPath_ res{path.m_scope, {}}; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 322 | |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 323 | std::transform(path.m_nodes.begin(), path.m_nodes.end(), |
| 324 | std::back_inserter(res.m_nodes), |
| 325 | [](const dataNode_& node) { return dataNodeToSchemaNode(node); }); |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 326 | |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 327 | return res; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 328 | } |
Václav Kubernát | e781b90 | 2020-06-15 14:35:11 +0200 | [diff] [blame] | 329 | |
| 330 | namespace { |
| 331 | template <typename NodeType> |
| 332 | void impl_pushFragment(std::vector<NodeType>& where, const NodeType& what) |
| 333 | { |
| 334 | if (std::holds_alternative<nodeup_>(what.m_suffix)) { |
| 335 | if (!where.empty()) { // Allow going up, when already at root |
| 336 | where.pop_back(); |
| 337 | } |
| 338 | } else { |
| 339 | where.push_back(what); |
| 340 | } |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | void schemaPath_::pushFragment(const schemaNode_& fragment) |
| 345 | { |
| 346 | impl_pushFragment(m_nodes, fragment); |
Jan Kundrát | 97376f7 | 2020-06-15 19:26:31 +0200 | [diff] [blame^] | 347 | validatePathNodes(m_nodes); |
Václav Kubernát | e781b90 | 2020-06-15 14:35:11 +0200 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | void dataPath_::pushFragment(const dataNode_& fragment) |
| 351 | { |
| 352 | impl_pushFragment(m_nodes, fragment); |
Jan Kundrát | 97376f7 | 2020-06-15 19:26:31 +0200 | [diff] [blame^] | 353 | validatePathNodes(m_nodes); |
Václav Kubernát | e781b90 | 2020-06-15 14:35:11 +0200 | [diff] [blame] | 354 | } |