blob: f378c188da94082c45324989fc9719989d42acac [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át7707cae2020-01-16 12:04:53 +010049struct 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át43908fb2020-01-02 19:05:51 +010060 listNode.m_prefix = parserContext.m_curModule.flat_map([] (auto mod) { return boost::optional<module_>{{mod}}; });;
Václav Kubernát7707cae2020-01-16 12:04:53 +010061 listNode.m_suffix = list_{parserContext.m_tmpListName};
62 location.m_nodes.push_back(listNode);
63 parserContext.m_tmpListKeyLeafPath.m_location = location;
Václav Kubernát43908fb2020-01-02 19:05:51 +010064 parserContext.m_tmpListKeyLeafPath.m_node = { parserContext.m_curModule, ast };
Václav Kubernát7707cae2020-01-16 12:04:53 +010065 } else {
66 parserContext.m_errorMsg = parserContext.m_tmpListName + " is not indexed by \"" + ast + "\".";
67 _pass(context) = false;
68 }
69 }
70};
Václav Kubernát89728d82018-09-13 16:28:28 +020071
Václav Kubernát744f57f2018-06-29 22:46:26 +020072struct module_identifier_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020073
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020074struct 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át48fc3832018-05-28 14:21:22 +020079 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020080
Václav Kubernát72749c62020-01-03 16:47:34 +010081 const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020082 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át41378452018-06-06 16:29:40 +0200101
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át41378452018-06-06 16:29:40 +0200109 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200110};
Václav Kubernát744f57f2018-06-29 22:46:26 +0200111
Václav Kubernát744f57f2018-06-29 22:46:26 +0200112struct 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át1bcee3b2020-05-28 22:19:59 +0200119 if (!schema.isModule(ast.m_name)) {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200120 parserContext.m_errorMsg = "Invalid module name.";
Václav Kubernát07204242018-06-04 18:12:09 +0200121 _pass(context) = false;
122 }
123 }
124};
125
Václav Kubernát37171a12018-08-31 17:01:48 +0200126struct absoluteStart_class {
127 template <typename T, typename Iterator, typename Context>
128 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
129 {
130 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100131 parserContext.clearPath();
Václav Kubernát37171a12018-08-31 17:01:48 +0200132 }
133};
134
Václav Kubernát6d791432018-10-25 16:00:35 +0200135struct discard_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200136
Václav Kubernát11afac72018-07-18 14:59:53 +0200137struct ls_class;
138
Václav Kubernát744f57f2018-06-29 22:46:26 +0200139struct cd_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200140 template <typename Iterator, typename Exception, typename Context>
141 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
142 {
143 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200144 if (parserContext.m_errorMsg.empty())
145 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
146 return x3::error_handler_result::rethrow;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200147 }
148};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200149
Václav Kubernát6797df02019-03-18 20:21:50 +0100150struct presenceContainerPath_class {
Václav Kubernátb61336d2018-05-28 17:35:03 +0200151 template <typename T, typename Iterator, typename Context>
152 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
153 {
154 auto& parserContext = x3::get<parser_context_tag>(context);
155 const auto& schema = parserContext.m_schema;
Václav Kubernát0d42c512020-05-20 21:18:39 +0200156 if (ast.m_nodes.empty()) {
157 parserContext.m_errorMsg = "This container is not a presence container.";
158 _pass(context) = false;
159 return;
160 }
161
Václav Kubernátb61336d2018-05-28 17:35:03 +0200162 try {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200163 boost::optional<std::string> module;
Václav Kubernát6797df02019-03-18 20:21:50 +0100164 if (ast.m_nodes.back().m_prefix)
165 module = ast.m_nodes.back().m_prefix.value().m_name;
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200166 container_ cont = std::get<container_>(ast.m_nodes.back().m_suffix);
Václav Kubernát72749c62020-01-03 16:47:34 +0100167 auto location = pathWithoutLastNode(parserContext.currentSchemaPath());
Václav Kubernátb61336d2018-05-28 17:35:03 +0200168
Václav Kubernát744f57f2018-06-29 22:46:26 +0200169 if (!schema.isPresenceContainer(location, {module, cont.m_name})) {
Václav Kubernát41378452018-06-06 16:29:40 +0200170 parserContext.m_errorMsg = "This container is not a presence container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200171 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200172 }
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200173 } catch (std::bad_variant_access&) {
Václav Kubernát41378452018-06-06 16:29:40 +0200174 parserContext.m_errorMsg = "This is not a container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200175 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200176 }
177 }
Václav Kubernát6797df02019-03-18 20:21:50 +0100178};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200179
Václav Kubernátf5f64f02019-03-19 17:15:47 +0100180struct listInstancePath_class {
181 template <typename T, typename Iterator, typename Context>
182 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
183 {
184 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát2ebab1d2020-05-27 01:28:30 +0200185 if (ast.m_nodes.empty() || !std::holds_alternative<listElement_>(ast.m_nodes.back().m_suffix)) {
Václav Kubernátf5f64f02019-03-19 17:15:47 +0100186 parserContext.m_errorMsg = "This is not a list instance.";
187 _pass(context) = false;
188 }
189 }
190};
191
Václav Kubernát5b8a8f32020-05-20 00:57:22 +0200192struct leafListElementPath_class {
193 template <typename T, typename Iterator, typename Context>
194 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
195 {
196 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200197 if (ast.m_nodes.empty() || !std::holds_alternative<leafListElement_>(ast.m_nodes.back().m_suffix)) {
Václav Kubernát5b8a8f32020-05-20 00:57:22 +0200198 parserContext.m_errorMsg = "This is not a leaf list element.";
199 _pass(context) = false;
200 }
201 }
202};
203
Václav Kubernát8028f942019-09-25 16:03:23 +0200204struct space_separator_class {
205 template <typename T, typename Iterator, typename Context>
206 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
207 {
208 auto& parserContext = x3::get<parser_context_tag>(context);
209 parserContext.m_suggestions.clear();
Václav Kubernát1ed4aa32020-01-23 13:13:28 +0100210 parserContext.m_completionIterator = boost::none;
Václav Kubernát8028f942019-09-25 16:03:23 +0200211 }
212};
213
Václav Kubernát6797df02019-03-18 20:21:50 +0100214struct create_class {
Václav Kubernátb61336d2018-05-28 17:35:03 +0200215 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200216 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernátb61336d2018-05-28 17:35:03 +0200217 {
218 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200219 if (parserContext.m_errorMsg.empty())
220 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
221 return x3::error_handler_result::rethrow;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200222 }
223};
224
Václav Kubernát6797df02019-03-18 20:21:50 +0100225struct delete_class {
226 template <typename Iterator, typename Exception, typename Context>
227 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
228 {
229 auto& parserContext = x3::get<parser_context_tag>(context);
230 if (parserContext.m_errorMsg.empty())
231 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
232 return x3::error_handler_result::rethrow;
233 }
Václav Kubernátb61336d2018-05-28 17:35:03 +0200234};
235
Václav Kubernátabf52802020-05-19 01:31:17 +0200236struct writable_leaf_path_class {
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200237 template <typename T, typename Iterator, typename Context>
Václav Kubernát7707cae2020-01-16 12:04:53 +0100238 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200239 {
240 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát0d42c512020-05-20 21:18:39 +0200241 if (parserContext.currentSchemaPath().m_nodes.empty()) {
242 parserContext.m_errorMsg = "This is not a path to leaf.";
243 _pass(context) = false;
244 return;
245 }
246
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200247 try {
Václav Kubernát7707cae2020-01-16 12:04:53 +0100248 auto lastNode = parserContext.currentSchemaPath().m_nodes.back();
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200249 auto leaf = std::get<leaf_>(lastNode.m_suffix);
Václav Kubernát7707cae2020-01-16 12:04:53 +0100250 auto location = pathWithoutLastNode(parserContext.currentSchemaPath());
251 ModuleNodePair node{lastNode.m_prefix.flat_map([](const auto& it) { return boost::optional<std::string>{it.m_name}; }), leaf.m_name};
252
253 parserContext.m_tmpListKeyLeafPath.m_location = location;
254 parserContext.m_tmpListKeyLeafPath.m_node = node;
255
Václav Kubernátb5ca1542020-05-27 01:03:54 +0200256 } catch (std::bad_variant_access&) {
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200257 parserContext.m_errorMsg = "This is not a path to leaf.";
258 _pass(context) = false;
259 }
260 }
261};
262
Václav Kubernát07204242018-06-04 18:12:09 +0200263struct set_class {
Václav Kubernát07204242018-06-04 18:12:09 +0200264 template <typename Iterator, typename Exception, typename Context>
265 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
266 {
267 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200268 if (parserContext.m_errorMsg.empty())
269 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
270 return x3::error_handler_result::rethrow;
Václav Kubernát07204242018-06-04 18:12:09 +0200271 }
272};
273
Václav Kubernát812ee282018-08-30 17:10:03 +0200274struct commit_class;
275
Václav Kubernát9cfcd872020-02-18 12:34:02 +0100276struct describe_class;
277
Václav Kubernát054cc992019-02-21 14:23:52 +0100278struct help_class;
279
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200280struct get_class;
281
Václav Kubernát7160a132020-04-03 02:11:01 +0200282struct copy_class;
283
Václav Kubernátb61336d2018-05-28 17:35:03 +0200284struct command_class {
285 template <typename Iterator, typename Exception, typename Context>
286 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
287 {
288 auto& parserContext = x3::get<parser_context_tag>(context);
289 auto& error_handler = x3::get<x3::error_handler_tag>(context).get();
Václav Kubernát41378452018-06-06 16:29:40 +0200290 if (parserContext.m_errorMsg.empty()) {
291 parserContext.m_errorMsg = "Unknown command.";
292 }
293 error_handler(x.where(), parserContext.m_errorMsg);
Václav Kubernátb61336d2018-05-28 17:35:03 +0200294 return x3::error_handler_result::fail;
295 }
296};
Václav Kubernát5c75b252018-10-10 18:33:47 +0200297
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100298struct initializePath_class {
Václav Kubernát5c75b252018-10-10 18:33:47 +0200299 template <typename T, typename Iterator, typename Context>
300 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
301 {
302 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100303 parserContext.resetPath();
Václav Kubernát5c75b252018-10-10 18:33:47 +0200304 parserContext.m_tmpListKeys.clear();
305 parserContext.m_tmpListName.clear();
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100306 parserContext.m_suggestions.clear();
Václav Kubernát5c75b252018-10-10 18:33:47 +0200307 }
308};
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100309
310struct trailingSlash_class;
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100311
Václav Kubernátcb3af402020-02-12 16:49:17 +0100312std::set<Completion> generateMissingKeyCompletionSet(std::set<std::string> keysNeeded, std::map<std::string, leaf_data_> currentSet);
Václav Kubernát329c6c32019-02-06 16:41:53 +0100313
314struct createKeySuggestions_class {
315 template <typename T, typename Iterator, typename Context>
316 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
317 {
318 auto& parserContext = x3::get<parser_context_tag>(context);
319 const auto& schema = parserContext.m_schema;
320
321 parserContext.m_completionIterator = begin;
322
Václav Kubernát72749c62020-01-03 16:47:34 +0100323 const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát329c6c32019-02-06 16:41:53 +0100324 parserContext.m_suggestions = generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys);
325 }
326};
327
Václav Kubernát43908fb2020-01-02 19:05:51 +0100328std::string leafDataToCompletion(const leaf_data_& value);
329
330struct createValueSuggestions_class {
331 template <typename T, typename Iterator, typename Context>
332 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
333 {
334 auto& parserContext = x3::get<parser_context_tag>(context);
335 if (!parserContext.m_completing) {
336 return;
337 }
338 const auto& dataQuery = parserContext.m_dataquery;
339
340 parserContext.m_completionIterator = begin;
341 auto listInstances = dataQuery->listKeys(parserContext.currentDataPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
342
343 decltype(listInstances) filteredInstances;
344 //This filters out instances, which don't correspond to the partial instance we have.
345 const auto partialFitsComplete = [&parserContext] (const auto& complete) {
346 const auto& partial = parserContext.m_tmpListKeys;
347 return std::all_of(partial.begin(), partial.end(), [&complete] (const auto& oneKV) {
348 const auto& [k, v] = oneKV;
349 return complete.at(k) == v;
350 });
351 };
352 std::copy_if(listInstances.begin(), listInstances.end(), std::inserter(filteredInstances, filteredInstances.end()), partialFitsComplete);
353
Václav Kubernátcb3af402020-02-12 16:49:17 +0100354 std::set<Completion> validValues;
Václav Kubernát43908fb2020-01-02 19:05:51 +0100355
Václav Kubernátcb3af402020-02-12 16:49:17 +0100356 std::transform(filteredInstances.begin(), filteredInstances.end(), std::inserter(validValues, validValues.end()), [&parserContext](const auto& instance) {
357 return Completion{leafDataToCompletion(instance.at(parserContext.m_tmpListKeyLeafPath.m_node.second))};
Václav Kubernát43908fb2020-01-02 19:05:51 +0100358 });
359
360 parserContext.m_suggestions = validValues;
361 }
362};
363
Václav Kubernát329c6c32019-02-06 16:41:53 +0100364struct suggestKeysEnd_class {
365 template <typename T, typename Iterator, typename Context>
366 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
367 {
368 auto& parserContext = x3::get<parser_context_tag>(context);
369 const auto& schema = parserContext.m_schema;
370
371 parserContext.m_completionIterator = begin;
Václav Kubernát72749c62020-01-03 16:47:34 +0100372 const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát329c6c32019-02-06 16:41:53 +0100373 if (generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys).empty()) {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100374 parserContext.m_suggestions = {Completion{"]/"}};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100375 } else {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100376 parserContext.m_suggestions = {Completion{"]["}};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100377 }
378 }
379};
Václav Kubernát57272422019-02-08 12:48:24 +0100380
Václav Kubernát672889c2020-05-27 04:11:36 +0200381template <typename T>
382std::string commandNamesVisitor (boost::type<T>)
383{
384 return T::name;
385}
Václav Kubernát57272422019-02-08 12:48:24 +0100386
387struct createCommandSuggestions_class {
388 template <typename T, typename Iterator, typename Context>
389 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
390 {
391 auto& parserContext = x3::get<parser_context_tag>(context);
392 parserContext.m_completionIterator = begin;
393
394 parserContext.m_suggestions.clear();
395 boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([&parserContext](auto cmd) {
Václav Kubernát672889c2020-05-27 04:11:36 +0200396 parserContext.m_suggestions.insert({commandNamesVisitor(cmd), " "});
Václav Kubernát57272422019-02-08 12:48:24 +0100397 });
398 }
399};
Václav Kubernátac035d62019-02-18 10:59:08 +0100400
401struct completing_class {
402 template <typename T, typename Iterator, typename Context>
403 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
404 {
405 auto& parserContext = x3::get<parser_context_tag>(context);
406
407 if (!parserContext.m_completing)
408 _pass(context) = false;
409 }
410};