blob: c6701684153b84ac62677e1932b64099fd516342 [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át195eeea2018-05-18 13:52:36 +020011#include "parser_context.hpp"
Václav Kubernát48fc3832018-05-28 14:21:22 +020012#include "schema.hpp"
Václav Kubernátebca2552018-06-08 19:06:02 +020013#include "utils.hpp"
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020014
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020015struct keyValue_class {
16 template <typename T, typename Iterator, typename Context>
17 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
18 {
19 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +020020 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020021
22 if (parserContext.m_tmpListKeys.find(ast.first) != parserContext.m_tmpListKeys.end()) {
23 _pass(context) = false;
24 parserContext.m_errorMsg = "Key \"" + ast.first + "\" was entered more than once.";
Václav Kubernát744f57f2018-06-29 22:46:26 +020025 } else if (!schema.listHasKey(parserContext.m_curPath, {parserContext.m_curModule, parserContext.m_tmpListName}, ast.first)) {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020026 _pass(context) = false;
27 parserContext.m_errorMsg = parserContext.m_tmpListName + " is not indexed by \"" + ast.first + "\".";
Václav Kubernát41378452018-06-06 16:29:40 +020028 } else {
29 parserContext.m_tmpListKeys.insert(ast.first);
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020030 }
31 }
Václav Kubernát41378452018-06-06 16:29:40 +020032
33 template <typename Iterator, typename Exception, typename Context>
34 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
35 {
36 auto& parserContext = x3::get<parser_context_tag>(context);
37 parserContext.m_errorMsg = "Error parsing key values here:";
38 return x3::error_handler_result::rethrow;
39 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020040};
Václav Kubernát41378452018-06-06 16:29:40 +020041
Václav Kubernát744f57f2018-06-29 22:46:26 +020042struct node_identifier_class {
43 template <typename T, typename Iterator, typename Context>
44 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
45 {
46 auto& parserContext = x3::get<parser_context_tag>(context);
47
48 if (!parserContext.m_topLevelModulePresent) {
49 if (parserContext.m_errorMsg.empty())
50 parserContext.m_errorMsg = "You have to specify a top level module.";
51 _pass(context) = false;
52 }
53 }
54};
55
Václav Kubernát89728d82018-09-13 16:28:28 +020056struct key_identifier_class;
57
Václav Kubernát744f57f2018-06-29 22:46:26 +020058struct module_identifier_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020059
60struct listPrefix_class {
61 template <typename T, typename Iterator, typename Context>
62 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
63 {
64 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +020065 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020066
Václav Kubernát744f57f2018-06-29 22:46:26 +020067 if (schema.isList(parserContext.m_curPath, {parserContext.m_curModule, ast})) {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020068 parserContext.m_tmpListName = ast;
69 } else {
70 _pass(context) = false;
71 }
72 }
73};
74
75struct listSuffix_class {
76 template <typename T, typename Iterator, typename Context>
77 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
78 {
79 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +020080 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020081
Václav Kubernát744f57f2018-06-29 22:46:26 +020082 const auto& keysNeeded = schema.listKeys(parserContext.m_curPath, {parserContext.m_curModule, parserContext.m_tmpListName});
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020083 std::set<std::string> keysSupplied;
84 for (const auto& it : ast)
85 keysSupplied.insert(it.first);
86
87 if (keysNeeded != keysSupplied) {
88 parserContext.m_errorMsg = "Not enough keys for " + parserContext.m_tmpListName + ". " +
89 "These keys were not supplied:";
90 std::set<std::string> missingKeys;
91 std::set_difference(keysNeeded.begin(), keysNeeded.end(),
92 keysSupplied.begin(), keysSupplied.end(),
93 std::inserter(missingKeys, missingKeys.end()));
94
95 for (const auto& it : missingKeys)
96 parserContext.m_errorMsg += " " + it;
97 parserContext.m_errorMsg += ".";
98
99 _pass(context) = false;
100 }
101 }
Václav Kubernát41378452018-06-06 16:29:40 +0200102
103 template <typename Iterator, typename Exception, typename Context>
104 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
105 {
106 auto& parserContext = x3::get<parser_context_tag>(context);
107 if (parserContext.m_errorMsg.empty())
108 parserContext.m_errorMsg = "Expecting ']' here:";
109 return x3::error_handler_result::rethrow;
Václav Kubernát41378452018-06-06 16:29:40 +0200110 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200111};
112struct listElement_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200113 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200114 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200115 {
116 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200117 if (parserContext.m_errorMsg.empty()) {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200118 return x3::error_handler_result::fail;
Václav Kubernát41378452018-06-06 16:29:40 +0200119 } else {
120 return x3::error_handler_result::rethrow;
121 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200122 }
123};
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200124struct list_class {
125 template <typename T, typename Iterator, typename Context>
126 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
127 {
128 auto& parserContext = x3::get<parser_context_tag>(context);
129 const Schema& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200130
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200131 if (!schema.isList(parserContext.m_curPath, {parserContext.m_curModule, ast.m_name})) {
132 _pass(context) = false;
133 }
134 }
135};
Václav Kubernát60d6f292018-05-25 09:45:32 +0200136struct nodeup_class {
137 template <typename T, typename Iterator, typename Context>
138 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
139 {
140 auto& parserContext = x3::get<parser_context_tag>(context);
141
Václav Kubernát744f57f2018-06-29 22:46:26 +0200142 if (parserContext.m_curPath.m_nodes.empty())
Václav Kubernát60d6f292018-05-25 09:45:32 +0200143 _pass(context) = false;
Václav Kubernát60d6f292018-05-25 09:45:32 +0200144 }
145};
146
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200147struct container_class {
148 template <typename T, typename Iterator, typename Context>
149 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
150 {
151 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát48fc3832018-05-28 14:21:22 +0200152 const auto& schema = parserContext.m_schema;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200153
Václav Kubernát744f57f2018-06-29 22:46:26 +0200154 if (!schema.isContainer(parserContext.m_curPath, {parserContext.m_curModule, ast.m_name}))
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200155 _pass(context) = false;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200156 }
157};
158
Václav Kubernát07204242018-06-04 18:12:09 +0200159struct leaf_class {
160 template <typename T, typename Iterator, typename Context>
161 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
162 {
163 auto& parserContext = x3::get<parser_context_tag>(context);
164 const auto& schema = parserContext.m_schema;
165
Václav Kubernát744f57f2018-06-29 22:46:26 +0200166 if (!schema.isLeaf(parserContext.m_curPath, {parserContext.m_curModule, ast.m_name}))
167 _pass(context) = false;
168 }
169};
170
Václav Kubernát744f57f2018-06-29 22:46:26 +0200171struct module_class {
172 template <typename T, typename Iterator, typename Context>
173 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
174 {
175 auto& parserContext = x3::get<parser_context_tag>(context);
176 const auto& schema = parserContext.m_schema;
177
178 if (schema.isModule(parserContext.m_curPath, ast.m_name)) {
179 parserContext.m_curModule = ast.m_name;
180 parserContext.m_topLevelModulePresent = true;
Václav Kubernát07204242018-06-04 18:12:09 +0200181 } else {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200182 parserContext.m_errorMsg = "Invalid module name.";
Václav Kubernát07204242018-06-04 18:12:09 +0200183 _pass(context) = false;
184 }
185 }
186};
187
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200188struct schemaNode_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200189 template <typename T, typename Iterator, typename Context>
Václav Kubernát744f57f2018-06-29 22:46:26 +0200190 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200191 {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200192 auto& parserContext = x3::get<parser_context_tag>(context);
193 if (ast.m_suffix.type() == typeid(nodeup_)) {
194 parserContext.m_curPath.m_nodes.pop_back();
195 if (parserContext.m_curPath.m_nodes.empty())
196 parserContext.m_topLevelModulePresent = false;
197 } else {
198 parserContext.m_curPath.m_nodes.push_back(ast);
199 parserContext.m_curModule = boost::none;
200 }
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200201 }
Václav Kubernát744f57f2018-06-29 22:46:26 +0200202};
Václav Kubernát07204242018-06-04 18:12:09 +0200203
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200204struct dataNode_class {
205 template <typename T, typename Iterator, typename Context>
206 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
207 {
208 auto& parserContext = x3::get<parser_context_tag>(context);
209 if (ast.m_suffix.type() == typeid(nodeup_)) {
210 parserContext.m_curPath.m_nodes.pop_back();
211 if (parserContext.m_curPath.m_nodes.empty())
212 parserContext.m_topLevelModulePresent = false;
213 } else {
214 parserContext.m_curPath.m_nodes.push_back(dataNodeToSchemaNode(ast));
215 parserContext.m_curModule = boost::none;
216 }
217 }
218};
219
Václav Kubernát37171a12018-08-31 17:01:48 +0200220struct absoluteStart_class {
221 template <typename T, typename Iterator, typename Context>
222 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
223 {
224 auto& parserContext = x3::get<parser_context_tag>(context);
225 parserContext.m_curPath.m_nodes.clear();
226 }
227};
228
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200229struct dataPath_class {
230 template <typename Iterator, typename Exception, typename Context>
231 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
232 {
233 auto& parserContext = x3::get<parser_context_tag>(context);
234 if (parserContext.m_errorMsg.empty()) {
235 parserContext.m_errorMsg = "Expected path.";
236 return x3::error_handler_result::fail;
237 } else {
238 return x3::error_handler_result::rethrow;
239 }
240 }
241};
242
243struct schemaPath_class {
Václav Kubernát07204242018-06-04 18:12:09 +0200244 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200245 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernát07204242018-06-04 18:12:09 +0200246 {
247 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200248 if (parserContext.m_errorMsg.empty()) {
249 parserContext.m_errorMsg = "Expected path.";
Václav Kubernát07204242018-06-04 18:12:09 +0200250 return x3::error_handler_result::fail;
Václav Kubernát41378452018-06-06 16:29:40 +0200251 } else {
252 return x3::error_handler_result::rethrow;
253 }
Václav Kubernát07204242018-06-04 18:12:09 +0200254 }
255};
256
Václav Kubernát6d791432018-10-25 16:00:35 +0200257struct discard_class;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200258
Václav Kubernát11afac72018-07-18 14:59:53 +0200259struct ls_class;
260
Václav Kubernát744f57f2018-06-29 22:46:26 +0200261struct cd_class {
Václav Kubernát0a2a2e82018-05-11 13:59:12 +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át0a2a2e82018-05-11 13:59:12 +0200269 }
270};
Václav Kubernátb61336d2018-05-28 17:35:03 +0200271
272struct presenceContainerPathHandler {
273 template <typename T, typename Iterator, typename Context>
274 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
275 {
276 auto& parserContext = x3::get<parser_context_tag>(context);
277 const auto& schema = parserContext.m_schema;
278 try {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200279 boost::optional<std::string> module;
280 if (ast.m_path.m_nodes.back().m_prefix)
281 module = ast.m_path.m_nodes.back().m_prefix.value().m_name;
282 container_ cont = boost::get<container_>(ast.m_path.m_nodes.back().m_suffix);
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200283 schemaPath_ location = pathWithoutLastNode(parserContext.m_curPath);
Václav Kubernátb61336d2018-05-28 17:35:03 +0200284
Václav Kubernát744f57f2018-06-29 22:46:26 +0200285 if (!schema.isPresenceContainer(location, {module, cont.m_name})) {
Václav Kubernát41378452018-06-06 16:29:40 +0200286 parserContext.m_errorMsg = "This container is not a presence container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200287 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200288 }
289 } catch (boost::bad_get&) {
Václav Kubernát41378452018-06-06 16:29:40 +0200290 parserContext.m_errorMsg = "This is not a container.";
Václav Kubernátb61336d2018-05-28 17:35:03 +0200291 _pass(context) = false;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200292 }
293 }
294
295 template <typename Iterator, typename Exception, typename Context>
Václav Kubernát41378452018-06-06 16:29:40 +0200296 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
Václav Kubernátb61336d2018-05-28 17:35:03 +0200297 {
298 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200299 if (parserContext.m_errorMsg.empty())
300 parserContext.m_errorMsg = "Couldn't parse create/delete command.";
301 return x3::error_handler_result::rethrow;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200302 }
303};
304
305struct create_class : public presenceContainerPathHandler {
306};
307
308struct delete_class : public presenceContainerPathHandler {
309};
310
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200311struct leaf_path_class {
312 template <typename T, typename Iterator, typename Context>
313 void on_success(Iterator const&, Iterator const&, T& ast, Context const& context)
314 {
315 auto& parserContext = x3::get<parser_context_tag>(context);
316 try {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200317 auto leaf = boost::get<leaf_>(ast.m_nodes.back().m_suffix);
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200318 } catch (boost::bad_get&) {
319 parserContext.m_errorMsg = "This is not a path to leaf.";
320 _pass(context) = false;
321 }
322 }
323};
324
Václav Kubernátebca2552018-06-08 19:06:02 +0200325struct leaf_data_class {
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200326 template <typename Iterator, typename Exception, typename Context>
327 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const&, Context const& context)
328 {
329 auto& parserContext = x3::get<parser_context_tag>(context);
330 auto& schema = parserContext.m_schema;
331 if (parserContext.m_errorMsg.empty()) {
Václav Kubernát744f57f2018-06-29 22:46:26 +0200332 leaf_ leaf = boost::get<leaf_>(parserContext.m_curPath.m_nodes.back().m_suffix);
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200333 schemaPath_ location = pathWithoutLastNode(parserContext.m_curPath);
334 if (location.m_nodes.empty()) {
335 parserContext.m_curModule = parserContext.m_curPath.m_nodes.back().m_prefix->m_name;
336 }
Václav Kubernát744f57f2018-06-29 22:46:26 +0200337 parserContext.m_errorMsg = "Expected " + leafDataTypeToString(schema.leafType(location, {parserContext.m_curModule, leaf.m_name})) + " here:";
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200338 return x3::error_handler_result::fail;
339 }
340 return x3::error_handler_result::rethrow;
341 }
Václav Kubernátebca2552018-06-08 19:06:02 +0200342};
343
344struct leaf_data_base_class {
345 yang::LeafDataTypes m_type;
346
347 leaf_data_base_class(yang::LeafDataTypes type)
348 : m_type(type)
349 {
350 }
351
352 template <typename T, typename Iterator, typename Context>
353 void on_success(Iterator const&, Iterator const&, T&, Context const& context)
354 {
355 auto& parserContext = x3::get<parser_context_tag>(context);
356 auto& schema = parserContext.m_schema;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200357 boost::optional<std::string> module;
358 if (parserContext.m_curPath.m_nodes.back().m_prefix)
359 module = parserContext.m_curPath.m_nodes.back().m_prefix.value().m_name;
Václav Kubernátebca2552018-06-08 19:06:02 +0200360
Václav Kubernát744f57f2018-06-29 22:46:26 +0200361 leaf_ leaf = boost::get<leaf_>(parserContext.m_curPath.m_nodes.back().m_suffix);
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200362 schemaPath_ location = pathWithoutLastNode(parserContext.m_curPath);
Václav Kubernátebca2552018-06-08 19:06:02 +0200363
Václav Kubernát744f57f2018-06-29 22:46:26 +0200364 if (schema.leafType(location, {module, leaf.m_name}) != m_type) {
Václav Kubernátebca2552018-06-08 19:06:02 +0200365 _pass(context) = false;
366 }
367 }
368};
369
370struct leaf_data_enum_class : leaf_data_base_class {
371 leaf_data_enum_class()
372 : leaf_data_base_class(yang::LeafDataTypes::Enum)
373 {
374 }
375
376 template <typename T, typename Iterator, typename Context>
377 void on_success(Iterator const& start, Iterator const& end, T& ast, Context const& context)
378 {
379 leaf_data_base_class::on_success(start, end, ast, context);
380 auto& parserContext = x3::get<parser_context_tag>(context);
381 auto& schema = parserContext.m_schema;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200382 boost::optional<std::string> module;
383 if (parserContext.m_curPath.m_nodes.back().m_prefix)
384 module = parserContext.m_curPath.m_nodes.back().m_prefix.value().m_name;
Václav Kubernátebca2552018-06-08 19:06:02 +0200385
Václav Kubernát744f57f2018-06-29 22:46:26 +0200386 leaf_ leaf = boost::get<leaf_>(parserContext.m_curPath.m_nodes.back().m_suffix);
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200387 schemaPath_ location = pathWithoutLastNode(parserContext.m_curPath);
Václav Kubernátebca2552018-06-08 19:06:02 +0200388
Václav Kubernát744f57f2018-06-29 22:46:26 +0200389 if (!schema.leafEnumHasValue(location, {module, leaf.m_name}, ast.m_value)) {
Václav Kubernátebca2552018-06-08 19:06:02 +0200390 _pass(context) = false;
391 }
392 }
393};
394
395struct leaf_data_decimal_class : leaf_data_base_class {
396 leaf_data_decimal_class()
397 : leaf_data_base_class(yang::LeafDataTypes::Decimal)
398 {
399 }
400};
401
402struct leaf_data_bool_class : leaf_data_base_class {
403 leaf_data_bool_class()
404 : leaf_data_base_class(yang::LeafDataTypes::Bool)
405 {
406 }
407};
408
409struct leaf_data_int_class : leaf_data_base_class {
410 leaf_data_int_class()
411 : leaf_data_base_class(yang::LeafDataTypes::Int)
412 {
413 }
414};
415
416struct leaf_data_uint_class : leaf_data_base_class {
417 leaf_data_uint_class()
418 : leaf_data_base_class(yang::LeafDataTypes::Uint)
419 {
420 }
421};
422
423struct leaf_data_string_class : leaf_data_base_class {
424 leaf_data_string_class()
425 : leaf_data_base_class(yang::LeafDataTypes::String)
426 {
427 }
428};
429
Václav Kubernát07204242018-06-04 18:12:09 +0200430struct set_class {
Václav Kubernát07204242018-06-04 18:12:09 +0200431 template <typename Iterator, typename Exception, typename Context>
432 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
433 {
434 auto& parserContext = x3::get<parser_context_tag>(context);
Václav Kubernát41378452018-06-06 16:29:40 +0200435 if (parserContext.m_errorMsg.empty())
436 parserContext.m_errorMsg = "Expected " + x.which() + " here:";
437 return x3::error_handler_result::rethrow;
Václav Kubernát07204242018-06-04 18:12:09 +0200438 }
439};
440
Václav Kubernát812ee282018-08-30 17:10:03 +0200441struct commit_class;
442
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200443struct get_class;
444
Václav Kubernátb61336d2018-05-28 17:35:03 +0200445struct command_class {
446 template <typename Iterator, typename Exception, typename Context>
447 x3::error_handler_result on_error(Iterator&, Iterator const&, Exception const& x, Context const& context)
448 {
449 auto& parserContext = x3::get<parser_context_tag>(context);
450 auto& error_handler = x3::get<x3::error_handler_tag>(context).get();
Václav Kubernát41378452018-06-06 16:29:40 +0200451 if (parserContext.m_errorMsg.empty()) {
452 parserContext.m_errorMsg = "Unknown command.";
453 }
454 error_handler(x.where(), parserContext.m_errorMsg);
Václav Kubernátb61336d2018-05-28 17:35:03 +0200455 return x3::error_handler_result::fail;
456 }
457};