Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +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 | |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 9 | #include <boost/algorithm/string/predicate.hpp> |
Václav Kubernát | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 10 | #include <boost/mpl/for_each.hpp> |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 11 | #include <iostream> |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 12 | #include <sstream> |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 13 | #include "datastore_access.hpp" |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 14 | #include "interpreter.hpp" |
Václav Kubernát | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 15 | #include "utils.hpp" |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 16 | |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 17 | struct pathToStringVisitor : boost::static_visitor<std::string> { |
| 18 | std::string operator()(const module_& path) const |
| 19 | { |
| 20 | using namespace std::string_literals; |
| 21 | return "/"s + boost::get<module_>(path).m_name + ":*"; |
| 22 | } |
| 23 | std::string operator()(const schemaPath_& path) const |
| 24 | { |
| 25 | return pathToSchemaString(path, Prefixes::WhenNeeded); |
| 26 | } |
| 27 | std::string operator()(const dataPath_& path) const |
| 28 | { |
| 29 | return pathToDataString(path, Prefixes::WhenNeeded); |
| 30 | } |
| 31 | }; |
| 32 | |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 33 | namespace { |
| 34 | void printTree(const DatastoreAccess::Tree tree) |
| 35 | { |
| 36 | for (auto it = tree.begin(); it != tree.end(); it++) { |
| 37 | auto [path, value] = *it; |
| 38 | if (value.type() == typeid(special_) && boost::get<special_>(value).m_value == SpecialValue::LeafList) { |
| 39 | auto leafListPrefix = path; |
| 40 | std::cout << path << " = " << leafDataToString(value) << std::endl; |
| 41 | |
| 42 | while (it + 1 != tree.end() && boost::starts_with((it + 1)->first, leafListPrefix)) { |
| 43 | ++it; |
| 44 | std::cout << stripLeafListValueFromPath(it->first) << " = " << leafDataToString(it->second) << std::endl; |
| 45 | } |
| 46 | } else { |
| 47 | std::cout << path << " = " << leafDataToString(value) << std::endl; |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 | |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 53 | template <typename PathType> |
| 54 | std::string pathToString(const PathType& path) |
| 55 | { |
| 56 | return boost::apply_visitor(pathToStringVisitor(), path); |
| 57 | } |
| 58 | |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 59 | void Interpreter::operator()(const commit_&) const |
| 60 | { |
| 61 | m_datastore.commitChanges(); |
| 62 | } |
| 63 | |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 64 | void Interpreter::operator()(const discard_&) const |
| 65 | { |
| 66 | m_datastore.discardChanges(); |
| 67 | } |
| 68 | |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 69 | void Interpreter::operator()(const set_& set) const |
| 70 | { |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 71 | auto data = set.m_data; |
| 72 | |
| 73 | // If the user didn't supply a module prefix for identityref, we need to add it ourselves |
| 74 | if (data.type() == typeid(identityRef_)) { |
| 75 | auto identityRef = boost::get<identityRef_>(data); |
| 76 | if (!identityRef.m_prefix) { |
| 77 | identityRef.m_prefix = set.m_path.m_nodes.front().m_prefix.value(); |
| 78 | data = identityRef; |
| 79 | } |
| 80 | } |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 81 | m_datastore.setLeaf(pathToString(toCanonicalPath(set.m_path)), data); |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 82 | } |
| 83 | |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 84 | void Interpreter::operator()(const get_& get) const |
| 85 | { |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 86 | auto items = m_datastore.getItems(pathToString(toCanonicalPath(get.m_path))); |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 87 | printTree(items); |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 88 | } |
| 89 | |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 90 | void Interpreter::operator()(const cd_& cd) const |
| 91 | { |
| 92 | m_parser.changeNode(cd.m_path); |
| 93 | } |
| 94 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 95 | void Interpreter::operator()(const create_& create) const |
| 96 | { |
Jan Kundrát | cbf288b | 2020-06-18 20:44:39 +0200 | [diff] [blame] | 97 | m_datastore.createItem(pathToString(toCanonicalPath(create.m_path))); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void Interpreter::operator()(const delete_& delet) const |
| 101 | { |
Jan Kundrát | cbf288b | 2020-06-18 20:44:39 +0200 | [diff] [blame] | 102 | m_datastore.deleteItem(pathToString(toCanonicalPath(delet.m_path))); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 103 | } |
| 104 | |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 105 | void Interpreter::operator()(const ls_& ls) const |
| 106 | { |
| 107 | std::cout << "Possible nodes:" << std::endl; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 108 | auto recursion{Recursion::NonRecursive}; |
| 109 | for (auto it : ls.m_options) { |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 110 | if (it == LsOption::Recursive) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 111 | recursion = Recursion::Recursive; |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 112 | } |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 113 | } |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 114 | |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 115 | auto toPrint = m_datastore.schema()->availableNodes(toCanonicalPath(ls.m_path), recursion); |
Václav Kubernát | 8208687 | 2020-04-29 01:09:50 +0200 | [diff] [blame] | 116 | |
Václav Kubernát | 95b0887 | 2020-04-28 01:04:17 +0200 | [diff] [blame] | 117 | for (const auto& it : toPrint) { |
| 118 | std::cout << (it.first ? *it.first + ":" : "" ) + it.second << std::endl; |
| 119 | } |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 120 | } |
| 121 | |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 122 | void Interpreter::operator()(const copy_& copy) const |
| 123 | { |
| 124 | m_datastore.copyConfig(copy.m_source, copy.m_destination); |
| 125 | } |
| 126 | |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 127 | std::string Interpreter::buildTypeInfo(const std::string& path) const |
| 128 | { |
| 129 | std::ostringstream ss; |
| 130 | switch (m_datastore.schema()->nodeType(path)) { |
| 131 | case yang::NodeTypes::Container: |
| 132 | ss << "container"; |
| 133 | break; |
| 134 | case yang::NodeTypes::PresenceContainer: |
| 135 | ss << "presence container"; |
| 136 | break; |
| 137 | case yang::NodeTypes::Leaf: |
| 138 | { |
| 139 | auto leafType = m_datastore.schema()->leafType(path); |
| 140 | auto typedefName = m_datastore.schema()->leafTypeName(path); |
| 141 | std::string baseTypeStr; |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 142 | if (std::holds_alternative<yang::LeafRef>(leafType.m_type)) { |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 143 | ss << "-> "; |
| 144 | ss << m_datastore.schema()->leafrefPath(path) << " "; |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 145 | baseTypeStr = leafDataTypeToString(std::get<yang::LeafRef>(leafType.m_type).m_targetType->m_type); |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 146 | } else { |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 147 | baseTypeStr = leafDataTypeToString(leafType.m_type); |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | if (typedefName) { |
| 151 | ss << *typedefName << " (" << baseTypeStr << ")"; |
| 152 | } else { |
| 153 | ss << baseTypeStr; |
| 154 | } |
| 155 | |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 156 | if (leafType.m_units) { |
| 157 | ss << " [" + *leafType.m_units + "]"; |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | if (m_datastore.schema()->leafIsKey(path)) { |
| 161 | ss << " (key)"; |
| 162 | } |
Václav Kubernát | b1a75c6 | 2020-04-21 15:20:16 +0200 | [diff] [blame] | 163 | |
| 164 | if (auto defaultValue = m_datastore.schema()->defaultValue(path)) { |
| 165 | ss << " default: " << leafDataToString(*defaultValue); |
| 166 | } |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 167 | break; |
| 168 | } |
| 169 | case yang::NodeTypes::List: |
| 170 | ss << "list"; |
| 171 | break; |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 172 | case yang::NodeTypes::Rpc: |
| 173 | ss << "RPC"; |
| 174 | break; |
Václav Kubernát | aaafeae | 2020-05-05 15:41:45 +0200 | [diff] [blame] | 175 | case yang::NodeTypes::Action: |
| 176 | case yang::NodeTypes::AnyXml: |
| 177 | case yang::NodeTypes::LeafList: |
| 178 | case yang::NodeTypes::Notification: |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 179 | throw std::logic_error("describe can't handle the type of " + path); |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 180 | } |
Václav Kubernát | 0599e9f | 2020-04-21 09:51:33 +0200 | [diff] [blame] | 181 | |
| 182 | if (!m_datastore.schema()->isConfig(path)) { |
| 183 | ss << " (ro)"; |
| 184 | } |
| 185 | |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 186 | return ss.str(); |
| 187 | } |
| 188 | |
| 189 | void Interpreter::operator()(const describe_& describe) const |
| 190 | { |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 191 | auto path = pathToString(toCanonicalPath(describe.m_path)); |
Václav Kubernát | a1c4c9e | 2020-04-22 00:37:52 +0200 | [diff] [blame] | 192 | auto status = m_datastore.schema()->status(path); |
| 193 | auto statusStr = status == yang::Status::Deprecated ? " (deprecated)" : |
| 194 | status == yang::Status::Obsolete ? " (obsolete)" : |
| 195 | ""; |
| 196 | |
| 197 | std::cout << path << ": " << buildTypeInfo(path) << statusStr << std::endl; |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 198 | if (auto description = m_datastore.schema()->description(path)) { |
| 199 | std::cout << std::endl << *description << std::endl; |
| 200 | } |
| 201 | } |
| 202 | |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 203 | void Interpreter::operator()(const move_& move) const |
| 204 | { |
| 205 | m_datastore.moveItem(pathToDataString(move.m_source, Prefixes::WhenNeeded), move.m_destination); |
| 206 | } |
| 207 | |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 208 | void Interpreter::operator()(const dump_& dump) const |
| 209 | { |
| 210 | std::cout << m_datastore.dump(dump.m_format) << "\n"; |
| 211 | } |
| 212 | |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame^] | 213 | void Interpreter::operator()(const prepare_& prepare) const |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 214 | { |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame^] | 215 | if (std::holds_alternative<rpcNode_>(prepare.m_path.m_nodes.back().m_suffix)) { |
| 216 | m_datastore.initiateRpc(pathToString(toCanonicalPath(prepare.m_path))); |
| 217 | } else { |
| 218 | m_datastore.initiateAction(pathToString(toCanonicalPath(prepare.m_path))); |
| 219 | } |
| 220 | m_parser.changeNode(prepare.m_path); |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | void Interpreter::operator()(const exec_&) const |
| 224 | { |
| 225 | m_parser.changeNode({Scope::Absolute, {}}); |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame^] | 226 | auto output = m_datastore.execute(); |
| 227 | std::cout << "RPC/action output:\n"; |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 228 | printTree(output); |
| 229 | } |
| 230 | |
| 231 | void Interpreter::operator()(const cancel_&) const |
| 232 | { |
| 233 | m_parser.changeNode({Scope::Absolute, {}}); |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame^] | 234 | m_datastore.cancel(); |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 235 | } |
| 236 | |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 237 | struct commandLongHelpVisitor : boost::static_visitor<const char*> { |
| 238 | template <typename T> |
| 239 | auto constexpr operator()(boost::type<T>) const |
| 240 | { |
| 241 | return T::longHelp; |
| 242 | } |
| 243 | }; |
| 244 | |
| 245 | struct commandShortHelpVisitor : boost::static_visitor<const char*> { |
| 246 | template <typename T> |
| 247 | auto constexpr operator()(boost::type<T>) const |
| 248 | { |
| 249 | return T::shortHelp; |
| 250 | } |
| 251 | }; |
| 252 | |
| 253 | void Interpreter::operator()(const help_& help) const |
| 254 | { |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 255 | if (help.m_cmd) { |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 256 | std::cout << boost::apply_visitor(commandLongHelpVisitor(), help.m_cmd.get()) << std::endl; |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 257 | } else { |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 258 | boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([](auto cmd) { |
| 259 | std::cout << commandShortHelpVisitor()(cmd) << std::endl; |
| 260 | }); |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 261 | } |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 262 | } |
| 263 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 264 | template <typename PathType> |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 265 | boost::variant<dataPath_, schemaPath_, module_> Interpreter::toCanonicalPath(const boost::optional<PathType>& optPath) const |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 266 | { |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 267 | if (!optPath) { |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 268 | return m_parser.currentPath(); |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 269 | } |
| 270 | return toCanonicalPath(*optPath); |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 271 | } |
| 272 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 273 | struct impl_toCanonicalPath { |
| 274 | const dataPath_& m_parserPath; |
| 275 | |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 276 | using ReturnType = boost::variant<dataPath_, schemaPath_, module_>; |
| 277 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 278 | impl_toCanonicalPath(const dataPath_& parserPath) |
| 279 | : m_parserPath(parserPath) |
| 280 | { |
| 281 | } |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 282 | ReturnType operator()(const module_& path) const |
Václav Kubernát | d624799 | 2020-05-27 00:17:56 +0200 | [diff] [blame] | 283 | { |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 284 | return path; |
Václav Kubernát | d624799 | 2020-05-27 00:17:56 +0200 | [diff] [blame] | 285 | } |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 286 | ReturnType operator()(const schemaPath_& path) const |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 287 | { |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 288 | return impl(path); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 289 | } |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 290 | ReturnType operator()(const dataPath_& path) const |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 291 | { |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 292 | return impl(path); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 293 | } |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 294 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 295 | private: |
| 296 | template <typename PathType> |
Václav Kubernát | 59e4ee4 | 2020-07-08 17:32:45 +0200 | [diff] [blame] | 297 | [[nodiscard]] ReturnType impl(const PathType& suffix) const |
Václav Kubernát | d624799 | 2020-05-27 00:17:56 +0200 | [diff] [blame] | 298 | { |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 299 | PathType res = [this] { |
| 300 | if constexpr (std::is_same<PathType, schemaPath_>()) { |
| 301 | return dataPathToSchemaPath(m_parserPath); |
| 302 | } else { |
| 303 | return m_parserPath; |
| 304 | } |
| 305 | }(); |
Václav Kubernát | d624799 | 2020-05-27 00:17:56 +0200 | [diff] [blame] | 306 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 307 | if (suffix.m_scope == Scope::Absolute) { |
Václav Kubernát | 59be0de | 2020-06-15 13:58:45 +0200 | [diff] [blame] | 308 | res = {Scope::Absolute, {}}; |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 309 | } |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 310 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 311 | for (const auto& fragment : suffix.m_nodes) { |
Václav Kubernát | e781b90 | 2020-06-15 14:35:11 +0200 | [diff] [blame] | 312 | res.pushFragment(fragment); |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 313 | } |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 314 | |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 315 | return res; |
| 316 | } |
| 317 | }; |
| 318 | |
| 319 | template <typename PathType> |
Václav Kubernát | 4c3d22f | 2020-06-12 16:05:01 +0200 | [diff] [blame] | 320 | boost::variant<dataPath_, schemaPath_, module_> Interpreter::toCanonicalPath(const PathType& path) const |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 321 | { |
Václav Kubernát | 7e16769 | 2020-06-12 09:53:01 +0200 | [diff] [blame] | 322 | if constexpr (std::is_same<PathType, dataPath_>()) { |
| 323 | return impl_toCanonicalPath(m_parser.currentPath())(path); |
| 324 | } else { |
| 325 | return boost::apply_visitor(impl_toCanonicalPath(m_parser.currentPath()), path); |
| 326 | } |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 327 | } |
| 328 | |
Václav Kubernát | 48e9dfa | 2020-07-08 10:55:12 +0200 | [diff] [blame] | 329 | Interpreter::Interpreter(Parser& parser, ProxyDatastore& datastore) |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 330 | : m_parser(parser) |
| 331 | , m_datastore(datastore) |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 332 | { |
| 333 | } |