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> |
| 10 | #include "ast_path.hpp" |
| 11 | #include "utils.hpp" |
| 12 | |
| 13 | container_::container_(const std::string& name) |
| 14 | : m_name(name) |
| 15 | { |
| 16 | } |
| 17 | |
| 18 | bool container_::operator==(const container_& b) const |
| 19 | { |
| 20 | return this->m_name == b.m_name; |
| 21 | } |
| 22 | |
| 23 | leaf_::leaf_(const std::string& name) |
| 24 | : m_name(name) |
| 25 | { |
| 26 | } |
| 27 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 28 | bool module_::operator==(const module_& b) const |
| 29 | { |
| 30 | return this->m_name == b.m_name; |
| 31 | } |
| 32 | |
| 33 | node_::node_() = default; |
| 34 | |
| 35 | node_::node_(decltype(m_suffix) node) |
| 36 | : m_suffix(node) |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | node_::node_(module_ module, decltype(m_suffix) node) |
| 41 | : m_prefix(module) |
| 42 | , m_suffix(node) |
| 43 | { |
| 44 | } |
| 45 | |
| 46 | |
| 47 | bool 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át | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 52 | bool leaf_::operator==(const leaf_& b) const |
| 53 | { |
| 54 | return this->m_name == b.m_name; |
| 55 | } |
| 56 | |
| 57 | listElement_::listElement_(const std::string& listName, const std::map<std::string, std::string>& keys) |
| 58 | : m_name(listName) |
| 59 | , m_keys(keys) |
| 60 | { |
| 61 | } |
| 62 | |
| 63 | bool listElement_::operator==(const listElement_& b) const |
| 64 | { |
| 65 | return (this->m_name == b.m_name && this->m_keys == b.m_keys); |
| 66 | } |
| 67 | |
| 68 | bool 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át | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 76 | struct nodeToSchemaStringVisitor : public boost::static_visitor<std::string> { |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 77 | 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át | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 87 | struct nodeToDataStringVisitor : public boost::static_visitor<std::string> { |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 88 | 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át | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 96 | return res.str(); |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 97 | } |
| 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át | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 109 | std::string nodeToSchemaString(decltype(path_::m_nodes)::value_type node) |
| 110 | { |
| 111 | return boost::apply_visitor(nodeToSchemaStringVisitor(), node.m_suffix); |
| 112 | } |
| 113 | |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 114 | std::string pathToDataString(const path_& path) |
| 115 | { |
| 116 | std::string res; |
| 117 | for (const auto it : path.m_nodes) |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 118 | 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 | |
| 126 | std::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át | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 140 | return res; |
| 141 | } |
| 142 | |
| 143 | std::string pathToSchemaString(const path_& path) |
| 144 | { |
| 145 | std::string res; |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 146 | 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át | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 152 | return res; |
| 153 | } |