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 | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 9 | #include <boost/mpl/for_each.hpp> |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 10 | #include <iostream> |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 11 | #include "datastore_access.hpp" |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 12 | #include "interpreter.hpp" |
Václav Kubernát | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 13 | #include "utils.hpp" |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 14 | |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 15 | void Interpreter::operator()(const commit_&) const |
| 16 | { |
| 17 | m_datastore.commitChanges(); |
| 18 | } |
| 19 | |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 20 | void Interpreter::operator()(const discard_&) const |
| 21 | { |
| 22 | m_datastore.discardChanges(); |
| 23 | } |
| 24 | |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 25 | void Interpreter::operator()(const set_& set) const |
| 26 | { |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 27 | auto data = set.m_data; |
| 28 | |
| 29 | // If the user didn't supply a module prefix for identityref, we need to add it ourselves |
| 30 | if (data.type() == typeid(identityRef_)) { |
| 31 | auto identityRef = boost::get<identityRef_>(data); |
| 32 | if (!identityRef.m_prefix) { |
| 33 | identityRef.m_prefix = set.m_path.m_nodes.front().m_prefix.value(); |
| 34 | data = identityRef; |
| 35 | } |
| 36 | } |
| 37 | m_datastore.setLeaf(absolutePathFromCommand(set), data); |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 38 | } |
| 39 | |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 40 | void Interpreter::operator()(const get_& get) const |
| 41 | { |
| 42 | auto items = m_datastore.getItems(absolutePathFromCommand(get)); |
| 43 | for (auto it : items) { |
Václav Kubernát | 9b72599 | 2019-05-29 16:39:47 +0200 | [diff] [blame] | 44 | std::cout << it.first << " = " << leafDataToString(it.second) << std::endl; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 48 | void Interpreter::operator()(const cd_& cd) const |
| 49 | { |
| 50 | m_parser.changeNode(cd.m_path); |
| 51 | } |
| 52 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 53 | void Interpreter::operator()(const create_& create) const |
| 54 | { |
Václav Kubernát | be22862 | 2019-05-23 14:44:12 +0200 | [diff] [blame] | 55 | if (create.m_path.m_nodes.back().m_suffix.type() == typeid(listElement_)) |
| 56 | m_datastore.createListInstance(absolutePathFromCommand(create)); |
| 57 | else |
| 58 | m_datastore.createPresenceContainer(absolutePathFromCommand(create)); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void Interpreter::operator()(const delete_& delet) const |
| 62 | { |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 63 | if (delet.m_path.m_nodes.back().m_suffix.type() == typeid(container_)) |
| 64 | m_datastore.deletePresenceContainer(absolutePathFromCommand(delet)); |
| 65 | else |
| 66 | m_datastore.deleteListInstance(absolutePathFromCommand(delet)); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 67 | } |
| 68 | |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 69 | void Interpreter::operator()(const ls_& ls) const |
| 70 | { |
| 71 | std::cout << "Possible nodes:" << std::endl; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 72 | auto recursion{Recursion::NonRecursive}; |
| 73 | for (auto it : ls.m_options) { |
| 74 | if (it == LsOption::Recursive) |
| 75 | recursion = Recursion::Recursive; |
| 76 | } |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 77 | |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 78 | for (const auto& it : m_parser.availableNodes(ls.m_path, recursion)) |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 79 | std::cout << it << std::endl; |
| 80 | } |
| 81 | |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 82 | struct commandLongHelpVisitor : boost::static_visitor<const char*> { |
| 83 | template <typename T> |
| 84 | auto constexpr operator()(boost::type<T>) const |
| 85 | { |
| 86 | return T::longHelp; |
| 87 | } |
| 88 | }; |
| 89 | |
| 90 | struct commandShortHelpVisitor : boost::static_visitor<const char*> { |
| 91 | template <typename T> |
| 92 | auto constexpr operator()(boost::type<T>) const |
| 93 | { |
| 94 | return T::shortHelp; |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | void Interpreter::operator()(const help_& help) const |
| 99 | { |
| 100 | if (help.m_cmd) |
| 101 | std::cout << boost::apply_visitor(commandLongHelpVisitor(), help.m_cmd.get()) << std::endl; |
| 102 | else |
| 103 | boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([](auto cmd) { |
| 104 | std::cout << commandShortHelpVisitor()(cmd) << std::endl; |
| 105 | }); |
| 106 | } |
| 107 | |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 108 | template <typename T> |
| 109 | std::string Interpreter::absolutePathFromCommand(const T& command) const |
| 110 | { |
Václav Kubernát | 37171a1 | 2018-08-31 17:01:48 +0200 | [diff] [blame] | 111 | if (command.m_path.m_scope == Scope::Absolute) |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 112 | return pathToDataString(command.m_path, Prefixes::WhenNeeded); |
Václav Kubernát | 37171a1 | 2018-08-31 17:01:48 +0200 | [diff] [blame] | 113 | else |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 114 | return joinPaths(m_parser.currentNode(), pathToDataString(command.m_path, Prefixes::WhenNeeded)); |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 117 | struct pathToStringVisitor : boost::static_visitor<std::string> { |
| 118 | std::string operator()(const schemaPath_& path) const |
| 119 | { |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 120 | return pathToSchemaString(path, Prefixes::WhenNeeded); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 121 | } |
| 122 | std::string operator()(const dataPath_& path) const |
| 123 | { |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 124 | return pathToDataString(path, Prefixes::WhenNeeded); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 125 | } |
| 126 | }; |
| 127 | |
| 128 | struct getPathScopeVisitor : boost::static_visitor<Scope> { |
| 129 | template <typename T> |
| 130 | Scope operator()(const T& path) const |
| 131 | { |
| 132 | return path.m_scope; |
| 133 | } |
| 134 | }; |
| 135 | |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 136 | std::string Interpreter::absolutePathFromCommand(const get_& get) const |
| 137 | { |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 138 | using namespace std::string_literals; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 139 | if (!get.m_path) { |
| 140 | return m_parser.currentNode(); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | const auto path = *get.m_path; |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 144 | if (path.type() == typeid(module_)) { |
| 145 | return "/"s + boost::get<module_>(path).m_name + ":*"; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 146 | } else { |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 147 | auto actualPath = boost::get<boost::variant<dataPath_, schemaPath_>>(path); |
| 148 | std::string pathString = boost::apply_visitor(pathToStringVisitor(), actualPath); |
| 149 | auto pathScope{boost::apply_visitor(getPathScopeVisitor(), actualPath)}; |
| 150 | |
| 151 | if (pathScope == Scope::Absolute) { |
Václav Kubernát | 82684cf | 2020-01-06 13:30:37 +0100 | [diff] [blame] | 152 | return pathString; |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 153 | } else { |
| 154 | return joinPaths(m_parser.currentNode(), pathString); |
| 155 | } |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
Václav Kubernát | 6415b82 | 2018-08-22 17:40:01 +0200 | [diff] [blame] | 159 | Interpreter::Interpreter(Parser& parser, DatastoreAccess& datastore) |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 160 | : m_parser(parser) |
| 161 | , m_datastore(datastore) |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 162 | { |
| 163 | } |