blob: 870d25577a88a18dec75c2828bb2253f03c5c558 [file] [log] [blame]
Václav Kubernát0a2a2e82018-05-11 13:59:12 +02001/*
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át195eeea2018-05-18 13:52:36 +020010
Václav Kubernát57272422019-02-08 12:48:24 +010011#include <boost/mpl/for_each.hpp>
Václav Kubernát509ce652019-05-29 19:46:44 +020012#include <boost/spirit/home/x3.hpp>
13#include <boost/spirit/home/x3/support/utility/error_reporting.hpp>
14
15
Václav Kubernát57272422019-02-08 12:48:24 +010016#include "ast_commands.hpp"
Václav Kubernát4294a852020-02-14 15:07:14 +010017#include "parser_context.hpp"
Václav Kubernát48fc3832018-05-28 14:21:22 +020018#include "schema.hpp"
Václav Kubernátebca2552018-06-08 19:06:02 +020019#include "utils.hpp"
Václav Kubernát329c6c32019-02-06 16:41:53 +010020namespace x3 = boost::spirit::x3;
21
22struct parser_context_tag;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020023
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020024struct 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át0a2a2e82018-05-11 13:59:12 +020029
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át41378452018-06-06 16:29:40 +020033 } else {
Václav Kubernát43908fb2020-01-02 19:05:51 +010034 parserContext.m_tmpListKeys.insert({ast.first, ast.second});
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020035 }
36 }
Václav Kubernát41378452018-06-06 16:29:40 +020037
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át0a2a2e82018-05-11 13:59:12 +020045};
Václav Kubernát41378452018-06-06 16:29:40 +020046
Václav Kubernátf3e377b2020-05-28 23:26:38 +020047struct node_identifier_class;
Václav Kubernát744f57f2018-06-29 22:46:26 +020048
Václav Kubernát2db124c2020-05-28 21:58:36 +020049boost::optional<std::string> optModuleToOptString(const boost::optional<module_> module);
50
Václav Kubernát7707cae2020-01-16 12:04:53 +010051struct key_identifier_class {
52 template <typename T, typename Iterator, typename Context>
53 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
54 {
Václav Kubernát2db124c2020-05-28 21:58:36 +020055 ParserContext& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát7707cae2020-01-16 12:04:53 +010056 const Schema& schema = parserContext.m_schema;
Václav Kubernát7707cae2020-01-16 12:04:53 +010057
Václav Kubernát2db124c2020-05-28 21:58:36 +020058 if (schema.listHasKey(dataPathToSchemaPath(parserContext.m_tmpListPath), ast)) {
59 parserContext.m_tmpListKeyLeafPath.m_location = dataPathToSchemaPath(parserContext.m_tmpListPath);
60 parserContext.m_tmpListKeyLeafPath.m_node = { optModuleToOptString(parserContext.m_tmpListPath.m_nodes.back().m_prefix), ast };
Václav Kubernát7707cae2020-01-16 12:04:53 +010061 } else {
Václav Kubernát2db124c2020-05-28 21:58:36 +020062 auto listName = std::get<list_>(parserContext.m_tmpListPath.m_nodes.back().m_suffix).m_name;
63 parserContext.m_errorMsg = listName + " is not indexed by \"" + ast + "\".";
Václav Kubernát7707cae2020-01-16 12:04:53 +010064 _pass(context) = false;
65 }
66 }
67};
Václav Kubernát89728d82018-09-13 16:28:28 +020068
Václav Kubernát744f57f2018-06-29 22:46:26 +020069struct module_identifier_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020070
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020071struct listSuffix_class {
72 template <typename T, typename Iterator, typename Context>
73 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
74 {
75 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +020076 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020077
Václav Kubernát2db124c2020-05-28 21:58:36 +020078 const auto& keysNeeded = schema.listKeys(dataPathToSchemaPath(parserContext.m_tmpListPath));
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020079 std::set<std::string> keysSupplied;
80 for (const auto& it : ast)
81 keysSupplied.insert(it.first);
82
83 if (keysNeeded != keysSupplied) {
Václav Kubernát2db124c2020-05-28 21:58:36 +020084 auto listName = std::get<list_>(parserContext.m_tmpListPath.m_nodes.back().m_suffix).m_name;
85 parserContext.m_errorMsg = "Not enough keys for " + listName + ". " +
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020086 "These keys were not supplied:";
87 std::set<std::string> missingKeys;
88 std::set_difference(keysNeeded.begin(), keysNeeded.end(),
89 keysSupplied.begin(), keysSupplied.end(),
90 std::inserter(missingKeys, missingKeys.end()));
91
92 for (const auto& it : missingKeys)
93 parserContext.m_errorMsg += " " + it;
94 parserContext.m_errorMsg += ".";
95
96 _pass(context) = false;
97 }
98 }
Václav Kubernát41378452018-06-06 16:29:40 +020099
100 template <typename Iterator, typename Exception, typename Context>
101 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
102 {
103 auto& parserContext = x3::get<parser_context_tag>(context);
104 if (parserContext.m_errorMsg.empty())
105 parserContext.m_errorMsg = "Expecting ']' here:";
106 return x3::error_handler_result::rethrow;
Václav Kubernát41378452018-06-06 16:29:40 +0200107 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200108};
Václav Kubernát744f57f2018-06-29 22:46:26 +0200109
Václav Kubernát744f57f2018-06-29 22:46:26 +0200110struct module_class {
111 template <typename T, typename Iterator, typename Context>
112 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
113 {
114 auto& parserContext = x3::get<parser_context_tag>(context);
115 const auto& schema = parserContext.m_schema;
116
Václav Kubernát1bcee3b2020-05-28 22:19:59 +0200117 if (!schema.isModule(ast.m_name)) {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200118 parserContext.m_errorMsg = "Invalid module name.";
Václav Kubernát07204242018-06-04 18:12:09 +0200119 _pass(context) = false;
120 }
121 }
122};
123
Václav Kubernát37171a12018-08-31 17:01:48 +0200124struct absoluteStart_class {
125 template <typename T, typename Iterator, typename Context>
126 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
127 {
128 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100129 parserContext.clearPath();
Václav Kubernát37171a12018-08-31 17:01:48 +0200130 }
131};
132
Václav Kubernát6d791432018-10-25 16:00:35 +0200133struct discard_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200134
Václav Kubernát11afac72018-07-18 14:59:53 +0200135struct ls_class;
136
Václav Kubernát744f57f2018-06-29 22:46:26 +0200137struct cd_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200138 template <typename Iterator, typename Exception, typename Context>
139 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
140 {
141 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200142 if (parserContext.m_errorMsg.empty())
143 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
144 return x3::error_handler_result::rethrow;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200145 }
146};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200147
Václav Kubernát6797df02019-03-18 20:21:50 +0100148struct presenceContainerPath_class {
Václav Kubernátb61336d2018-05-28 17:35:03 +0200149 template <typename T, typename Iterator, typename Context>
150 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
151 {
152 auto& parserContext = x3::get<parser_context_tag>(context);
153 const auto& schema = parserContext.m_schema;
Václav Kubernát0d42c512020-05-20 21:18:39 +0200154 if (ast.m_nodes.empty()) {
155 parserContext.m_errorMsg = "This container is not a presence container.";
156 _pass(context) = false;
157 return;
158 }
159
Václav Kubernátb61336d2018-05-28 17:35:03 +0200160 try {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200161 boost::optional<std::string> module;
Václav Kubernát6797df02019-03-18 20:21:50 +0100162 if (ast.m_nodes.back().m_prefix)
163 module = ast.m_nodes.back().m_prefix.value().m_name;
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200164 container_ cont = std::get<container_>(ast.m_nodes.back().m_suffix);
Václav Kubernát72749c62020-01-03 16:47:34 +0100165 auto location = pathWithoutLastNode(parserContext.currentSchemaPath());
Václav Kubernátb61336d2018-05-28 17:35:03 +0200166
Václav Kubernát744f57f2018-06-29 22:46:26 +0200167 if (!schema.isPresenceContainer(location, {module, cont.m_name})) {
Václav Kubernát41378452018-06-06 16:29:40 +0200168 parserContext.m_errorMsg = "This container is not a presence container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200169 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200170 }
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200171 } catch (std::bad_variant_access&) {
Václav Kubernát41378452018-06-06 16:29:40 +0200172 parserContext.m_errorMsg = "This is not a container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200173 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200174 }
175 }
Václav Kubernát6797df02019-03-18 20:21:50 +0100176};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200177
Václav Kubernátf5f64f02019-03-19 17:15:47 +0100178struct listInstancePath_class {
179 template <typename T, typename Iterator, typename Context>
180 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
181 {
182 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát2ebab1d2020-05-27 01:28:30 +0200183 if (ast.m_nodes.empty() || !std::holds_alternative<listElement_>(ast.m_nodes.back().m_suffix)) {
Václav Kubernátf5f64f02019-03-19 17:15:47 +0100184 parserContext.m_errorMsg = "This is not a list instance.";
185 _pass(context) = false;
186 }
187 }
188};
189
Václav Kubernát5b8a8f32020-05-20 00:57:22 +0200190struct leafListElementPath_class {
191 template <typename T, typename Iterator, typename Context>
192 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
193 {
194 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200195 if (ast.m_nodes.empty() || !std::holds_alternative<leafListElement_>(ast.m_nodes.back().m_suffix)) {
Václav Kubernát5b8a8f32020-05-20 00:57:22 +0200196 parserContext.m_errorMsg = "This is not a leaf list element.";
197 _pass(context) = false;
198 }
199 }
200};
201
Václav Kubernát8028f942019-09-25 16:03:23 +0200202struct space_separator_class {
203 template <typename T, typename Iterator, typename Context>
204 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
205 {
206 auto& parserContext = x3::get<parser_context_tag>(context);
207 parserContext.m_suggestions.clear();
Václav Kubernát1ed4aa32020-01-23 13:13:28 +0100208 parserContext.m_completionIterator = boost::none;
Václav Kubernát8028f942019-09-25 16:03:23 +0200209 }
210};
211
Václav Kubernát6797df02019-03-18 20:21:50 +0100212struct create_class {
Václav Kubernátb61336d2018-05-28 17:35:03 +0200213 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200214 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernátb61336d2018-05-28 17:35:03 +0200215 {
216 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200217 if (parserContext.m_errorMsg.empty())
218 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
219 return x3::error_handler_result::rethrow;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200220 }
221};
222
Václav Kubernát6797df02019-03-18 20:21:50 +0100223struct delete_class {
224 template <typename Iterator, typename Exception, typename Context>
225 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
226 {
227 auto& parserContext = x3::get<parser_context_tag>(context);
228 if (parserContext.m_errorMsg.empty())
229 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
230 return x3::error_handler_result::rethrow;
231 }
Václav Kubernátb61336d2018-05-28 17:35:03 +0200232};
233
Václav Kubernátabf52802020-05-19 01:31:17 +0200234struct writable_leaf_path_class {
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200235 template <typename T, typename Iterator, typename Context>
Václav Kubernát7707cae2020-01-16 12:04:53 +0100236 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200237 {
238 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát0d42c512020-05-20 21:18:39 +0200239 if (parserContext.currentSchemaPath().m_nodes.empty()) {
240 parserContext.m_errorMsg = "This is not a path to leaf.";
241 _pass(context) = false;
242 return;
243 }
244
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200245 try {
Václav Kubernát7707cae2020-01-16 12:04:53 +0100246 auto lastNode = parserContext.currentSchemaPath().m_nodes.back();
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200247 auto leaf = std::get<leaf_>(lastNode.m_suffix);
Václav Kubernát7707cae2020-01-16 12:04:53 +0100248 auto location = pathWithoutLastNode(parserContext.currentSchemaPath());
249 ModuleNodePair node{lastNode.m_prefix.flat_map([](const auto& it) { return boost::optional<std::string>{it.m_name}; }), leaf.m_name};
250
251 parserContext.m_tmpListKeyLeafPath.m_location = location;
252 parserContext.m_tmpListKeyLeafPath.m_node = node;
253
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200254 } catch (std::bad_variant_access&) {
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200255 parserContext.m_errorMsg = "This is not a path to leaf.";
256 _pass(context) = false;
257 }
258 }
259};
260
Václav Kubernát07204242018-06-04 18:12:09 +0200261struct set_class {
Václav Kubernát07204242018-06-04 18:12:09 +0200262 template <typename Iterator, typename Exception, typename Context>
263 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
264 {
265 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200266 if (parserContext.m_errorMsg.empty())
267 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
268 return x3::error_handler_result::rethrow;
Václav Kubernát07204242018-06-04 18:12:09 +0200269 }
270};
271
Václav Kubernát812ee282018-08-30 17:10:03 +0200272struct commit_class;
273
Václav Kubernát9cfcd872020-02-18 12:34:02 +0100274struct describe_class;
275
Václav Kubernát054cc992019-02-21 14:23:52 +0100276struct help_class;
277
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200278struct get_class;
279
Václav Kubernát7160a132020-04-03 02:11:01 +0200280struct copy_class;
281
Václav Kubernátb61336d2018-05-28 17:35:03 +0200282struct command_class {
283 template <typename Iterator, typename Exception, typename Context>
284 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
285 {
286 auto& parserContext = x3::get<parser_context_tag>(context);
287 auto& error_handler = x3::get<x3::error_handler_tag>(context).get();
Václav Kubernát41378452018-06-06 16:29:40 +0200288 if (parserContext.m_errorMsg.empty()) {
289 parserContext.m_errorMsg = "Unknown command.";
290 }
291 error_handler(x.where(), parserContext.m_errorMsg);
Václav Kubernátb61336d2018-05-28 17:35:03 +0200292 return x3::error_handler_result::fail;
293 }
294};
Václav Kubernát5c75b252018-10-10 18:33:47 +0200295
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100296struct initializePath_class {
Václav Kubernát5c75b252018-10-10 18:33:47 +0200297 template <typename T, typename Iterator, typename Context>
298 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
299 {
300 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100301 parserContext.resetPath();
Václav Kubernát5c75b252018-10-10 18:33:47 +0200302 parserContext.m_tmpListKeys.clear();
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100303 parserContext.m_suggestions.clear();
Václav Kubernát5c75b252018-10-10 18:33:47 +0200304 }
305};
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100306
307struct trailingSlash_class;
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100308
Václav Kubernátc15fe822020-06-04 11:28:39 +0200309std::set<Completion> generateMissingKeyCompletionSet(std::set<std::string> keysNeeded, ListInstance currentSet);
Václav Kubernát329c6c32019-02-06 16:41:53 +0100310
311struct createKeySuggestions_class {
312 template <typename T, typename Iterator, typename Context>
313 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
314 {
315 auto& parserContext = x3::get<parser_context_tag>(context);
316 const auto& schema = parserContext.m_schema;
317
318 parserContext.m_completionIterator = begin;
319
Václav Kubernát2db124c2020-05-28 21:58:36 +0200320 const auto& keysNeeded = schema.listKeys(dataPathToSchemaPath(parserContext.m_tmpListPath));
Václav Kubernát329c6c32019-02-06 16:41:53 +0100321 parserContext.m_suggestions = generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys);
322 }
323};
324
Václav Kubernát43908fb2020-01-02 19:05:51 +0100325std::string leafDataToCompletion(const leaf_data_& value);
326
327struct createValueSuggestions_class {
328 template <typename T, typename Iterator, typename Context>
329 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
330 {
331 auto& parserContext = x3::get<parser_context_tag>(context);
332 if (!parserContext.m_completing) {
333 return;
334 }
335 const auto& dataQuery = parserContext.m_dataquery;
336
337 parserContext.m_completionIterator = begin;
Václav Kubernát2db124c2020-05-28 21:58:36 +0200338 auto listInstances = dataQuery->listKeys(parserContext.m_tmpListPath);
Václav Kubernát43908fb2020-01-02 19:05:51 +0100339
340 decltype(listInstances) filteredInstances;
341 //This filters out instances, which don't correspond to the partial instance we have.
342 const auto partialFitsComplete = [&parserContext] (const auto& complete) {
343 const auto& partial = parserContext.m_tmpListKeys;
344 return std::all_of(partial.begin(), partial.end(), [&complete] (const auto& oneKV) {
345 const auto& [k, v] = oneKV;
346 return complete.at(k) == v;
347 });
348 };
349 std::copy_if(listInstances.begin(), listInstances.end(), std::inserter(filteredInstances, filteredInstances.end()), partialFitsComplete);
350
Václav Kubernátcb3af402020-02-12 16:49:17 +0100351 std::set<Completion> validValues;
Václav Kubernát43908fb2020-01-02 19:05:51 +0100352
Václav Kubernátcb3af402020-02-12 16:49:17 +0100353 std::transform(filteredInstances.begin(), filteredInstances.end(), std::inserter(validValues, validValues.end()), [&parserContext](const auto& instance) {
354 return Completion{leafDataToCompletion(instance.at(parserContext.m_tmpListKeyLeafPath.m_node.second))};
Václav Kubernát43908fb2020-01-02 19:05:51 +0100355 });
356
357 parserContext.m_suggestions = validValues;
358 }
359};
360
Václav Kubernát329c6c32019-02-06 16:41:53 +0100361struct suggestKeysEnd_class {
362 template <typename T, typename Iterator, typename Context>
363 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
364 {
365 auto& parserContext = x3::get<parser_context_tag>(context);
366 const auto& schema = parserContext.m_schema;
367
368 parserContext.m_completionIterator = begin;
Václav Kubernát2db124c2020-05-28 21:58:36 +0200369 const auto& keysNeeded = schema.listKeys(dataPathToSchemaPath(parserContext.m_tmpListPath));
Václav Kubernát329c6c32019-02-06 16:41:53 +0100370 if (generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys).empty()) {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100371 parserContext.m_suggestions = {Completion{"]/"}};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100372 } else {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100373 parserContext.m_suggestions = {Completion{"]["}};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100374 }
375 }
376};
Václav Kubernát57272422019-02-08 12:48:24 +0100377
Václav Kubernát672889c2020-05-27 04:11:36 +0200378template <typename T>
379std::string commandNamesVisitor (boost::type<T>)
380{
381 return T::name;
382}
Václav Kubernát57272422019-02-08 12:48:24 +0100383
384struct createCommandSuggestions_class {
385 template <typename T, typename Iterator, typename Context>
386 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
387 {
388 auto& parserContext = x3::get<parser_context_tag>(context);
389 parserContext.m_completionIterator = begin;
390
391 parserContext.m_suggestions.clear();
392 boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([&parserContext](auto cmd) {
Václav Kubernát672889c2020-05-27 04:11:36 +0200393 parserContext.m_suggestions.insert({commandNamesVisitor(cmd), " "});
Václav Kubernát57272422019-02-08 12:48:24 +0100394 });
395 }
396};
Václav Kubernátac035d62019-02-18 10:59:08 +0100397
398struct completing_class {
399 template <typename T, typename Iterator, typename Context>
400 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
401 {
402 auto& parserContext = x3::get<parser_context_tag>(context);
403
404 if (!parserContext.m_completing)
405 _pass(context) = false;
406 }
407};