Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 1 | /* |
| 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át | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 11 | #include <boost/spirit/home/x3.hpp> |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 12 | #include "ast_commands.hpp" |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 13 | #include "ast_handlers.hpp" |
Václav Kubernát | 9ae8cc4 | 2020-03-25 19:17:41 +0100 | [diff] [blame] | 14 | #include "common_parsers.hpp" |
| 15 | #include "leaf_data.hpp" |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 16 | #include "path_parser.hpp" |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 17 | |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 18 | |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 19 | x3::rule<discard_class, discard_> const discard = "discard"; |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 20 | x3::rule<ls_class, ls_> const ls = "ls"; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 21 | x3::rule<cd_class, cd_> const cd = "cd"; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 22 | x3::rule<set_class, set_> const set = "set"; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 23 | x3::rule<get_class, get_> const get = "get"; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 24 | x3::rule<create_class, create_> const create = "create"; |
| 25 | x3::rule<delete_class, delete_> const delete_rule = "delete_rule"; |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 26 | x3::rule<commit_class, commit_> const commit = "commit"; |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 27 | x3::rule<describe_class, describe_> const describe = "describe"; |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 28 | x3::rule<help_class, help_> const help = "help"; |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 29 | x3::rule<copy_class, copy_> const copy = "copy"; |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 30 | x3::rule<move_class, move_> const move = "move"; |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 31 | x3::rule<dump_class, dump_> const dump = "dump"; |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame] | 32 | x3::rule<prepare_class, prepare_> const prepare = "prepare"; |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 33 | x3::rule<exec_class, exec_> const exec = "exec"; |
| 34 | x3::rule<cancel_class, cancel_> const cancel = "cancel"; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 35 | x3::rule<command_class, command_> const command = "command"; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 36 | |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 37 | x3::rule<createCommandSuggestions_class, x3::unused_type> const createCommandSuggestions = "createCommandSuggestions"; |
Václav Kubernát | 5c75b25 | 2018-10-10 18:33:47 +0200 | [diff] [blame] | 38 | |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 39 | #if __clang__ |
| 40 | #pragma GCC diagnostic push |
| 41 | #pragma GCC diagnostic ignored "-Woverloaded-shift-op-parentheses" |
| 42 | #endif |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 43 | |
Václav Kubernát | 509ce65 | 2019-05-29 19:46:44 +0200 | [diff] [blame] | 44 | namespace ascii = boost::spirit::x3::ascii; |
| 45 | |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 46 | struct ls_options_table : x3::symbols<LsOption> { |
| 47 | ls_options_table() |
| 48 | { |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 49 | add |
| 50 | ("--recursive", LsOption::Recursive); |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 51 | } |
| 52 | } const ls_options; |
| 53 | |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 54 | auto const ls_def = |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 55 | ls_::name >> *(space_separator >> ls_options) >> -(space_separator >> (anyPath | (module >> "*"))); |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 56 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 57 | auto const cd_def = |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 58 | cd_::name >> space_separator > cdPath; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 59 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 60 | auto const create_def = |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 61 | create_::name >> space_separator > (presenceContainerPath | listInstancePath | leafListElementPath); |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 62 | |
| 63 | auto const delete_rule_def = |
Jan Kundrát | b7206ad | 2020-06-18 21:08:14 +0200 | [diff] [blame] | 64 | delete_::name >> space_separator > (presenceContainerPath | listInstancePath | leafListElementPath | writableLeafPath); |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 65 | |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 66 | auto const get_def = |
Václav Kubernát | 3102968 | 2020-10-29 08:23:04 +0100 | [diff] [blame] | 67 | get_::name >> -(space_separator >> getPath); |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 68 | |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 69 | auto const set_def = |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 70 | set_::name >> space_separator > writableLeafPath > space_separator > leaf_data; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 71 | |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 72 | auto const commit_def = |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 73 | commit_::name >> x3::attr(commit_()); |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 74 | |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 75 | auto const discard_def = |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 76 | discard_::name >> x3::attr(discard_()); |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 77 | |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 78 | struct command_names_table : x3::symbols<decltype(help_::m_cmd)> { |
| 79 | command_names_table() |
| 80 | { |
| 81 | boost::mpl::for_each<CommandTypes, boost::type<boost::mpl::_>>([this](auto cmd) { |
Václav Kubernát | 672889c | 2020-05-27 04:11:36 +0200 | [diff] [blame] | 82 | add(commandNamesVisitor(cmd), decltype(help_::m_cmd)(cmd)); |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 83 | }); |
| 84 | } |
| 85 | } const command_names; |
| 86 | |
| 87 | auto const help_def = |
| 88 | help_::name > createCommandSuggestions >> -command_names; |
| 89 | |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 90 | struct datastore_symbol_table : x3::symbols<Datastore> { |
| 91 | datastore_symbol_table() |
| 92 | { |
| 93 | add |
| 94 | ("running", Datastore::Running) |
| 95 | ("startup", Datastore::Startup); |
| 96 | } |
| 97 | } const datastore; |
| 98 | |
Václav Kubernát | 21fc5e2 | 2020-11-26 04:28:27 +0100 | [diff] [blame] | 99 | const auto copy_source = x3::rule<class source, Datastore>{"source datastore"} = datastore; |
| 100 | const auto copy_destination = x3::rule<class source, Datastore>{"destination datastore"} = datastore; |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 101 | |
| 102 | const auto datastoreSuggestions = x3::eps[([](auto& ctx) { |
| 103 | auto& parserContext = x3::get<parser_context_tag>(ctx); |
| 104 | parserContext.m_suggestions = {Completion{"running", " "}, Completion{"startup", " "}}; |
| 105 | parserContext.m_completionIterator = _where(ctx).begin(); |
| 106 | })]; |
| 107 | |
| 108 | struct copy_args : x3::parser<copy_args> { |
| 109 | using attribute_type = copy_; |
| 110 | template <typename It, typename Ctx, typename RCtx> |
| 111 | bool parse(It& begin, It end, Ctx const& ctx, RCtx& rctx, copy_& attr) const |
| 112 | { |
| 113 | auto& parserContext = x3::get<parser_context_tag>(ctx); |
| 114 | auto iterBeforeDestination = begin; |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 115 | auto save_iter = x3::no_skip[x3::eps[([&iterBeforeDestination](auto& ctx) { iterBeforeDestination = _where(ctx).begin(); })]]; |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 116 | auto grammar = datastoreSuggestions > copy_source > space_separator > datastoreSuggestions > save_iter > copy_destination; |
| 117 | |
| 118 | try { |
| 119 | grammar.parse(begin, end, ctx, rctx, attr); |
| 120 | } catch (x3::expectation_failure<It>& ex) { |
| 121 | using namespace std::string_literals; |
| 122 | parserContext.m_errorMsg = "Expected "s + ex.which() + " here:"; |
| 123 | throw; |
| 124 | } |
| 125 | |
| 126 | if (attr.m_source == attr.m_destination) { |
| 127 | begin = iterBeforeDestination; // Restoring the iterator here makes the error caret point to the second datastore |
| 128 | parserContext.m_errorMsg = "Source datastore and destination datastore can't be the same."; |
| 129 | return false; |
| 130 | } |
| 131 | |
| 132 | return true; |
| 133 | } |
Václav Kubernát | 21fc5e2 | 2020-11-26 04:28:27 +0100 | [diff] [blame] | 134 | } const copy_args; |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 135 | |
| 136 | auto const copy_def = |
| 137 | copy_::name > space_separator > copy_args; |
| 138 | |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 139 | auto const describe_def = |
Václav Kubernát | 3200b86 | 2020-12-03 02:34:55 +0100 | [diff] [blame^] | 140 | describe_::name >> space_separator > anyPath; |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 141 | |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 142 | struct mode_table : x3::symbols<MoveMode> { |
| 143 | mode_table() |
| 144 | { |
| 145 | add |
| 146 | ("after", MoveMode::After) |
| 147 | ("before", MoveMode::Before) |
| 148 | ("begin", MoveMode::Begin) |
| 149 | ("end", MoveMode::End); |
| 150 | } |
| 151 | } const mode_table; |
| 152 | |
| 153 | struct move_absolute_table : x3::symbols<yang::move::Absolute> { |
| 154 | move_absolute_table() |
| 155 | { |
| 156 | add |
| 157 | ("begin", yang::move::Absolute::Begin) |
| 158 | ("end", yang::move::Absolute::End); |
| 159 | } |
| 160 | } const move_absolute_table; |
| 161 | |
| 162 | struct move_relative_table : x3::symbols<yang::move::Relative::Position> { |
| 163 | move_relative_table() |
| 164 | { |
| 165 | add |
| 166 | ("before", yang::move::Relative::Position::Before) |
| 167 | ("after", yang::move::Relative::Position::After); |
| 168 | } |
| 169 | } const move_relative_table; |
| 170 | |
| 171 | struct move_args : x3::parser<move_args> { |
| 172 | using attribute_type = move_; |
| 173 | template <typename It, typename Ctx, typename RCtx> |
| 174 | bool parse(It& begin, It end, Ctx const& ctx, RCtx& rctx, move_& attr) const |
| 175 | { |
| 176 | ParserContext& parserContext = x3::get<parser_context_tag>(ctx); |
| 177 | dataPath_ movePath; |
| 178 | auto movePathGrammar = listInstancePath | leafListElementPath; |
| 179 | auto res = movePathGrammar.parse(begin, end, ctx, rctx, attr.m_source); |
| 180 | if (!res) { |
| 181 | parserContext.m_errorMsg = "Expected source path here:"; |
| 182 | return false; |
| 183 | } |
| 184 | |
| 185 | // Try absolute move first. |
| 186 | res = (space_separator >> move_absolute_table).parse(begin, end, ctx, rctx, attr.m_destination); |
| 187 | if (res) { |
| 188 | // Absolute move parsing succeeded, we don't need to parse anything else. |
| 189 | return true; |
| 190 | } |
| 191 | |
| 192 | // If absolute move didn't succeed, try relative. |
| 193 | attr.m_destination = yang::move::Relative{}; |
| 194 | res = (space_separator >> move_relative_table).parse(begin, end, ctx, rctx, std::get<yang::move::Relative>(attr.m_destination).m_position); |
| 195 | |
| 196 | if (!res) { |
| 197 | parserContext.m_errorMsg = "Expected a move position (begin, end, before, after) here:"; |
| 198 | return false; |
| 199 | } |
| 200 | |
| 201 | if (std::holds_alternative<leafListElement_>(attr.m_source.m_nodes.back().m_suffix)) { |
| 202 | leaf_data_ value; |
| 203 | res = (space_separator >> leaf_data).parse(begin, end, ctx, rctx, value); |
| 204 | if (res) { |
| 205 | std::get<yang::move::Relative>(attr.m_destination).m_path = {{".", value}}; |
| 206 | } |
| 207 | } else { |
| 208 | ListInstance listInstance; |
| 209 | // The source list instance will be stored inside the parser context path. |
| 210 | // The source list instance will be full data path (with keys included). |
| 211 | // However, m_tmpListPath is supposed to store a path with a list without the keys. |
| 212 | // So, I pop the last listElement_ (which has the keys) and put in a list_ (which doesn't have the keys). |
| 213 | // Example: /mod:cont/protocols[name='ftp'] gets turned into /mod:cont/protocols |
| 214 | parserContext.m_tmpListPath = parserContext.currentDataPath(); |
| 215 | parserContext.m_tmpListPath.m_nodes.pop_back(); |
| 216 | auto list = list_{std::get<listElement_>(attr.m_source.m_nodes.back().m_suffix).m_name}; |
Václav Kubernát | faacd02 | 2020-07-08 16:44:38 +0200 | [diff] [blame] | 217 | parserContext.m_tmpListPath.m_nodes.emplace_back(attr.m_source.m_nodes.back().m_prefix, list); |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 218 | |
| 219 | res = (space_separator >> listSuffix).parse(begin, end, ctx, rctx, listInstance); |
| 220 | if (res) { |
| 221 | std::get<yang::move::Relative>(attr.m_destination).m_path = listInstance; |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | if (!res) { |
| 226 | parserContext.m_errorMsg = "Expected a destination here:"; |
| 227 | } |
| 228 | |
| 229 | return res; |
| 230 | } |
| 231 | } const move_args; |
| 232 | |
| 233 | auto const move_def = |
| 234 | move_::name >> space_separator >> move_args; |
| 235 | |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 236 | struct format_table : x3::symbols<DataFormat> { |
| 237 | format_table() |
| 238 | { |
| 239 | add |
| 240 | ("xml", DataFormat::Xml) |
| 241 | ("json", DataFormat::Json); |
| 242 | } |
| 243 | } const format_table; |
| 244 | |
Václav Kubernát | 3b5e652 | 2020-06-26 18:36:09 +0200 | [diff] [blame] | 245 | struct dump_args : x3::parser<dump_args> { |
| 246 | using attribute_type = dump_; |
| 247 | template <typename It, typename Ctx, typename RCtx> |
| 248 | bool parse(It& begin, It end, Ctx const& ctx, RCtx& rctx, dump_& attr) const |
| 249 | { |
| 250 | ParserContext& parserContext = x3::get<parser_context_tag>(ctx); |
| 251 | parserContext.m_suggestions = {{"xml"}, {"json"}}; |
| 252 | parserContext.m_completionIterator = begin; |
| 253 | auto res = format_table.parse(begin, end, ctx, rctx, attr); |
| 254 | if (!res) { |
| 255 | parserContext.m_errorMsg = "Expected a data format (xml, json) here:"; |
| 256 | } |
| 257 | return res; |
| 258 | } |
| 259 | } const dump_args; |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 260 | |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame] | 261 | auto const prepare_def = |
| 262 | prepare_::name > space_separator > rpcActionPath; |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 263 | |
| 264 | auto const exec_def = |
| 265 | exec_::name >> x3::attr(exec_{}); |
| 266 | |
| 267 | auto const cancel_def = |
| 268 | cancel_::name >> x3::attr(cancel_{}); |
| 269 | |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 270 | auto const dump_def = |
Václav Kubernát | 3b5e652 | 2020-06-26 18:36:09 +0200 | [diff] [blame] | 271 | dump_::name > space_separator >> dump_args; |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 272 | |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 273 | auto const createCommandSuggestions_def = |
Václav Kubernát | bf083ec | 2019-02-19 13:58:09 +0100 | [diff] [blame] | 274 | x3::eps; |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 275 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 276 | auto const command_def = |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame] | 277 | createCommandSuggestions >> x3::expect[cd | copy | create | delete_rule | set | commit | get | ls | discard | describe | help | move | dump | prepare | exec | cancel]; |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 278 | |
| 279 | #if __clang__ |
| 280 | #pragma GCC diagnostic pop |
| 281 | #endif |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 282 | |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 283 | BOOST_SPIRIT_DEFINE(set) |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 284 | BOOST_SPIRIT_DEFINE(commit) |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 285 | BOOST_SPIRIT_DEFINE(get) |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 286 | BOOST_SPIRIT_DEFINE(ls) |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 287 | BOOST_SPIRIT_DEFINE(discard) |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 288 | BOOST_SPIRIT_DEFINE(cd) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 289 | BOOST_SPIRIT_DEFINE(create) |
| 290 | BOOST_SPIRIT_DEFINE(delete_rule) |
Václav Kubernát | 9cfcd87 | 2020-02-18 12:34:02 +0100 | [diff] [blame] | 291 | BOOST_SPIRIT_DEFINE(describe) |
Václav Kubernát | 054cc99 | 2019-02-21 14:23:52 +0100 | [diff] [blame] | 292 | BOOST_SPIRIT_DEFINE(help) |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 293 | BOOST_SPIRIT_DEFINE(copy) |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 294 | BOOST_SPIRIT_DEFINE(move) |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 295 | BOOST_SPIRIT_DEFINE(dump) |
Václav Kubernát | aa4250a | 2020-07-22 00:02:23 +0200 | [diff] [blame] | 296 | BOOST_SPIRIT_DEFINE(prepare) |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 297 | BOOST_SPIRIT_DEFINE(exec) |
| 298 | BOOST_SPIRIT_DEFINE(cancel) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 299 | BOOST_SPIRIT_DEFINE(command) |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 300 | BOOST_SPIRIT_DEFINE(createCommandSuggestions) |