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