blob: a8dd4aee766929e1fdcd23d4c43e37f46c219b7e [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át744f57f2018-06-29 22:46:26 +020047struct 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át7707cae2020-01-16 12:04:53 +010061struct 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át43908fb2020-01-02 19:05:51 +010072 listNode.m_prefix = parserContext.m_curModule.flat_map([] (auto mod) { return boost::optional<module_>{{mod}}; });;
Václav Kubernát7707cae2020-01-16 12:04:53 +010073 listNode.m_suffix = list_{parserContext.m_tmpListName};
74 location.m_nodes.push_back(listNode);
75 parserContext.m_tmpListKeyLeafPath.m_location = location;
Václav Kubernát43908fb2020-01-02 19:05:51 +010076 parserContext.m_tmpListKeyLeafPath.m_node = { parserContext.m_curModule, ast };
Václav Kubernát7707cae2020-01-16 12:04:53 +010077 } else {
78 parserContext.m_errorMsg = parserContext.m_tmpListName + " is not indexed by \"" + ast + "\".";
79 _pass(context) = false;
80 }
81 }
82};
Václav Kubernát89728d82018-09-13 16:28:28 +020083
Václav Kubernát744f57f2018-06-29 22:46:26 +020084struct module_identifier_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020085
86struct listPrefix_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át48fc3832018-05-28 14:21:22 +020091 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020092
Václav Kubernát72749c62020-01-03 16:47:34 +010093 if (schema.isList(parserContext.currentSchemaPath(), {parserContext.m_curModule, ast})) {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020094 parserContext.m_tmpListName = ast;
95 } else {
96 _pass(context) = false;
97 }
98 }
99};
100
101struct listSuffix_class {
102 template <typename T, typename Iterator, typename Context>
103 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
104 {
105 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +0200106 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200107
Václav Kubernát72749c62020-01-03 16:47:34 +0100108 const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200109 std::set<std::string> keysSupplied;
110 for (const auto& it : ast)
111 keysSupplied.insert(it.first);
112
113 if (keysNeeded != keysSupplied) {
114 parserContext.m_errorMsg = "Not enough keys for " + parserContext.m_tmpListName + ". " +
115 "These keys were not supplied:";
116 std::set<std::string> missingKeys;
117 std::set_difference(keysNeeded.begin(), keysNeeded.end(),
118 keysSupplied.begin(), keysSupplied.end(),
119 std::inserter(missingKeys, missingKeys.end()));
120
121 for (const auto& it : missingKeys)
122 parserContext.m_errorMsg += " " + it;
123 parserContext.m_errorMsg += ".";
124
125 _pass(context) = false;
126 }
127 }
Václav Kubernát41378452018-06-06 16:29:40 +0200128
129 template <typename Iterator, typename Exception, typename Context>
130 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
131 {
132 auto& parserContext = x3::get<parser_context_tag>(context);
133 if (parserContext.m_errorMsg.empty())
134 parserContext.m_errorMsg = "Expecting ']' here:";
135 return x3::error_handler_result::rethrow;
Václav Kubernát41378452018-06-06 16:29:40 +0200136 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200137};
138struct listElement_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200139 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200140 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200141 {
142 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200143 if (parserContext.m_errorMsg.empty()) {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200144 return x3::error_handler_result::fail;
Václav Kubernát41378452018-06-06 16:29:40 +0200145 } else {
146 return x3::error_handler_result::rethrow;
147 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200148 }
149};
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200150struct list_class {
151 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 Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200156
Václav Kubernát72749c62020-01-03 16:47:34 +0100157 if (!schema.isList(parserContext.currentSchemaPath(), {parserContext.m_curModule, ast.m_name})) {
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200158 _pass(context) = false;
159 }
160 }
161};
Václav Kubernát60d6f292018-05-25 09:45:32 +0200162struct nodeup_class {
163 template <typename T, typename Iterator, typename Context>
164 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
165 {
166 auto& parserContext = x3::get<parser_context_tag>(context);
167
Václav Kubernát72749c62020-01-03 16:47:34 +0100168 if (parserContext.currentSchemaPath().m_nodes.empty())
Václav Kubernát60d6f292018-05-25 09:45:32 +0200169 _pass(context) = false;
Václav Kubernát60d6f292018-05-25 09:45:32 +0200170 }
171};
172
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200173struct container_class {
174 template <typename T, typename Iterator, typename Context>
175 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
176 {
177 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +0200178 const auto& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200179
Václav Kubernát72749c62020-01-03 16:47:34 +0100180 if (!schema.isContainer(parserContext.currentSchemaPath(), {parserContext.m_curModule, ast.m_name}))
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200181 _pass(context) = false;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200182 }
183};
184
Václav Kubernát07204242018-06-04 18:12:09 +0200185struct leaf_class {
186 template <typename T, typename Iterator, typename Context>
187 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
188 {
189 auto& parserContext = x3::get<parser_context_tag>(context);
190 const auto& schema = parserContext.m_schema;
191
Václav Kubernát72749c62020-01-03 16:47:34 +0100192 if (!schema.isLeaf(parserContext.currentSchemaPath(), {parserContext.m_curModule, ast.m_name}))
Václav Kubernát744f57f2018-06-29 22:46:26 +0200193 _pass(context) = false;
194 }
195};
196
Václav Kubernát744f57f2018-06-29 22:46:26 +0200197struct module_class {
198 template <typename T, typename Iterator, typename Context>
199 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
200 {
201 auto& parserContext = x3::get<parser_context_tag>(context);
202 const auto& schema = parserContext.m_schema;
203
Václav Kubernát75877de2019-11-20 17:43:02 +0100204 if (schema.isModule(ast.m_name)) {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200205 parserContext.m_curModule = ast.m_name;
206 parserContext.m_topLevelModulePresent = true;
Václav Kubernát07204242018-06-04 18:12:09 +0200207 } else {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200208 parserContext.m_errorMsg = "Invalid module name.";
Václav Kubernát07204242018-06-04 18:12:09 +0200209 _pass(context) = false;
210 }
211 }
212};
213
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200214struct schemaNode_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200215 template <typename T, typename Iterator, typename Context>
Václav Kubernát744f57f2018-06-29 22:46:26 +0200216 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200217 {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200218 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100219 parserContext.pushPathFragment(ast);
220 parserContext.m_curModule = boost::none;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200221 }
Václav Kubernát744f57f2018-06-29 22:46:26 +0200222};
Václav Kubernát07204242018-06-04 18:12:09 +0200223
Václav Kubernát39ae9592019-02-05 17:35:16 +0100224struct dataNodeList_class {
225 template <typename T, typename Iterator, typename Context>
226 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
227 {
228 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100229 parserContext.pushPathFragment(ast);
Václav Kubernát39ae9592019-02-05 17:35:16 +0100230 }
231};
Václav Kubernát5c75b252018-10-10 18:33:47 +0200232
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200233struct dataNode_class {
234 template <typename T, typename Iterator, typename Context>
235 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
236 {
237 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100238 parserContext.pushPathFragment(ast);
239 parserContext.m_curModule = boost::none;
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200240 }
241};
242
Václav Kubernát37171a12018-08-31 17:01:48 +0200243struct absoluteStart_class {
244 template <typename T, typename Iterator, typename Context>
245 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
246 {
247 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100248 parserContext.clearPath();
Václav Kubernát37171a12018-08-31 17:01:48 +0200249 }
250};
251
Václav Kubernát5c75b252018-10-10 18:33:47 +0200252struct dataNodesListEnd_class;
253
254struct dataPathListEnd_class;
255
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200256struct dataPath_class {
257 template <typename Iterator, typename Exception, typename Context>
258 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
259 {
260 auto& parserContext = x3::get<parser_context_tag>(context);
261 if (parserContext.m_errorMsg.empty()) {
262 parserContext.m_errorMsg = "Expected path.";
263 return x3::error_handler_result::fail;
264 } else {
265 return x3::error_handler_result::rethrow;
266 }
267 }
268};
269
270struct schemaPath_class {
Václav Kubernát07204242018-06-04 18:12:09 +0200271 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200272 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernát07204242018-06-04 18:12:09 +0200273 {
274 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200275 if (parserContext.m_errorMsg.empty()) {
276 parserContext.m_errorMsg = "Expected path.";
Václav Kubernát07204242018-06-04 18:12:09 +0200277 return x3::error_handler_result::fail;
Václav Kubernát41378452018-06-06 16:29:40 +0200278 } else {
279 return x3::error_handler_result::rethrow;
280 }
Václav Kubernát07204242018-06-04 18:12:09 +0200281 }
282};
283
Václav Kubernát6d791432018-10-25 16:00:35 +0200284struct discard_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200285
Václav Kubernát11afac72018-07-18 14:59:53 +0200286struct ls_class;
287
Václav Kubernát744f57f2018-06-29 22:46:26 +0200288struct cd_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200289 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át41378452018-06-06 16:29:40 +0200293 if (parserContext.m_errorMsg.empty())
294 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
295 return x3::error_handler_result::rethrow;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200296 }
297};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200298
Václav Kubernát6797df02019-03-18 20:21:50 +0100299struct presenceContainerPath_class {
Václav Kubernátb61336d2018-05-28 17:35:03 +0200300 template <typename T, typename Iterator, typename Context>
301 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
302 {
303 auto& parserContext = x3::get<parser_context_tag>(context);
304 const auto& schema = parserContext.m_schema;
305 try {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200306 boost::optional<std::string> module;
Václav Kubernát6797df02019-03-18 20:21:50 +0100307 if (ast.m_nodes.back().m_prefix)
308 module = ast.m_nodes.back().m_prefix.value().m_name;
309 container_ cont = boost::get<container_>(ast.m_nodes.back().m_suffix);
Václav Kubernát72749c62020-01-03 16:47:34 +0100310 auto location = pathWithoutLastNode(parserContext.currentSchemaPath());
Václav Kubernátb61336d2018-05-28 17:35:03 +0200311
Václav Kubernát744f57f2018-06-29 22:46:26 +0200312 if (!schema.isPresenceContainer(location, {module, cont.m_name})) {
Václav Kubernát41378452018-06-06 16:29:40 +0200313 parserContext.m_errorMsg = "This container is not a presence container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200314 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200315 }
316 } catch (boost::bad_get&) {
Václav Kubernát41378452018-06-06 16:29:40 +0200317 parserContext.m_errorMsg = "This is not a container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200318 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200319 }
320 }
Václav Kubernát6797df02019-03-18 20:21:50 +0100321};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200322
Václav Kubernátf5f64f02019-03-19 17:15:47 +0100323struct listInstancePath_class {
324 template <typename T, typename Iterator, typename Context>
325 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
326 {
327 auto& parserContext = x3::get<parser_context_tag>(context);
328 if (ast.m_nodes.back().m_suffix.type() != typeid(listElement_)) {
329 parserContext.m_errorMsg = "This is not a list instance.";
330 _pass(context) = false;
331 }
332 }
333};
334
Václav Kubernát8028f942019-09-25 16:03:23 +0200335struct space_separator_class {
336 template <typename T, typename Iterator, typename Context>
337 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
338 {
339 auto& parserContext = x3::get<parser_context_tag>(context);
340 parserContext.m_suggestions.clear();
Václav Kubernát1ed4aa32020-01-23 13:13:28 +0100341 parserContext.m_completionIterator = boost::none;
Václav Kubernát8028f942019-09-25 16:03:23 +0200342 }
343};
344
Václav Kubernát6797df02019-03-18 20:21:50 +0100345struct create_class {
Václav Kubernátb61336d2018-05-28 17:35:03 +0200346 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200347 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernátb61336d2018-05-28 17:35:03 +0200348 {
349 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200350 if (parserContext.m_errorMsg.empty())
351 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
352 return x3::error_handler_result::rethrow;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200353 }
354};
355
Václav Kubernát6797df02019-03-18 20:21:50 +0100356struct delete_class {
357 template <typename Iterator, typename Exception, typename Context>
358 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
359 {
360 auto& parserContext = x3::get<parser_context_tag>(context);
361 if (parserContext.m_errorMsg.empty())
362 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
363 return x3::error_handler_result::rethrow;
364 }
Václav Kubernátb61336d2018-05-28 17:35:03 +0200365};
366
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200367struct leaf_path_class {
368 template <typename T, typename Iterator, typename Context>
Václav Kubernát7707cae2020-01-16 12:04:53 +0100369 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200370 {
371 auto& parserContext = x3::get<parser_context_tag>(context);
372 try {
Václav Kubernát7707cae2020-01-16 12:04:53 +0100373 auto lastNode = parserContext.currentSchemaPath().m_nodes.back();
374 auto leaf = boost::get<leaf_>(lastNode.m_suffix);
375 auto location = pathWithoutLastNode(parserContext.currentSchemaPath());
376 ModuleNodePair node{lastNode.m_prefix.flat_map([](const auto& it) { return boost::optional<std::string>{it.m_name}; }), leaf.m_name};
377
378 parserContext.m_tmpListKeyLeafPath.m_location = location;
379 parserContext.m_tmpListKeyLeafPath.m_node = node;
380
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200381 } catch (boost::bad_get&) {
382 parserContext.m_errorMsg = "This is not a path to leaf.";
383 _pass(context) = false;
384 }
385 }
386};
387
Václav Kubernáteeb38842019-03-20 19:46:05 +0100388// This handler only checks if the module exists
389// It doesn't set any ParserContext flags (except the error message)
390struct data_module_prefix_class {
391 template <typename T, typename Iterator, typename Context>
392 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
393 {
394 auto& parserContext = x3::get<parser_context_tag>(context);
395 const auto& schema = parserContext.m_schema;
396
Václav Kubernát72749c62020-01-03 16:47:34 +0100397 if (!schema.isModule(parserContext.currentSchemaPath(), ast.m_name)) {
Václav Kubernáteeb38842019-03-20 19:46:05 +0100398 parserContext.m_errorMsg = "Invalid module name.";
399 _pass(context) = false;
400 }
401 }
402};
403
Václav Kubernátebca2552018-06-08 19:06:02 +0200404struct leaf_data_class {
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200405 template <typename Iterator, typename Exception, typename Context>
406 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
407 {
408 auto& parserContext = x3::get<parser_context_tag>(context);
409 auto& schema = parserContext.m_schema;
410 if (parserContext.m_errorMsg.empty()) {
Václav Kubernát7707cae2020-01-16 12:04:53 +0100411 parserContext.m_errorMsg = "leaf data type mismatch: Expected " +
412 leafDataTypeToString(schema.leafType(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node)) + " here:";
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200413 return x3::error_handler_result::fail;
414 }
415 return x3::error_handler_result::rethrow;
416 }
Václav Kubernátebca2552018-06-08 19:06:02 +0200417};
418
Václav Kubernát90de9502019-11-20 17:19:44 +0100419template <yang::LeafDataTypes TYPE>
Václav Kubernátebca2552018-06-08 19:06:02 +0200420struct leaf_data_base_class {
Václav Kubernátebca2552018-06-08 19:06:02 +0200421 template <typename T, typename Iterator, typename Context>
422 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
423 {
424 auto& parserContext = x3::get<parser_context_tag>(context);
425 auto& schema = parserContext.m_schema;
426
Václav Kubernát7707cae2020-01-16 12:04:53 +0100427 auto type = schema.leafType(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node);
Václav Kubernát6a8d1d92019-04-24 20:30:36 +0200428 if (type == yang::LeafDataTypes::LeafRef) {
Václav Kubernátf0fe7692020-02-19 14:39:47 +0100429 type = schema.leafrefBaseType(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node);
Václav Kubernát6a8d1d92019-04-24 20:30:36 +0200430 }
Václav Kubernát7707cae2020-01-16 12:04:53 +0100431
Václav Kubernát87856e42020-02-14 16:58:38 +0100432 if (type != TYPE) {
Václav Kubernátebca2552018-06-08 19:06:02 +0200433 _pass(context) = false;
434 }
435 }
436};
437
Ivona Oboňová88c78ca2019-07-02 18:40:07 +0200438struct leaf_data_binary_data_class;
439
440struct leaf_data_enum_class : leaf_data_base_class<yang::LeafDataTypes::Enum> {
Václav Kubernátebca2552018-06-08 19:06:02 +0200441 template <typename T, typename Iterator, typename Context>
442 void on_success(Iterator const& start, Iterator const& end, T& ast, Context const& context)
443 {
444 leaf_data_base_class::on_success(start, end, ast, context);
Václav Kubernáteeb38842019-03-20 19:46:05 +0100445 // Base class on_success cannot return for us, so we check if it failed the parser.
446 if (_pass(context) == false)
447 return;
Václav Kubernátebca2552018-06-08 19:06:02 +0200448 auto& parserContext = x3::get<parser_context_tag>(context);
449 auto& schema = parserContext.m_schema;
450
Václav Kubernát7707cae2020-01-16 12:04:53 +0100451 if (!schema.leafEnumHasValue(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node, ast.m_value)) {
Václav Kubernátebca2552018-06-08 19:06:02 +0200452 _pass(context) = false;
Václav Kubernát777704d2020-01-15 18:48:06 +0100453 parserContext.m_errorMsg = "leaf data type mismatch: Expected an enum here. Allowed values:";
Václav Kubernát7707cae2020-01-16 12:04:53 +0100454 for (const auto& it : schema.enumValues(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node)) {
Václav Kubernát69710252019-11-15 17:08:30 +0100455 parserContext.m_errorMsg += " " + it;
456 }
Václav Kubernátebca2552018-06-08 19:06:02 +0200457 }
458 }
459};
460
Václav Kubernáteeb38842019-03-20 19:46:05 +0100461struct leaf_data_identityRef_data_class;
462
Ivona Oboňová88c78ca2019-07-02 18:40:07 +0200463struct leaf_data_identityRef_class : leaf_data_base_class<yang::LeafDataTypes::IdentityRef> {
Václav Kubernáteeb38842019-03-20 19:46:05 +0100464 template <typename T, typename Iterator, typename Context>
465 void on_success(Iterator const& start, Iterator const& end, T& ast, Context const& context)
466 {
467 // FIXME: can I reuse leaf_data_enum_class somehow..?
468 leaf_data_base_class::on_success(start, end, ast, context);
469 // Base class on_success cannot return for us, so we check if it failed the parser.
470 if (_pass(context) == false)
471 return;
472 auto& parserContext = x3::get<parser_context_tag>(context);
473 auto& schema = parserContext.m_schema;
Václav Kubernáteeb38842019-03-20 19:46:05 +0100474
475 ModuleValuePair pair;
476 if (ast.m_prefix) {
477 pair.first = ast.m_prefix.get().m_name;
478 }
479 pair.second = ast.m_value;
480
Václav Kubernát7707cae2020-01-16 12:04:53 +0100481 if (!schema.leafIdentityIsValid(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node, pair)) {
Václav Kubernáteeb38842019-03-20 19:46:05 +0100482 _pass(context) = false;
483 }
484 }
485};
486
Václav Kubernát07204242018-06-04 18:12:09 +0200487struct set_class {
Václav Kubernát07204242018-06-04 18:12:09 +0200488 template <typename Iterator, typename Exception, typename Context>
489 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
490 {
491 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200492 if (parserContext.m_errorMsg.empty())
493 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
494 return x3::error_handler_result::rethrow;
Václav Kubernát07204242018-06-04 18:12:09 +0200495 }
496};
497
Václav Kubernát812ee282018-08-30 17:10:03 +0200498struct commit_class;
499
Václav Kubernát9cfcd872020-02-18 12:34:02 +0100500struct describe_class;
501
Václav Kubernát054cc992019-02-21 14:23:52 +0100502struct help_class;
503
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200504struct get_class;
505
Václav Kubernátb61336d2018-05-28 17:35:03 +0200506struct command_class {
507 template <typename Iterator, typename Exception, typename Context>
508 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
509 {
510 auto& parserContext = x3::get<parser_context_tag>(context);
511 auto& error_handler = x3::get<x3::error_handler_tag>(context).get();
Václav Kubernát41378452018-06-06 16:29:40 +0200512 if (parserContext.m_errorMsg.empty()) {
513 parserContext.m_errorMsg = "Unknown command.";
514 }
515 error_handler(x.where(), parserContext.m_errorMsg);
Václav Kubernátb61336d2018-05-28 17:35:03 +0200516 return x3::error_handler_result::fail;
517 }
518};
Václav Kubernát5c75b252018-10-10 18:33:47 +0200519
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100520struct initializePath_class {
Václav Kubernát5c75b252018-10-10 18:33:47 +0200521 template <typename T, typename Iterator, typename Context>
522 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
523 {
524 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát72749c62020-01-03 16:47:34 +0100525 parserContext.resetPath();
Václav Kubernát5c75b252018-10-10 18:33:47 +0200526 parserContext.m_tmpListKeys.clear();
527 parserContext.m_tmpListName.clear();
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100528 parserContext.m_suggestions.clear();
Václav Kubernát5c75b252018-10-10 18:33:47 +0200529 }
530};
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100531
532struct trailingSlash_class;
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100533
534struct createPathSuggestions_class {
535 template <typename T, typename Iterator, typename Context>
536 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
537 {
538 auto& parserContext = x3::get<parser_context_tag>(context);
539 const auto& schema = parserContext.m_schema;
540
541 parserContext.m_completionIterator = begin;
Václav Kubernát72749c62020-01-03 16:47:34 +0100542 auto suggestions = schema.childNodes(parserContext.currentSchemaPath(), Recursion::NonRecursive);
Václav Kubernátcb3af402020-02-12 16:49:17 +0100543 std::set<Completion> suffixesAdded;
Václav Kubernáte69133a2019-11-01 19:01:34 +0100544 std::transform(suggestions.begin(), suggestions.end(),
545 std::inserter(suffixesAdded, suffixesAdded.end()),
546 [&parserContext, &schema] (auto it) {
547 ModuleNodePair node;
548 if (auto colonPos = it.find(":"); colonPos != it.npos) {
549 node.first = it.substr(0, colonPos);
550 node.second = it.substr(colonPos + 1, node.second.npos);
551 } else {
552 node.first = boost::none;
553 node.second = it;
554 }
555
Václav Kubernát72749c62020-01-03 16:47:34 +0100556 if (schema.isLeaf(parserContext.currentSchemaPath(), node)) {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100557 return Completion{it + " "};
Václav Kubernáte69133a2019-11-01 19:01:34 +0100558 }
Václav Kubernát72749c62020-01-03 16:47:34 +0100559 if (schema.isContainer(parserContext.currentSchemaPath(), node)) {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100560 return Completion{it + "/"};
Václav Kubernáte69133a2019-11-01 19:01:34 +0100561 }
Václav Kubernát72749c62020-01-03 16:47:34 +0100562 if (schema.isList(parserContext.currentSchemaPath(), node)) {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100563 return Completion{it, "[", Completion::WhenToAdd::IfFullMatch};
Václav Kubernáte69133a2019-11-01 19:01:34 +0100564 }
Václav Kubernátcb3af402020-02-12 16:49:17 +0100565 return Completion{it};
Václav Kubernáte69133a2019-11-01 19:01:34 +0100566 });
567 parserContext.m_suggestions = suffixesAdded;
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100568 }
569};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100570
Václav Kubernátcb3af402020-02-12 16:49:17 +0100571std::set<Completion> generateMissingKeyCompletionSet(std::set<std::string> keysNeeded, std::map<std::string, leaf_data_> currentSet);
Václav Kubernát329c6c32019-02-06 16:41:53 +0100572
573struct createKeySuggestions_class {
574 template <typename T, typename Iterator, typename Context>
575 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
576 {
577 auto& parserContext = x3::get<parser_context_tag>(context);
578 const auto& schema = parserContext.m_schema;
579
580 parserContext.m_completionIterator = begin;
581
Václav Kubernát72749c62020-01-03 16:47:34 +0100582 const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát329c6c32019-02-06 16:41:53 +0100583 parserContext.m_suggestions = generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys);
584 }
585};
586
Václav Kubernát43908fb2020-01-02 19:05:51 +0100587std::string leafDataToCompletion(const leaf_data_& value);
588
589struct createValueSuggestions_class {
590 template <typename T, typename Iterator, typename Context>
591 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
592 {
593 auto& parserContext = x3::get<parser_context_tag>(context);
594 if (!parserContext.m_completing) {
595 return;
596 }
597 const auto& dataQuery = parserContext.m_dataquery;
598
599 parserContext.m_completionIterator = begin;
600 auto listInstances = dataQuery->listKeys(parserContext.currentDataPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
601
602 decltype(listInstances) filteredInstances;
603 //This filters out instances, which don't correspond to the partial instance we have.
604 const auto partialFitsComplete = [&parserContext] (const auto& complete) {
605 const auto& partial = parserContext.m_tmpListKeys;
606 return std::all_of(partial.begin(), partial.end(), [&complete] (const auto& oneKV) {
607 const auto& [k, v] = oneKV;
608 return complete.at(k) == v;
609 });
610 };
611 std::copy_if(listInstances.begin(), listInstances.end(), std::inserter(filteredInstances, filteredInstances.end()), partialFitsComplete);
612
Václav Kubernátcb3af402020-02-12 16:49:17 +0100613 std::set<Completion> validValues;
Václav Kubernát43908fb2020-01-02 19:05:51 +0100614
Václav Kubernátcb3af402020-02-12 16:49:17 +0100615 std::transform(filteredInstances.begin(), filteredInstances.end(), std::inserter(validValues, validValues.end()), [&parserContext](const auto& instance) {
616 return Completion{leafDataToCompletion(instance.at(parserContext.m_tmpListKeyLeafPath.m_node.second))};
Václav Kubernát43908fb2020-01-02 19:05:51 +0100617 });
618
619 parserContext.m_suggestions = validValues;
620 }
621};
622
Václav Kubernát329c6c32019-02-06 16:41:53 +0100623struct suggestKeysEnd_class {
624 template <typename T, typename Iterator, typename Context>
625 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
626 {
627 auto& parserContext = x3::get<parser_context_tag>(context);
628 const auto& schema = parserContext.m_schema;
629
630 parserContext.m_completionIterator = begin;
Václav Kubernát72749c62020-01-03 16:47:34 +0100631 const auto& keysNeeded = schema.listKeys(parserContext.currentSchemaPath(), {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát329c6c32019-02-06 16:41:53 +0100632 if (generateMissingKeyCompletionSet(keysNeeded, parserContext.m_tmpListKeys).empty()) {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100633 parserContext.m_suggestions = {Completion{"]/"}};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100634 } else {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100635 parserContext.m_suggestions = {Completion{"]["}};
Václav Kubernát329c6c32019-02-06 16:41:53 +0100636 }
637 }
638};
Václav Kubernát57272422019-02-08 12:48:24 +0100639
640struct commandNamesVisitor {
641 template <typename T>
Václav Kubernátcb3af402020-02-12 16:49:17 +0100642 std::string operator()(boost::type<T>)
Václav Kubernát57272422019-02-08 12:48:24 +0100643 {
644 return T::name;
645 }
646};
647
648struct createCommandSuggestions_class {
649 template <typename T, typename Iterator, typename Context>
650 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
651 {
652 auto& parserContext = x3::get<parser_context_tag>(context);
653 parserContext.m_completionIterator = begin;
654
655 parserContext.m_suggestions.clear();
656 boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([&parserContext](auto cmd) {
Václav Kubernát0165e6c2020-02-17 18:18:14 +0100657 parserContext.m_suggestions.insert({commandNamesVisitor()(cmd), " "});
Václav Kubernát57272422019-02-08 12:48:24 +0100658 });
659 }
660};
Václav Kubernátac035d62019-02-18 10:59:08 +0100661
662struct completing_class {
663 template <typename T, typename Iterator, typename Context>
664 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
665 {
666 auto& parserContext = x3::get<parser_context_tag>(context);
667
668 if (!parserContext.m_completing)
669 _pass(context) = false;
670 }
671};
Václav Kubernát989b5de2019-02-20 16:28:35 +0100672
Václav Kubernát4294a852020-02-14 15:07:14 +0100673template<yang::LeafDataTypes TYPE>
674struct createSetSuggestions_class {
Václav Kubernátcb3af402020-02-12 16:49:17 +0100675 std::set<std::string> getSuggestions(const ParserContext& ctx, const Schema& schema) const;
Václav Kubernát4294a852020-02-14 15:07:14 +0100676
Václav Kubernát989b5de2019-02-20 16:28:35 +0100677 template <typename T, typename Iterator, typename Context>
678 void on_success(Iterator const& begin, Iterator const&, T&, Context const& context)
679 {
680 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát989b5de2019-02-20 16:28:35 +0100681 const Schema& schema = parserContext.m_schema;
682
Václav Kubernát4294a852020-02-14 15:07:14 +0100683 // Only generate completions if the type is correct so that we don't
Václav Kubernáteeb38842019-03-20 19:46:05 +0100684 // overwrite some other completions.
Václav Kubernát4294a852020-02-14 15:07:14 +0100685 if (schema.leafType(parserContext.m_tmpListKeyLeafPath.m_location, parserContext.m_tmpListKeyLeafPath.m_node) == TYPE) {
Václav Kubernát117f7b52020-01-23 16:10:55 +0100686 parserContext.m_completionIterator = begin;
Václav Kubernátcb3af402020-02-12 16:49:17 +0100687 auto suggestions = getSuggestions(parserContext, schema);
688 std::set<Completion> res;
689 std::transform(suggestions.begin(), suggestions.end(), std::inserter(res, res.end()), [](auto it) { return Completion{it}; });
690 parserContext.m_suggestions = res;
Václav Kubernát117f7b52020-01-23 16:10:55 +0100691 }
Václav Kubernát989b5de2019-02-20 16:28:35 +0100692 }
693};