Václav Kubernát | 9ae8cc4 | 2020-03-25 19:17:41 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2020 CESNET, https://photonics.cesnet.cz/ |
| 3 | * |
| 4 | * Written by Václav Kubernát <kubernat@cesnet.cz> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #pragma once |
| 9 | #include <boost/spirit/home/x3.hpp> |
| 10 | #include "ast_handlers.hpp" |
| 11 | x3::rule<module_identifier_class, std::string> const module_identifier = "module_identifier"; |
| 12 | x3::rule<module_class, module_> const module = "module"; |
| 13 | x3::rule<node_identifier_class, std::string> const node_identifier = "node_identifier"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 14 | x3::rule<space_separator_class, x3::unused_type> const space_separator = "a space"; |
| 15 | x3::rule<completing_class, x3::unused_type> const completing = "completing"; |
| 16 | |
| 17 | // This is a pseudo-parser, that fails if we're not completing a command |
| 18 | auto const completing_def = |
| 19 | x3::no_skip[x3::eps]; |
| 20 | |
Václav Kubernát | 9ae8cc4 | 2020-03-25 19:17:41 +0100 | [diff] [blame] | 21 | auto const node_identifier_def = |
| 22 | x3::lexeme[ |
| 23 | ((x3::alpha | x3::char_("_")) >> *(x3::alnum | x3::char_("_") | x3::char_("-") | x3::char_("."))) |
| 24 | ]; |
| 25 | |
| 26 | auto const module_def = |
| 27 | module_identifier >> x3::no_skip[':'] >> !x3::no_skip[x3::space]; |
| 28 | |
| 29 | auto const module_identifier_def = |
| 30 | x3::lexeme[ |
| 31 | ((x3::alpha | x3::char_("_")) >> *(x3::alnum | x3::char_("_") | x3::char_("-") | x3::char_("."))) |
| 32 | ]; |
| 33 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 34 | auto const space_separator_def = |
| 35 | x3::omit[x3::no_skip[x3::space]]; |
| 36 | |
Václav Kubernát | 9ae8cc4 | 2020-03-25 19:17:41 +0100 | [diff] [blame] | 37 | BOOST_SPIRIT_DEFINE(node_identifier) |
| 38 | BOOST_SPIRIT_DEFINE(module) |
| 39 | BOOST_SPIRIT_DEFINE(module_identifier) |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 40 | BOOST_SPIRIT_DEFINE(space_separator) |
| 41 | BOOST_SPIRIT_DEFINE(completing) |