Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +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 | #pragma once |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 10 | |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 11 | #include <boost/mpl/for_each.hpp> |
Václav Kubernát | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 12 | #include <boost/spirit/home/x3.hpp> |
| 13 | #include <boost/spirit/home/x3/support/utility/error_reporting.hpp> |
| 14 | |
| 15 | |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 16 | #include "ast_commands.hpp" |
Václav Kubernát | 4294a85 | 2020-02-14 15:07:14 +0100 | [diff] [blame] | 17 | #include "parser_context.hpp" |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 18 | #include "schema.hpp" |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 19 | #include "utils.hpp" |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 20 | namespace x3 = boost::spirit::x3; |
| 21 | |
| 22 | struct parser_context_tag; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 23 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 24 | struct keyValue_class { |
| 25 | template <typename T, typename Iterator, typename Context> |
| 26 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 27 | { |
| 28 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 29 | |
| 30 | if (parserContext.m_tmpListKeys.find(ast.first) != parserContext.m_tmpListKeys.end()) { |
| 31 | _pass(context) = false; |
| 32 | parserContext.m_errorMsg = "Key \"" + ast.first + "\" was entered more than once."; |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 33 | } else { |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 34 | parserContext.m_tmpListKeys.insert({ast.first, ast.second}); |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 35 | } |
| 36 | } |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 37 | |
| 38 | template <typename Iterator, typename Exception, typename Context> |
| 39 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context) |
| 40 | { |
| 41 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 42 | parserContext.m_errorMsg = "Error parsing key values here:"; |
| 43 | return x3::error_handler_result::rethrow; |
| 44 | } |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 45 | }; |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 46 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 47 | struct node_identifier_class { |
| 48 | template <typename T, typename Iterator, typename Context> |
| 49 | void on_success(Iterator const&, Iterator const&, T&, Context const& context) |
| 50 | { |
| 51 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 52 | |
| 53 | if (!parserContext.m_topLevelModulePresent) { |
| 54 | if (parserContext.m_errorMsg.empty()) |
| 55 | parserContext.m_errorMsg = "You have to specify a top level module."; |
| 56 | _pass(context) = false; |
| 57 | } |
| 58 | } |
| 59 | }; |
| 60 | |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 61 | struct key_identifier_class { |
| 62 | template <typename T, typename Iterator, typename Context> |
| 63 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 64 | { |
| 65 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 66 | const Schema& schema = parserContext.m_schema; |
| 67 | schemaPath_ location = parserContext.currentSchemaPath(); |
| 68 | ModuleNodePair list{parserContext.m_curModule, parserContext.m_tmpListName}; |
| 69 | |
| 70 | if (schema.listHasKey(location, list, ast)) { |
| 71 | schemaNode_ listNode; |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 72 | listNode.m_prefix = parserContext.m_curModule.flat_map([] (auto mod) { return boost::optional<module_>{{mod}}; });; |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 73 | listNode.m_suffix = list_{parserContext.m_tmpListName}; |
| 74 | location.m_nodes.push_back(listNode); |
| 75 | parserContext.m_tmpListKeyLeafPath.m_location = location; |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 76 | parserContext.m_tmpListKeyLeafPath.m_node = { parserContext.m_curModule, ast }; |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 77 | } else { |
| 78 | parserContext.m_errorMsg = parserContext.m_tmpListName + " is not indexed by \"" + ast + "\"."; |
| 79 | _pass(context) = false; |
| 80 | } |
| 81 | } |
| 82 | }; |
Václav Kubernát | 89728d8 | 2018-09-13 16:28:28 +0200 | [diff] [blame] | 83 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 84 | struct module_identifier_class; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 85 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 86 | struct listSuffix_class { |
| 87 | template <typename T, typename Iterator, typename Context> |
| 88 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 89 | { |
| 90 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 91 | const Schema& schema = parserContext.m_schema; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 92 | |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 93 | const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName}); |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 94 | std::set<std::string> keysSupplied; |
| 95 | for (const auto& it : ast) |
| 96 | keysSupplied.insert(it.first); |
| 97 | |
| 98 | if (keysNeeded != keysSupplied) { |
| 99 | parserContext.m_errorMsg = "Not enough keys for " + parserContext.m_tmpListName + ". " + |
| 100 | "These keys were not supplied:"; |
| 101 | std::set<std::string> missingKeys; |
| 102 | std::set_difference(keysNeeded.begin(), keysNeeded.end(), |
| 103 | keysSupplied.begin(), keysSupplied.end(), |
| 104 | std::inserter(missingKeys, missingKeys.end())); |
| 105 | |
| 106 | for (const auto& it : missingKeys) |
| 107 | parserContext.m_errorMsg += " " + it; |
| 108 | parserContext.m_errorMsg += "."; |
| 109 | |
| 110 | _pass(context) = false; |
| 111 | } |
| 112 | } |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 113 | |
| 114 | template <typename Iterator, typename Exception, typename Context> |
| 115 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context) |
| 116 | { |
| 117 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 118 | if (parserContext.m_errorMsg.empty()) |
| 119 | parserContext.m_errorMsg = "Expecting ']' here:"; |
| 120 | return x3::error_handler_result::rethrow; |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 121 | } |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 122 | }; |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 123 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 124 | struct module_class { |
| 125 | template <typename T, typename Iterator, typename Context> |
| 126 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 127 | { |
| 128 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 129 | const auto& schema = parserContext.m_schema; |
| 130 | |
Václav Kubernát | 75877de | 2019-11-20 17:43:02 +0100 | [diff] [blame] | 131 | if (schema.isModule(ast.m_name)) { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 132 | parserContext.m_curModule = ast.m_name; |
| 133 | parserContext.m_topLevelModulePresent = true; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 134 | } else { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 135 | parserContext.m_errorMsg = "Invalid module name."; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 136 | _pass(context) = false; |
| 137 | } |
| 138 | } |
| 139 | }; |
| 140 | |
Václav Kubernát | 37171a1 | 2018-08-31 17:01:48 +0200 | [diff] [blame] | 141 | struct absoluteStart_class { |
| 142 | template <typename T, typename Iterator, typename Context> |
| 143 | void on_success(Iterator const&, Iterator const&, T&, Context const& context) |
| 144 | { |
| 145 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 146 | parserContext.clearPath(); |
Václav Kubernát | 37171a1 | 2018-08-31 17:01:48 +0200 | [diff] [blame] | 147 | } |
| 148 | }; |
| 149 | |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 150 | struct discard_class; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 151 | |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 152 | struct ls_class; |
| 153 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 154 | struct cd_class { |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 155 | template <typename Iterator, typename Exception, typename Context> |
| 156 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context) |
| 157 | { |
| 158 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 159 | if (parserContext.m_errorMsg.empty()) |
| 160 | parserContext.m_errorMsg = "Expected " + x.which() + " here:"; |
| 161 | return x3::error_handler_result::rethrow; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 162 | } |
| 163 | }; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 164 | |
Václav Kubernát | 6797df0 | 2019-03-18 20:21:50 +0100 | [diff] [blame] | 165 | struct presenceContainerPath_class { |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 166 | template <typename T, typename Iterator, typename Context> |
| 167 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 168 | { |
| 169 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 170 | const auto& schema = parserContext.m_schema; |
Václav Kubernát | 0d42c51 | 2020-05-20 21:18:39 +0200 | [diff] [blame] | 171 | if (ast.m_nodes.empty()) { |
| 172 | parserContext.m_errorMsg = "This container is not a presence container."; |
| 173 | _pass(context) = false; |
| 174 | return; |
| 175 | } |
| 176 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 177 | try { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 178 | boost::optional<std::string> module; |
Václav Kubernát | 6797df0 | 2019-03-18 20:21:50 +0100 | [diff] [blame] | 179 | if (ast.m_nodes.back().m_prefix) |
| 180 | module = ast.m_nodes.back().m_prefix.value().m_name; |
| 181 | container_ cont = boost::get<container_>(ast.m_nodes.back().m_suffix); |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 182 | auto location = pathWithoutLastNode(parserContext.currentSchemaPath()); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 183 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 184 | if (!schema.isPresenceContainer(location, {module, cont.m_name})) { |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 185 | parserContext.m_errorMsg = "This container is not a presence container."; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 186 | _pass(context) = false; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 187 | } |
| 188 | } catch (boost::bad_get&) { |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 189 | parserContext.m_errorMsg = "This is not a container."; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 190 | _pass(context) = false; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 191 | } |
| 192 | } |
Václav Kubernát | 6797df0 | 2019-03-18 20:21:50 +0100 | [diff] [blame] | 193 | }; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 194 | |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 195 | struct listInstancePath_class { |
| 196 | template <typename T, typename Iterator, typename Context> |
| 197 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 198 | { |
| 199 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 0d42c51 | 2020-05-20 21:18:39 +0200 | [diff] [blame] | 200 | if (ast.m_nodes.empty()) { |
| 201 | parserContext.m_errorMsg = "This is not a list instance."; |
| 202 | _pass(context) = false; |
| 203 | return; |
| 204 | } |
| 205 | |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 206 | if (ast.m_nodes.back().m_suffix.type() != typeid(listElement_)) { |
| 207 | parserContext.m_errorMsg = "This is not a list instance."; |
| 208 | _pass(context) = false; |
| 209 | } |
| 210 | } |
| 211 | }; |
| 212 | |
Václav Kubernát | 8028f94 | 2019-09-25 16:03:23 +0200 | [diff] [blame] | 213 | struct space_separator_class { |
| 214 | template <typename T, typename Iterator, typename Context> |
| 215 | void on_success(Iterator const&, Iterator const&, T&, Context const& context) |
| 216 | { |
| 217 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 218 | parserContext.m_suggestions.clear(); |
Václav Kubernát | 1ed4aa3 | 2020-01-23 13:13:28 +0100 | [diff] [blame] | 219 | parserContext.m_completionIterator = boost::none; |
Václav Kubernát | 8028f94 | 2019-09-25 16:03:23 +0200 | [diff] [blame] | 220 | } |
| 221 | }; |
| 222 | |
Václav Kubernát | 6797df0 | 2019-03-18 20:21:50 +0100 | [diff] [blame] | 223 | struct create_class { |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 224 | template <typename Iterator, typename Exception, typename Context> |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 225 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 226 | { |
| 227 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 228 | if (parserContext.m_errorMsg.empty()) |
| 229 | parserContext.m_errorMsg = "Couldn't parse create/delete command."; |
| 230 | return x3::error_handler_result::rethrow; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 231 | } |
| 232 | }; |
| 233 | |
Václav Kubernát | 6797df0 | 2019-03-18 20:21:50 +0100 | [diff] [blame] | 234 | struct delete_class { |
| 235 | template <typename Iterator, typename Exception, typename Context> |
| 236 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context) |
| 237 | { |
| 238 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 239 | if (parserContext.m_errorMsg.empty()) |
| 240 | parserContext.m_errorMsg = "Couldn't parse create/delete command."; |
| 241 | return x3::error_handler_result::rethrow; |
| 242 | } |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 243 | }; |
| 244 | |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 245 | struct writable_leaf_path_class { |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 246 | template <typename T, typename Iterator, typename Context> |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 247 | void on_success(Iterator const&, Iterator const&, T&, Context const& context) |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 248 | { |
| 249 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 0d42c51 | 2020-05-20 21:18:39 +0200 | [diff] [blame] | 250 | if (parserContext.currentSchemaPath().m_nodes.empty()) { |
| 251 | parserContext.m_errorMsg = "This is not a path to leaf."; |
| 252 | _pass(context) = false; |
| 253 | return; |
| 254 | } |
| 255 | |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 256 | try { |
Václav Kubernát | 7707cae | 2020-01-16 12:04:53 +0100 | [diff] [blame] | 257 | auto lastNode = parserContext.currentSchemaPath().m_nodes.back(); |
| 258 | auto leaf = boost::get<leaf_>(lastNode.m_suffix); |
| 259 | auto location = pathWithoutLastNode(parserContext.currentSchemaPath()); |
| 260 | ModuleNodePair node{lastNode.m_prefix.flat_map([](const auto& it) { return boost::optional<std::string>{it.m_name}; }), leaf.m_name}; |
| 261 | |
| 262 | parserContext.m_tmpListKeyLeafPath.m_location = location; |
| 263 | parserContext.m_tmpListKeyLeafPath.m_node = node; |
| 264 | |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 265 | } catch (boost::bad_get&) { |
| 266 | parserContext.m_errorMsg = "This is not a path to leaf."; |
| 267 | _pass(context) = false; |
| 268 | } |
| 269 | } |
| 270 | }; |
| 271 | |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 272 | // This handler only checks if the module exists |
| 273 | // It doesn't set any ParserContext flags (except the error message) |
| 274 | struct data_module_prefix_class { |
| 275 | template <typename T, typename Iterator, typename Context> |
| 276 | void on_success(Iterator const&, Iterator const&, T& ast, Context const& context) |
| 277 | { |
| 278 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 279 | const auto& schema = parserContext.m_schema; |
| 280 | |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 281 | if (!schema.isModule(parserContext.currentSchemaPath(), ast.m_name)) { |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 282 | parserContext.m_errorMsg = "Invalid module name."; |
| 283 | _pass(context) = false; |
| 284 | } |
| 285 | } |
| 286 | }; |
| 287 | |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 288 | struct set_class { |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 289 | template <typename Iterator, typename Exception, typename Context> |
| 290 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context) |
| 291 | { |
| 292 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 293 | if (parserContext.m_errorMsg.empty()) |
| 294 | parserContext.m_errorMsg = "Expected " + x.which() + " here:"; |
| 295 | return x3::error_handler_result::rethrow; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 296 | } |
| 297 | }; |
| 298 | |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 299 | struct commit_class; |
| 300 | |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 301 | struct describe_class; |
| 302 | |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 303 | struct help_class; |
| 304 | |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 305 | struct get_class; |
| 306 | |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 307 | struct copy_class; |
| 308 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 309 | struct command_class { |
| 310 | template <typename Iterator, typename Exception, typename Context> |
| 311 | x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context) |
| 312 | { |
| 313 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 314 | auto& error_handler = x3::get<x3::error_handler_tag>(context).get(); |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 315 | if (parserContext.m_errorMsg.empty()) { |
| 316 | parserContext.m_errorMsg = "Unknown command."; |
| 317 | } |
| 318 | error_handler(x.where(), parserContext.m_errorMsg); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 319 | return x3::error_handler_result::fail; |
| 320 | } |
| 321 | }; |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 322 | |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 323 | struct initializePath_class { |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 324 | template <typename T, typename Iterator, typename Context> |
| 325 | void on_success(Iterator const&, Iterator const&, T&, Context const& context) |
| 326 | { |
| 327 | auto& parserContext = x3::get<parser_context_tag>(context); |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 328 | parserContext.resetPath(); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 329 | parserContext.m_tmpListKeys.clear(); |
| 330 | parserContext.m_tmpListName.clear(); |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 331 | parserContext.m_suggestions.clear(); |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 332 | } |
| 333 | }; |
Václav Kubernát | d6fd249 | 2018-11-19 15:11:16 +0100 | [diff] [blame] | 334 | |
| 335 | struct trailingSlash_class; |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 336 | |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 337 | std::set<Completion> generateMissingKeyCompletionSet(std::set<std::string> keysNeeded, std::map<std::string, leaf_data_> currentSet); |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 338 | |
| 339 | struct createKeySuggestions_class { |
| 340 | template <typename T, typename Iterator, typename Context> |
| 341 | void on_success(Iterator const& begin, Iterator const&, T&, Context const& context) |
| 342 | { |
| 343 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 344 | const auto& schema = parserContext.m_schema; |
| 345 | |
| 346 | parserContext.m_completionIterator = begin; |
| 347 | |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 348 | const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName}); |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 349 | parserContext.m_suggestions = generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys); |
| 350 | } |
| 351 | }; |
| 352 | |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 353 | std::string leafDataToCompletion(const leaf_data_& value); |
| 354 | |
| 355 | struct createValueSuggestions_class { |
| 356 | template <typename T, typename Iterator, typename Context> |
| 357 | void on_success(Iterator const& begin, Iterator const&, T&, Context const& context) |
| 358 | { |
| 359 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 360 | if (!parserContext.m_completing) { |
| 361 | return; |
| 362 | } |
| 363 | const auto& dataQuery = parserContext.m_dataquery; |
| 364 | |
| 365 | parserContext.m_completionIterator = begin; |
| 366 | auto listInstances = dataQuery->listKeys(parserContext.currentDataPath(), {parserContext.m_curModule, parserContext.m_tmpListName}); |
| 367 | |
| 368 | decltype(listInstances) filteredInstances; |
| 369 | //This filters out instances, which don't correspond to the partial instance we have. |
| 370 | const auto partialFitsComplete = [&parserContext] (const auto& complete) { |
| 371 | const auto& partial = parserContext.m_tmpListKeys; |
| 372 | return std::all_of(partial.begin(), partial.end(), [&complete] (const auto& oneKV) { |
| 373 | const auto& [k, v] = oneKV; |
| 374 | return complete.at(k) == v; |
| 375 | }); |
| 376 | }; |
| 377 | std::copy_if(listInstances.begin(), listInstances.end(), std::inserter(filteredInstances, filteredInstances.end()), partialFitsComplete); |
| 378 | |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 379 | std::set<Completion> validValues; |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 380 | |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 381 | std::transform(filteredInstances.begin(), filteredInstances.end(), std::inserter(validValues, validValues.end()), [&parserContext](const auto& instance) { |
| 382 | return Completion{leafDataToCompletion(instance.at(parserContext.m_tmpListKeyLeafPath.m_node.second))}; |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 383 | }); |
| 384 | |
| 385 | parserContext.m_suggestions = validValues; |
| 386 | } |
| 387 | }; |
| 388 | |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 389 | struct suggestKeysEnd_class { |
| 390 | template <typename T, typename Iterator, typename Context> |
| 391 | void on_success(Iterator const& begin, Iterator const&, T&, Context const& context) |
| 392 | { |
| 393 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 394 | const auto& schema = parserContext.m_schema; |
| 395 | |
| 396 | parserContext.m_completionIterator = begin; |
Václav Kubernát | 72749c6 | 2020-01-03 16:47:34 +0100 | [diff] [blame] | 397 | const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName}); |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 398 | if (generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys).empty()) { |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 399 | parserContext.m_suggestions = {Completion{"]/"}}; |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 400 | } else { |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 401 | parserContext.m_suggestions = {Completion{"]["}}; |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | }; |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 405 | |
| 406 | struct commandNamesVisitor { |
| 407 | template <typename T> |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 408 | std::string operator()(boost::type<T>) |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 409 | { |
| 410 | return T::name; |
| 411 | } |
| 412 | }; |
| 413 | |
| 414 | struct createCommandSuggestions_class { |
| 415 | template <typename T, typename Iterator, typename Context> |
| 416 | void on_success(Iterator const& begin, Iterator const&, T&, Context const& context) |
| 417 | { |
| 418 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 419 | parserContext.m_completionIterator = begin; |
| 420 | |
| 421 | parserContext.m_suggestions.clear(); |
| 422 | boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([&parserContext](auto cmd) { |
Václav Kubernát | 0165e6c | 2020-02-17 18:18:14 +0100 | [diff] [blame] | 423 | parserContext.m_suggestions.insert({commandNamesVisitor()(cmd), " "}); |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 424 | }); |
| 425 | } |
| 426 | }; |
Václav Kubernát | ac035d6 | 2019-02-18 10:59:08 +0100 | [diff] [blame] | 427 | |
| 428 | struct completing_class { |
| 429 | template <typename T, typename Iterator, typename Context> |
| 430 | void on_success(Iterator const&, Iterator const&, T&, Context const& context) |
| 431 | { |
| 432 | auto& parserContext = x3::get<parser_context_tag>(context); |
| 433 | |
| 434 | if (!parserContext.m_completing) |
| 435 | _pass(context) = false; |
| 436 | } |
| 437 | }; |