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