blob: eac8e61eac45312115477ddd8f582c8e491bcf17 [file] [log] [blame]
Václav Kubernát9ae8cc42020-03-25 19:17:41 +01001/*
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"
11x3::rule<module_identifier_class, std::string> const module_identifier = "module_identifier";
12x3::rule<module_class, module_> const module = "module";
13x3::rule<node_identifier_class, std::string> const node_identifier = "node_identifier";
Václav Kubernátd0ea9b22020-04-24 00:44:15 +020014x3::rule<space_separator_class, x3::unused_type> const space_separator = "a space";
15x3::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
18auto const completing_def =
19 x3::no_skip[x3::eps];
20
Václav Kubernát9ae8cc42020-03-25 19:17:41 +010021auto const node_identifier_def =
22 x3::lexeme[
23 ((x3::alpha | x3::char_("_")) >> *(x3::alnum | x3::char_("_") | x3::char_("-") | x3::char_(".")))
24 ];
25
26auto const module_def =
27 module_identifier >> x3::no_skip[':'] >> !x3::no_skip[x3::space];
28
29auto 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átd0ea9b22020-04-24 00:44:15 +020034auto const space_separator_def =
35 x3::omit[x3::no_skip[x3::space]];
36
Václav Kubernát9ae8cc42020-03-25 19:17:41 +010037BOOST_SPIRIT_DEFINE(node_identifier)
38BOOST_SPIRIT_DEFINE(module)
39BOOST_SPIRIT_DEFINE(module_identifier)
Václav Kubernátd0ea9b22020-04-24 00:44:15 +020040BOOST_SPIRIT_DEFINE(space_separator)
41BOOST_SPIRIT_DEFINE(completing)