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 | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 11 | #include "ast_commands.hpp" |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 12 | #include "ast_handlers.hpp" |
| 13 | |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 14 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 15 | x3::rule<keyValue_class, keyValue_> const keyValue = "keyValue"; |
| 16 | x3::rule<identifier_class, std::string> const identifier = "identifier"; |
| 17 | x3::rule<listPrefix_class, std::string> const listPrefix = "listPrefix"; |
| 18 | x3::rule<listSuffix_class, std::vector<keyValue_>> const listSuffix = "listSuffix"; |
| 19 | x3::rule<listElement_class, listElement_> const listElement = "listElement"; |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 20 | x3::rule<nodeup_class, nodeup_> const nodeup = "nodeup"; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 21 | x3::rule<container_class, container_> const container = "container"; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 22 | x3::rule<leaf_class, leaf_> const leaf = "leaf"; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 23 | x3::rule<path_class, path_> const path = "path"; |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 24 | x3::rule<leaf_path_class, path_> const leafPath = "leafPath"; |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 25 | |
| 26 | x3::rule<leaf_data_class, leaf_data_> const leaf_data = "leaf_data"; |
| 27 | x3::rule<leaf_data_enum_class, enum_> const leaf_data_enum = "leaf_data_enum"; |
| 28 | x3::rule<leaf_data_decimal_class, double> const leaf_data_decimal = "leaf_data_decimal"; |
| 29 | x3::rule<leaf_data_bool_class, bool> const leaf_data_bool = "leaf_data_bool"; |
| 30 | x3::rule<leaf_data_int_class, int32_t> const leaf_data_int = "leaf_data_int"; |
| 31 | x3::rule<leaf_data_uint_class, uint32_t> const leaf_data_uint = "leaf_data_uint"; |
| 32 | x3::rule<leaf_data_string_class, std::string> const leaf_data_string = "leaf_data_string"; |
| 33 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 34 | x3::rule<cd_class, cd_> const cd = "cd"; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 35 | x3::rule<set_class, set_> const set = "set"; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 36 | x3::rule<create_class, create_> const create = "create"; |
| 37 | x3::rule<delete_class, delete_> const delete_rule = "delete_rule"; |
| 38 | x3::rule<command_class, command_> const command = "command"; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 39 | |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 40 | #if __clang__ |
| 41 | #pragma GCC diagnostic push |
| 42 | #pragma GCC diagnostic ignored "-Woverloaded-shift-op-parentheses" |
| 43 | #endif |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 44 | |
| 45 | auto const keyValue_def = |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 46 | lexeme[+alnum > '=' > +alnum]; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 47 | |
| 48 | auto const identifier_def = |
| 49 | lexeme[ |
| 50 | ((alpha | char_("_")) >> *(alnum | char_("_") | char_("-") | char_("."))) |
| 51 | ]; |
| 52 | |
| 53 | auto const listPrefix_def = |
| 54 | identifier >> '['; |
| 55 | |
Václav Kubernát | 7e4e82f | 2018-05-14 20:04:58 +0200 | [diff] [blame] | 56 | // even though we don't allow no keys to be supplied, the star allows me to check which keys are missing |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 57 | auto const listSuffix_def = |
Václav Kubernát | 7e4e82f | 2018-05-14 20:04:58 +0200 | [diff] [blame] | 58 | *keyValue > ']'; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 59 | |
| 60 | auto const listElement_def = |
| 61 | listPrefix > listSuffix; |
| 62 | |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 63 | auto const nodeup_def = |
| 64 | lit("..") > x3::attr(nodeup_()); |
| 65 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 66 | auto const container_def = |
| 67 | identifier; |
| 68 | |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 69 | auto const leaf_def = |
| 70 | identifier; |
| 71 | |
| 72 | // 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át | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 73 | auto const path_def = |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 74 | (x3::expect[container | listElement | nodeup | leaf]) % '/'; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 75 | |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 76 | auto const leafPath_def = |
| 77 | path; |
| 78 | |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 79 | auto const leaf_data_enum_def = |
| 80 | +char_; |
| 81 | auto const leaf_data_decimal_def = |
| 82 | double_; |
| 83 | |
| 84 | struct bool_symbol_table : x3::symbols<bool> { |
| 85 | bool_symbol_table() |
| 86 | { |
| 87 | add |
| 88 | ("true", true) |
| 89 | ("false", false); |
| 90 | } |
| 91 | } const bool_rule; |
| 92 | |
| 93 | auto const leaf_data_bool_def = |
| 94 | bool_rule; |
| 95 | auto const leaf_data_int_def = |
| 96 | int_; |
| 97 | auto const leaf_data_uint_def = |
| 98 | uint_; |
| 99 | auto const leaf_data_string_def = |
| 100 | *char_; |
| 101 | |
| 102 | auto const leaf_data_def = |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 103 | x3::expect[ |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 104 | leaf_data_enum | |
| 105 | leaf_data_decimal | |
| 106 | leaf_data_bool | |
| 107 | leaf_data_int | |
| 108 | leaf_data_uint | |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 109 | leaf_data_string]; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 110 | |
| 111 | auto const space_separator = |
| 112 | x3::omit[x3::no_skip[space]]; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 113 | |
| 114 | auto const cd_def = |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 115 | lit("cd") >> space_separator > path; |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 116 | |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 117 | auto const create_def = |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 118 | lit("create") >> space_separator > path; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 119 | |
| 120 | auto const delete_rule_def = |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 121 | lit("delete") >> space_separator > path; |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 122 | |
| 123 | auto const set_def = |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 124 | lit("set") >> space_separator > leafPath > leaf_data; |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 125 | |
| 126 | auto const command_def = |
Václav Kubernát | 4137845 | 2018-06-06 16:29:40 +0200 | [diff] [blame] | 127 | x3::expect[cd | create | delete_rule | set] >> x3::eoi; |
| 128 | |
| 129 | #if __clang__ |
| 130 | #pragma GCC diagnostic pop |
| 131 | #endif |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 132 | |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 133 | BOOST_SPIRIT_DEFINE(keyValue) |
| 134 | BOOST_SPIRIT_DEFINE(identifier) |
| 135 | BOOST_SPIRIT_DEFINE(listPrefix) |
| 136 | BOOST_SPIRIT_DEFINE(listSuffix) |
| 137 | BOOST_SPIRIT_DEFINE(listElement) |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 138 | BOOST_SPIRIT_DEFINE(nodeup) |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 139 | BOOST_SPIRIT_DEFINE(container) |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 140 | BOOST_SPIRIT_DEFINE(leaf) |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 141 | BOOST_SPIRIT_DEFINE(leafPath) |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 142 | BOOST_SPIRIT_DEFINE(path) |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 143 | BOOST_SPIRIT_DEFINE(leaf_data) |
| 144 | BOOST_SPIRIT_DEFINE(leaf_data_enum) |
| 145 | BOOST_SPIRIT_DEFINE(leaf_data_decimal) |
| 146 | BOOST_SPIRIT_DEFINE(leaf_data_bool) |
| 147 | BOOST_SPIRIT_DEFINE(leaf_data_int) |
| 148 | BOOST_SPIRIT_DEFINE(leaf_data_uint) |
| 149 | BOOST_SPIRIT_DEFINE(leaf_data_string) |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 150 | BOOST_SPIRIT_DEFINE(set) |
Václav Kubernát | 0a2a2e8 | 2018-05-11 13:59:12 +0200 | [diff] [blame] | 151 | BOOST_SPIRIT_DEFINE(cd) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 152 | BOOST_SPIRIT_DEFINE(create) |
| 153 | BOOST_SPIRIT_DEFINE(delete_rule) |
| 154 | BOOST_SPIRIT_DEFINE(command) |