blob: 79cd17aafc9bd82c67a9ac866313534d3e48b930 [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át4108e0d2018-10-29 13:32:22 +010056x3::rule<initializePath_class, x3::unused_type> const initializePath = "initializePath";
57x3::rule<createPathSuggestions_class, x3::unused_type> const createPathSuggestions = "createPathSuggestions";
Václav Kubernát5c75b252018-10-10 18:33:47 +020058
Václav Kubernát41378452018-06-06 16:29:40 +020059#if __clang__
60#pragma GCC diagnostic push
61#pragma GCC diagnostic ignored "-Woverloaded-shift-op-parentheses"
62#endif
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020063
Václav Kubernát89728d82018-09-13 16:28:28 +020064auto const key_identifier_def =
65 lexeme[
66 ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_(".")))
67 ];
68
69auto const quotedValue =
70 ('\'' > +(char_-'\'') > '\'') |
71 ('\"' > +(char_-'\"') > '\"');
72
73auto const number =
74 +x3::digit;
75
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020076auto const keyValue_def =
Václav Kubernát89728d82018-09-13 16:28:28 +020077 lexeme['[' > key_identifier > '=' > (quotedValue | number) > ']'];
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020078
Václav Kubernát744f57f2018-06-29 22:46:26 +020079auto const module_identifier_def =
80 lexeme[
81 ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_(".")))
82 ];
83
84auto const node_identifier_def =
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020085 lexeme[
86 ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_(".")))
87 ];
88
89auto const listPrefix_def =
Václav Kubernát89728d82018-09-13 16:28:28 +020090 node_identifier >> &char_('[');
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020091
Václav Kubernát7e4e82f2018-05-14 20:04:58 +020092// 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 +020093auto const listSuffix_def =
Václav Kubernát89728d82018-09-13 16:28:28 +020094 *keyValue;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +020095
96auto const listElement_def =
97 listPrefix > listSuffix;
98
Václav Kubernát2eaceb82018-10-08 19:56:30 +020099auto const list_def =
Václav Kubernát5c75b252018-10-10 18:33:47 +0200100 node_identifier >> !char_('[');
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200101
Václav Kubernát60d6f292018-05-25 09:45:32 +0200102auto const nodeup_def =
103 lit("..") > x3::attr(nodeup_());
104
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200105auto const container_def =
Václav Kubernát744f57f2018-06-29 22:46:26 +0200106 node_identifier;
107
108auto const module_def =
109 module_identifier >> x3::no_skip[':'] >> !x3::no_skip[space];
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200110
Václav Kubernát07204242018-06-04 18:12:09 +0200111auto const leaf_def =
Václav Kubernát744f57f2018-06-29 22:46:26 +0200112 node_identifier;
Václav Kubernát07204242018-06-04 18:12:09 +0200113
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100114auto const createPathSuggestions_def =
115 x3::eps;
116
Václav Kubernát07204242018-06-04 18:12:09 +0200117// 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 +0200118auto const schemaNode_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100119 createPathSuggestions >> -(module) >> (container | list | nodeup | leaf);
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200120
121auto const dataNode_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100122 createPathSuggestions >> -(module) >> (container | listElement | nodeup | leaf);
Václav Kubernát744f57f2018-06-29 22:46:26 +0200123
Václav Kubernát37171a12018-08-31 17:01:48 +0200124auto const absoluteStart_def =
125 x3::omit['/'] >> x3::attr(Scope::Absolute);
126
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100127auto const trailingSlash_def =
128 x3::omit['/'] >> x3::attr(TrailingSlash::Present);
129
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100130auto const space_separator =
131 x3::omit[x3::no_skip[space]];
132
Václav Kubernát37171a12018-08-31 17:01:48 +0200133// 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 +0200134auto const dataPath_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100135 initializePath >> absoluteStart >> createPathSuggestions >> x3::attr(decltype(dataPath_::m_nodes)()) >> x3::attr(TrailingSlash::NonPresent) >> x3::eoi |
136 initializePath >> -(absoluteStart >> createPathSuggestions) >> dataNode % '/' >> (trailingSlash >> createPathSuggestions | (&space_separator | x3::eoi));
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200137
Václav Kubernát5c75b252018-10-10 18:33:47 +0200138auto const dataNodeList_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100139 -(module) >> createPathSuggestions >> list;
Václav Kubernát5c75b252018-10-10 18:33:47 +0200140
141// This intermediate rule is mandatory, because we need the first alternative
142// to be collapsed to a vector. If we didn't use the intermediate rule,
143// Spirit wouldn't know we want it to collapse.
144// https://github.com/boostorg/spirit/issues/408
145auto const dataNodesListEnd_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100146 initializePath >> dataNode % '/' >> '/' >> dataNodeList >> -(&char_('/') >> createPathSuggestions) |
147 initializePath >> x3::attr(decltype(dataPath_::m_nodes)()) >> dataNodeList;
Václav Kubernát5c75b252018-10-10 18:33:47 +0200148
149auto const dataPathListEnd_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100150 initializePath >> absoluteStart >> createPathSuggestions >> x3::attr(decltype(dataPath_::m_nodes)()) >> x3::attr(TrailingSlash::NonPresent) >> x3::eoi |
151 initializePath >> -(absoluteStart >> createPathSuggestions) >> dataNodesListEnd >> (trailingSlash >> createPathSuggestions | (&space_separator | x3::eoi));
Václav Kubernát5c75b252018-10-10 18:33:47 +0200152
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200153auto const schemaPath_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100154 initializePath >> absoluteStart >> createPathSuggestions >> x3::attr(decltype(schemaPath_::m_nodes)()) >> x3::attr(TrailingSlash::NonPresent) >> x3::eoi |
155 initializePath >> -(absoluteStart >> createPathSuggestions) >> schemaNode % '/' >> (trailingSlash >> createPathSuggestions | (&space_separator | x3::eoi));
Václav Kubernát07204242018-06-04 18:12:09 +0200156
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200157auto const leafPath_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200158 dataPath;
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200159
Václav Kubernátebca2552018-06-08 19:06:02 +0200160auto const leaf_data_enum_def =
161 +char_;
162auto const leaf_data_decimal_def =
163 double_;
164
165struct bool_symbol_table : x3::symbols<bool> {
166 bool_symbol_table()
167 {
168 add
169 ("true", true)
170 ("false", false);
171 }
172} const bool_rule;
173
174auto const leaf_data_bool_def =
175 bool_rule;
176auto const leaf_data_int_def =
177 int_;
178auto const leaf_data_uint_def =
179 uint_;
180auto const leaf_data_string_def =
181 *char_;
182
183auto const leaf_data_def =
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200184x3::expect[
Václav Kubernátebca2552018-06-08 19:06:02 +0200185 leaf_data_enum |
186 leaf_data_decimal |
187 leaf_data_bool |
188 leaf_data_int |
189 leaf_data_uint |
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200190 leaf_data_string];
Václav Kubernát07204242018-06-04 18:12:09 +0200191
Václav Kubernáte7d4aea2018-09-11 18:15:48 +0200192struct ls_options_table : x3::symbols<LsOption> {
193 ls_options_table()
194 {
195 add
196 ("--recursive", LsOption::Recursive);
197 }
198} const ls_options;
199
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100200// A "nothing" parser, which is used to indicate we tried to parse a path
201auto const initializePath_def =
Václav Kubernát5c75b252018-10-10 18:33:47 +0200202 x3::eps;
203
Václav Kubernát11afac72018-07-18 14:59:53 +0200204auto const ls_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100205 lit("ls") >> *(space_separator >> ls_options) >> -(space_separator >> (dataPathListEnd | dataPath | schemaPath));
Václav Kubernát11afac72018-07-18 14:59:53 +0200206
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200207auto const cd_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200208 lit("cd") >> space_separator > dataPath;
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200209
Václav Kubernátb61336d2018-05-28 17:35:03 +0200210auto const create_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200211 lit("create") >> space_separator > dataPath;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200212
213auto const delete_rule_def =
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200214 lit("delete") >> space_separator > dataPath;
Václav Kubernát07204242018-06-04 18:12:09 +0200215
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200216auto const get_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100217 lit("get") >> -(space_separator >> (dataPathListEnd | dataPath));
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200218
Václav Kubernát07204242018-06-04 18:12:09 +0200219auto const set_def =
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200220 lit("set") >> space_separator > leafPath > leaf_data;
Václav Kubernátb61336d2018-05-28 17:35:03 +0200221
Václav Kubernát812ee282018-08-30 17:10:03 +0200222auto const commit_def =
223 lit("commit") >> x3::attr(commit_());
224
Václav Kubernát6d791432018-10-25 16:00:35 +0200225auto const discard_def =
226 lit("discard") >> x3::attr(discard_());
227
Václav Kubernátb61336d2018-05-28 17:35:03 +0200228auto const command_def =
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100229 x3::expect[cd | create | delete_rule | set | commit | get | ls | discard];
Václav Kubernát41378452018-06-06 16:29:40 +0200230
231#if __clang__
232#pragma GCC diagnostic pop
233#endif
Václav Kubernátb61336d2018-05-28 17:35:03 +0200234
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200235BOOST_SPIRIT_DEFINE(keyValue)
Václav Kubernát89728d82018-09-13 16:28:28 +0200236BOOST_SPIRIT_DEFINE(key_identifier)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200237BOOST_SPIRIT_DEFINE(node_identifier)
238BOOST_SPIRIT_DEFINE(module_identifier)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200239BOOST_SPIRIT_DEFINE(listPrefix)
240BOOST_SPIRIT_DEFINE(listSuffix)
241BOOST_SPIRIT_DEFINE(listElement)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200242BOOST_SPIRIT_DEFINE(list)
Václav Kubernát60d6f292018-05-25 09:45:32 +0200243BOOST_SPIRIT_DEFINE(nodeup)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200244BOOST_SPIRIT_DEFINE(schemaNode)
245BOOST_SPIRIT_DEFINE(dataNode)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200246BOOST_SPIRIT_DEFINE(container)
Václav Kubernát07204242018-06-04 18:12:09 +0200247BOOST_SPIRIT_DEFINE(leaf)
Václav Kubernát0b0272f2018-06-13 14:13:08 +0200248BOOST_SPIRIT_DEFINE(leafPath)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200249BOOST_SPIRIT_DEFINE(schemaPath)
250BOOST_SPIRIT_DEFINE(dataPath)
Václav Kubernát5c75b252018-10-10 18:33:47 +0200251BOOST_SPIRIT_DEFINE(dataNodeList)
252BOOST_SPIRIT_DEFINE(dataNodesListEnd)
253BOOST_SPIRIT_DEFINE(dataPathListEnd)
Václav Kubernát37171a12018-08-31 17:01:48 +0200254BOOST_SPIRIT_DEFINE(absoluteStart)
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100255BOOST_SPIRIT_DEFINE(trailingSlash)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200256BOOST_SPIRIT_DEFINE(module)
Václav Kubernátebca2552018-06-08 19:06:02 +0200257BOOST_SPIRIT_DEFINE(leaf_data)
258BOOST_SPIRIT_DEFINE(leaf_data_enum)
259BOOST_SPIRIT_DEFINE(leaf_data_decimal)
260BOOST_SPIRIT_DEFINE(leaf_data_bool)
261BOOST_SPIRIT_DEFINE(leaf_data_int)
262BOOST_SPIRIT_DEFINE(leaf_data_uint)
263BOOST_SPIRIT_DEFINE(leaf_data_string)
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100264BOOST_SPIRIT_DEFINE(initializePath)
Václav Kubernát07204242018-06-04 18:12:09 +0200265BOOST_SPIRIT_DEFINE(set)
Václav Kubernát812ee282018-08-30 17:10:03 +0200266BOOST_SPIRIT_DEFINE(commit)
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200267BOOST_SPIRIT_DEFINE(get)
Václav Kubernát11afac72018-07-18 14:59:53 +0200268BOOST_SPIRIT_DEFINE(ls)
Václav Kubernát6d791432018-10-25 16:00:35 +0200269BOOST_SPIRIT_DEFINE(discard)
Václav Kubernát0a2a2e82018-05-11 13:59:12 +0200270BOOST_SPIRIT_DEFINE(cd)
Václav Kubernátb61336d2018-05-28 17:35:03 +0200271BOOST_SPIRIT_DEFINE(create)
272BOOST_SPIRIT_DEFINE(delete_rule)
273BOOST_SPIRIT_DEFINE(command)
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100274BOOST_SPIRIT_DEFINE(createPathSuggestions)