blob: d0101fb5dadbd43cbd0bf6a9166c4985b8824fd9 [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
10
Václav Kubernát24df80e2018-06-06 15:18:03 +020011#include "ast_commands.hpp"
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020012#include "ast_handlers.hpp"
13
Václav Kubernát60d6f292018-05-25 09:45:32 +020014
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020015x3::rule<keyValue_class, keyValue_> const keyValue = "keyValue";
Václav Kubernát89728d82018-09-13 16:28:28 +020016x3::rule<key_identifier_class, std::string> const key_identifier = "key_identifier";
Václav Kubernát744f57f2018-06-29 22:46:26 +020017x3::rule<node_identifier_class, std::string> const node_identifier = "node_identifier";
18x3::rule<module_identifier_class, std::string> const module_identifier = "module_identifier";
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020019x3::rule<listPrefix_class, std::string> const listPrefix = "listPrefix";
20x3::rule<listSuffix_class, std::vector<keyValue_>> const listSuffix = "listSuffix";
21x3::rule<listElement_class, listElement_> const listElement = "listElement";
Václav Kubernát2eaceb82018-10-08 19:56:30 +020022x3::rule<list_class, list_> const list = "list";
Václav Kubernát60d6f292018-05-25 09:45:32 +020023x3::rule<nodeup_class, nodeup_> const nodeup = "nodeup";
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020024x3::rule<container_class, container_> const container = "container";
Václav Kubernát07204242018-06-04 18:12:09 +020025x3::rule<leaf_class, leaf_> const leaf = "leaf";
Václav Kubernát744f57f2018-06-29 22:46:26 +020026x3::rule<module_class, module_> const module = "module";
Václav Kubernát2eaceb82018-10-08 19:56:30 +020027x3::rule<dataNode_class, dataNode_> const dataNode = "dataNode";
28x3::rule<schemaNode_class, schemaNode_> const schemaNode = "schemaNode";
Václav Kubernát37171a12018-08-31 17:01:48 +020029x3::rule<absoluteStart_class, Scope> const absoluteStart = "absoluteStart";
Václav Kubernát2eaceb82018-10-08 19:56:30 +020030x3::rule<schemaPath_class, schemaPath_> const schemaPath = "schemaPath";
Václav Kubernátd6fd2492018-11-19 15:11:16 +010031x3::rule<trailingSlash_class, TrailingSlash> const trailingSlash = "trailingSlash";
Václav Kubernát5c75b252018-10-10 18:33:47 +020032x3::rule<dataNodeList_class, decltype(dataPath_::m_nodes)::value_type> const dataNodeList = "dataNodeList";
33x3::rule<dataNodesListEnd_class, decltype(dataPath_::m_nodes)> const dataNodesListEnd = "dataNodesListEnd";
34x3::rule<dataPathListEnd_class, dataPath_> const dataPathListEnd = "dataPathListEnd";
Václav Kubernát2eaceb82018-10-08 19:56:30 +020035x3::rule<dataPath_class, dataPath_> const dataPath = "dataPath";
36x3::rule<leaf_path_class, dataPath_> const leafPath = "leafPath";
Václav Kubernátebca2552018-06-08 19:06:02 +020037
38x3::rule<leaf_data_class, leaf_data_> const leaf_data = "leaf_data";
39x3::rule<leaf_data_enum_class, enum_> const leaf_data_enum = "leaf_data_enum";
40x3::rule<leaf_data_decimal_class, double> const leaf_data_decimal = "leaf_data_decimal";
41x3::rule<leaf_data_bool_class, bool> const leaf_data_bool = "leaf_data_bool";
42x3::rule<leaf_data_int_class, int32_t> const leaf_data_int = "leaf_data_int";
43x3::rule<leaf_data_uint_class, uint32_t> const leaf_data_uint = "leaf_data_uint";
44x3::rule<leaf_data_string_class, std::string> const leaf_data_string = "leaf_data_string";
45
Václav Kubernát6d791432018-10-25 16:00:35 +020046x3::rule<discard_class, discard_> const discard = "discard";
Václav Kubernát11afac72018-07-18 14:59:53 +020047x3::rule<ls_class, ls_> const ls = "ls";
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020048x3::rule<cd_class, cd_> const cd = "cd";
Václav Kubernát07204242018-06-04 18:12:09 +020049x3::rule<set_class, set_> const set = "set";
Václav Kubernátb6ff0b62018-08-30 16:14:53 +020050x3::rule<get_class, get_> const get = "get";
Václav Kubernátb61336d2018-05-28 17:35:03 +020051x3::rule<create_class, create_> const create = "create";
52x3::rule<delete_class, delete_> const delete_rule = "delete_rule";
Václav Kubernát812ee282018-08-30 17:10:03 +020053x3::rule<commit_class, commit_> const commit = "commit";
Václav Kubernátb61336d2018-05-28 17:35:03 +020054x3::rule<command_class, command_> const command = "command";
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020055
Václav Kubernát5c75b252018-10-10 18:33:47 +020056x3::rule<initializeContext_class, x3::unused_type> const initializeContext = "initializeContext";
57
Václav Kubernát41378452018-06-06 16:29:40 +020058#if __clang__
59#pragma GCC diagnostic push
60#pragma GCC diagnostic ignored "-Woverloaded-shift-op-parentheses"
61#endif
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020062
Václav Kubernát89728d82018-09-13 16:28:28 +020063auto const key_identifier_def =
64 lexeme[
65 ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_(".")))
66 ];
67
68auto const quotedValue =
69 ('\'' > +(char_-'\'') > '\'') |
70 ('\"' > +(char_-'\"') > '\"');
71
72auto const number =
73 +x3::digit;
74
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020075auto const keyValue_def =
Václav Kubernát89728d82018-09-13 16:28:28 +020076 lexeme['[' > key_identifier > '=' > (quotedValue | number) > ']'];
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020077
Václav Kubernát744f57f2018-06-29 22:46:26 +020078auto const module_identifier_def =
79 lexeme[
80 ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_(".")))
81 ];
82
83auto const node_identifier_def =
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020084 lexeme[
85 ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_(".")))
86 ];
87
88auto const listPrefix_def =
Václav Kubernát89728d82018-09-13 16:28:28 +020089 node_identifier >> &char_('[');
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020090
Václav Kubernát7e4e82f2018-05-14 20:04:58 +020091// even though we don't allow no keys to be supplied, the star allows me to check which keys are missing
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020092auto const listSuffix_def =
Václav Kubernát89728d82018-09-13 16:28:28 +020093 *keyValue;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020094
95auto const listElement_def =
96 listPrefix > listSuffix;
97
Václav Kubernát2eaceb82018-10-08 19:56:30 +020098auto const list_def =
Václav Kubernát5c75b252018-10-10 18:33:47 +020099 node_identifier >> !char_('[');
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200100
Václav Kubernát60d6f292018-05-25 09:45:32 +0200101auto const nodeup_def =
102 lit("..") > x3::attr(nodeup_());
103
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200104auto const container_def =
Václav Kubernát744f57f2018-06-29 22:46:26 +0200105 node_identifier;
106
107auto const module_def =
108 module_identifier >> x3::no_skip[':'] >> !x3::no_skip[space];
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200109
Václav Kubernát07204242018-06-04 18:12:09 +0200110auto const leaf_def =
Václav Kubernát744f57f2018-06-29 22:46:26 +0200111 node_identifier;
Václav Kubernát07204242018-06-04 18:12:09 +0200112
113// leaf cannot be in the middle of a path, however, I need the grammar's attribute to be a vector of variants
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200114auto const schemaNode_def =
115 -(module) >> x3::expect[container | list | nodeup | leaf];
116
117auto const dataNode_def =
Václav Kubernát5c75b252018-10-10 18:33:47 +0200118 -(module) >> (container | listElement | nodeup | leaf);
Václav Kubernát744f57f2018-06-29 22:46:26 +0200119
Václav Kubernát37171a12018-08-31 17:01:48 +0200120auto const absoluteStart_def =
121 x3::omit['/'] >> x3::attr(Scope::Absolute);
122
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100123auto const trailingSlash_def =
124 x3::omit['/'] >> x3::attr(TrailingSlash::Present);
125
Václav Kubernát37171a12018-08-31 17:01:48 +0200126// I have to insert an empty vector to the first alternative, otherwise they won't have the same attribute
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200127auto const dataPath_def =
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100128 absoluteStart >> x3::attr(decltype(dataPath_::m_nodes)()) >> x3::attr(TrailingSlash::NonPresent) >> x3::eoi |
129 -(absoluteStart) >> dataNode % '/' >> -trailingSlash;
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200130
Václav Kubernát5c75b252018-10-10 18:33:47 +0200131auto const dataNodeList_def =
132 -(module) >> list;
133
134// This intermediate rule is mandatory, because we need the first alternative
135// to be collapsed to a vector. If we didn't use the intermediate rule,
136// Spirit wouldn't know we want it to collapse.
137// https://github.com/boostorg/spirit/issues/408
138auto const dataNodesListEnd_def =
139 dataNode % '/' >> '/' >> dataNodeList |
140 initializeContext >> x3::attr(decltype(dataPath_::m_nodes)()) >> dataNodeList;
141
142auto const dataPathListEnd_def =
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100143 absoluteStart >> x3::attr(decltype(dataPath_::m_nodes)()) >> x3::attr(TrailingSlash::NonPresent) >> x3::eoi |
144 -(absoluteStart) >> dataNodesListEnd >> -trailingSlash;
Václav Kubernát5c75b252018-10-10 18:33:47 +0200145
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200146auto const schemaPath_def =
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100147 absoluteStart >> x3::attr(decltype(schemaPath_::m_nodes)()) >> x3::attr(TrailingSlash::NonPresent) >> x3::eoi |
148 -(absoluteStart) >> schemaNode % '/' >> -trailingSlash;
Václav Kubernát07204242018-06-04 18:12:09 +0200149
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200150auto const leafPath_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200151 dataPath;
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200152
Václav Kubernátebca2552018-06-08 19:06:02 +0200153auto const leaf_data_enum_def =
154 +char_;
155auto const leaf_data_decimal_def =
156 double_;
157
158struct bool_symbol_table : x3::symbols<bool> {
159 bool_symbol_table()
160 {
161 add
162 ("true", true)
163 ("false", false);
164 }
165} const bool_rule;
166
167auto const leaf_data_bool_def =
168 bool_rule;
169auto const leaf_data_int_def =
170 int_;
171auto const leaf_data_uint_def =
172 uint_;
173auto const leaf_data_string_def =
174 *char_;
175
176auto const leaf_data_def =
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200177x3::expect[
Václav Kubernátebca2552018-06-08 19:06:02 +0200178 leaf_data_enum |
179 leaf_data_decimal |
180 leaf_data_bool |
181 leaf_data_int |
182 leaf_data_uint |
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200183 leaf_data_string];
Václav Kubernát07204242018-06-04 18:12:09 +0200184
185auto const space_separator =
186 x3::omit[x3::no_skip[space]];
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200187
Václav Kubernáte7d4aea2018-09-11 18:15:48 +0200188struct ls_options_table : x3::symbols<LsOption> {
189 ls_options_table()
190 {
191 add
192 ("--recursive", LsOption::Recursive);
193 }
194} const ls_options;
195
Václav Kubernát5c75b252018-10-10 18:33:47 +0200196// A "nothing" parser, which is used to reset the context (when trying to parse different types of paths)
197auto const initializeContext_def =
198 x3::eps;
199
Václav Kubernát11afac72018-07-18 14:59:53 +0200200auto const ls_def =
Václav Kubernát5c75b252018-10-10 18:33:47 +0200201 lit("ls") >> *(space_separator >> ls_options) >> -(space_separator >> (dataPathListEnd | initializeContext >> dataPath));
Václav Kubernát11afac72018-07-18 14:59:53 +0200202
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200203auto const cd_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200204 lit("cd") >> space_separator > dataPath;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200205
Václav Kubernátb61336d2018-05-28 17:35:03 +0200206auto const create_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200207 lit("create") >> space_separator > dataPath;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200208
209auto const delete_rule_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200210 lit("delete") >> space_separator > dataPath;
Václav Kubernát07204242018-06-04 18:12:09 +0200211
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200212auto const get_def =
Václav Kubernát5c75b252018-10-10 18:33:47 +0200213 lit("get") >> -(space_separator >> (dataPathListEnd | initializeContext >> dataPath));
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200214
Václav Kubernát07204242018-06-04 18:12:09 +0200215auto const set_def =
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200216 lit("set") >> space_separator > leafPath > leaf_data;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200217
Václav Kubernát812ee282018-08-30 17:10:03 +0200218auto const commit_def =
219 lit("commit") >> x3::attr(commit_());
220
Václav Kubernát6d791432018-10-25 16:00:35 +0200221auto const discard_def =
222 lit("discard") >> x3::attr(discard_());
223
Václav Kubernátb61336d2018-05-28 17:35:03 +0200224auto const command_def =
Václav Kubernát6d791432018-10-25 16:00:35 +0200225 x3::expect[cd | create | delete_rule | set | commit | get | ls | discard] >> x3::eoi;
Václav Kubernát41378452018-06-06 16:29:40 +0200226
227#if __clang__
228#pragma GCC diagnostic pop
229#endif
Václav Kubernátb61336d2018-05-28 17:35:03 +0200230
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200231BOOST_SPIRIT_DEFINE(keyValue)
Václav Kubernát89728d82018-09-13 16:28:28 +0200232BOOST_SPIRIT_DEFINE(key_identifier)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200233BOOST_SPIRIT_DEFINE(node_identifier)
234BOOST_SPIRIT_DEFINE(module_identifier)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200235BOOST_SPIRIT_DEFINE(listPrefix)
236BOOST_SPIRIT_DEFINE(listSuffix)
237BOOST_SPIRIT_DEFINE(listElement)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200238BOOST_SPIRIT_DEFINE(list)
Václav Kubernát60d6f292018-05-25 09:45:32 +0200239BOOST_SPIRIT_DEFINE(nodeup)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200240BOOST_SPIRIT_DEFINE(schemaNode)
241BOOST_SPIRIT_DEFINE(dataNode)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200242BOOST_SPIRIT_DEFINE(container)
Václav Kubernát07204242018-06-04 18:12:09 +0200243BOOST_SPIRIT_DEFINE(leaf)
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200244BOOST_SPIRIT_DEFINE(leafPath)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200245BOOST_SPIRIT_DEFINE(schemaPath)
246BOOST_SPIRIT_DEFINE(dataPath)
Václav Kubernát5c75b252018-10-10 18:33:47 +0200247BOOST_SPIRIT_DEFINE(dataNodeList)
248BOOST_SPIRIT_DEFINE(dataNodesListEnd)
249BOOST_SPIRIT_DEFINE(dataPathListEnd)
Václav Kubernát37171a12018-08-31 17:01:48 +0200250BOOST_SPIRIT_DEFINE(absoluteStart)
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100251BOOST_SPIRIT_DEFINE(trailingSlash)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200252BOOST_SPIRIT_DEFINE(module)
Václav Kubernátebca2552018-06-08 19:06:02 +0200253BOOST_SPIRIT_DEFINE(leaf_data)
254BOOST_SPIRIT_DEFINE(leaf_data_enum)
255BOOST_SPIRIT_DEFINE(leaf_data_decimal)
256BOOST_SPIRIT_DEFINE(leaf_data_bool)
257BOOST_SPIRIT_DEFINE(leaf_data_int)
258BOOST_SPIRIT_DEFINE(leaf_data_uint)
259BOOST_SPIRIT_DEFINE(leaf_data_string)
Václav Kubernát5c75b252018-10-10 18:33:47 +0200260BOOST_SPIRIT_DEFINE(initializeContext)
Václav Kubernát07204242018-06-04 18:12:09 +0200261BOOST_SPIRIT_DEFINE(set)
Václav Kubernát812ee282018-08-30 17:10:03 +0200262BOOST_SPIRIT_DEFINE(commit)
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200263BOOST_SPIRIT_DEFINE(get)
Václav Kubernát11afac72018-07-18 14:59:53 +0200264BOOST_SPIRIT_DEFINE(ls)
Václav Kubernát6d791432018-10-25 16:00:35 +0200265BOOST_SPIRIT_DEFINE(discard)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200266BOOST_SPIRIT_DEFINE(cd)
Václav Kubernátb61336d2018-05-28 17:35:03 +0200267BOOST_SPIRIT_DEFINE(create)
268BOOST_SPIRIT_DEFINE(delete_rule)
269BOOST_SPIRIT_DEFINE(command)