Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [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 | |
| 10 | #include <boost/spirit/home/x3.hpp> |
| 11 | #include "ast_handlers.hpp" |
| 12 | #include "common_parsers.hpp" |
| 13 | #include "leaf_data.hpp" |
| 14 | |
| 15 | namespace x3 = boost::spirit::x3; |
| 16 | |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame^] | 17 | x3::rule<cdPath_class, dataPath_> const cdPath = "cdPath"; |
| 18 | x3::rule<rpcPath_class, dataPath_> const rpcPath = "rpcPath"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 19 | x3::rule<presenceContainerPath_class, dataPath_> const presenceContainerPath = "presenceContainerPath"; |
| 20 | x3::rule<listInstancePath_class, dataPath_> const listInstancePath = "listInstancePath"; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 21 | x3::rule<leafListElementPath_class, dataPath_> const leafListElementPath = "leafListElementPath"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 22 | x3::rule<initializePath_class, x3::unused_type> const initializePath = "initializePath"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 23 | x3::rule<trailingSlash_class, TrailingSlash> const trailingSlash = "trailingSlash"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 24 | x3::rule<absoluteStart_class, Scope> const absoluteStart = "absoluteStart"; |
| 25 | x3::rule<keyValue_class, keyValue_> const keyValue = "keyValue"; |
| 26 | x3::rule<key_identifier_class, std::string> const key_identifier = "key_identifier"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 27 | x3::rule<listSuffix_class, std::vector<keyValue_>> const listSuffix = "listSuffix"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 28 | x3::rule<createKeySuggestions_class, x3::unused_type> const createKeySuggestions = "createKeySuggestions"; |
| 29 | x3::rule<createValueSuggestions_class, x3::unused_type> const createValueSuggestions = "createValueSuggestions"; |
| 30 | x3::rule<suggestKeysEnd_class, x3::unused_type> const suggestKeysEnd = "suggestKeysEnd"; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 31 | x3::rule<class leafListValue_class, leaf_data_> const leafListValue = "leafListValue"; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 32 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 33 | enum class NodeParserMode { |
| 34 | CompleteDataNode, |
| 35 | IncompleteDataNode, |
| 36 | CompletionsOnly, |
| 37 | SchemaNode |
| 38 | }; |
| 39 | |
| 40 | template <auto> |
| 41 | struct ModeToAttribute; |
| 42 | template <> |
| 43 | struct ModeToAttribute<NodeParserMode::CompleteDataNode> { |
| 44 | using type = dataNode_; |
| 45 | }; |
| 46 | template <> |
| 47 | struct ModeToAttribute<NodeParserMode::IncompleteDataNode> { |
| 48 | using type = dataNode_; |
| 49 | }; |
| 50 | template <> |
| 51 | struct ModeToAttribute<NodeParserMode::SchemaNode> { |
| 52 | using type = schemaNode_; |
| 53 | }; |
| 54 | // The CompletionsOnly attribute is dataNode_ only because of convenience: |
| 55 | // having the same return type means we can get by without a ton of `if constexpr` stanzas. |
| 56 | // So the code will still "parse data into the target attr" for simplicity. |
| 57 | template <> |
| 58 | struct ModeToAttribute<NodeParserMode::CompletionsOnly> { |
| 59 | using type = dataNode_; |
| 60 | }; |
| 61 | |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 62 | enum class CompletionMode { |
| 63 | Schema, |
| 64 | Data |
| 65 | }; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 66 | |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 67 | template <NodeParserMode PARSER_MODE, CompletionMode COMPLETION_MODE> |
| 68 | struct NodeParser : x3::parser<NodeParser<PARSER_MODE, COMPLETION_MODE>> { |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 69 | using attribute_type = typename ModeToAttribute<PARSER_MODE>::type; |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 70 | |
| 71 | std::function<bool(const Schema&, const std::string& path)> m_filterFunction; |
| 72 | |
| 73 | NodeParser(const std::function<bool(const Schema&, const std::string& path)>& filterFunction) |
| 74 | : m_filterFunction(filterFunction) |
| 75 | { |
| 76 | } |
| 77 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 78 | // GCC complains that `end` isn't used when doing completions only |
| 79 | // FIXME: GCC 10.1 doesn't emit a warning here. Remove [[maybe_unused]] when GCC 10 is available |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 80 | template <typename It, typename Ctx, typename RCtx, typename Attr> |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 81 | bool parse(It& begin, [[maybe_unused]] It end, Ctx const& ctx, RCtx& rctx, Attr& attr) const |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 82 | { |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 83 | std::string tableName; |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 84 | if constexpr (std::is_same<attribute_type, schemaNode_>()) { |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 85 | tableName = "schemaNode"; |
| 86 | } else { |
| 87 | tableName = "dataNode"; |
| 88 | } |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 89 | x3::symbols<attribute_type> table(tableName); |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 90 | |
| 91 | ParserContext& parserContext = x3::get<parser_context_tag>(ctx); |
| 92 | parserContext.m_suggestions.clear(); |
| 93 | for (const auto& child : parserContext.m_schema.availableNodes(parserContext.currentSchemaPath(), Recursion::NonRecursive)) { |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 94 | attribute_type out; |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 95 | std::string parseString; |
| 96 | if (child.first) { |
| 97 | out.m_prefix = module_{*child.first}; |
| 98 | parseString = *child.first + ":"; |
| 99 | } |
| 100 | parseString += child.second; |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 101 | |
| 102 | if (!m_filterFunction(parserContext.m_schema, joinPaths(pathToSchemaString(parserContext.currentSchemaPath(), Prefixes::Always), parseString))) { |
| 103 | continue; |
| 104 | } |
| 105 | |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 106 | switch (parserContext.m_schema.nodeType(parserContext.currentSchemaPath(), child)) { |
| 107 | case yang::NodeTypes::Container: |
| 108 | case yang::NodeTypes::PresenceContainer: |
| 109 | out.m_suffix = container_{child.second}; |
| 110 | parserContext.m_suggestions.emplace(Completion{parseString + "/"}); |
| 111 | break; |
| 112 | case yang::NodeTypes::Leaf: |
| 113 | out.m_suffix = leaf_{child.second}; |
| 114 | parserContext.m_suggestions.emplace(Completion{parseString + " "}); |
| 115 | break; |
| 116 | case yang::NodeTypes::List: |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 117 | if constexpr (std::is_same<attribute_type, schemaNode_>()) { |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 118 | out.m_suffix = list_{child.second}; |
| 119 | } else { |
| 120 | out.m_suffix = listElement_{child.second, {}}; |
| 121 | } |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 122 | |
| 123 | if constexpr (COMPLETION_MODE == CompletionMode::Schema) { |
| 124 | parserContext.m_suggestions.emplace(Completion{parseString + "/"}); |
| 125 | } else { |
| 126 | parserContext.m_suggestions.emplace(Completion{parseString, "[", Completion::WhenToAdd::IfFullMatch}); |
| 127 | } |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 128 | break; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 129 | case yang::NodeTypes::LeafList: |
| 130 | if constexpr (std::is_same<attribute_type, schemaNode_>()) { |
| 131 | out.m_suffix = leafList_{child.second}; |
| 132 | } else { |
| 133 | out.m_suffix = leafListElement_{child.second, {}}; |
| 134 | } |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 135 | |
| 136 | if constexpr (COMPLETION_MODE == CompletionMode::Schema) { |
| 137 | parserContext.m_suggestions.emplace(Completion{parseString + "/"}); |
| 138 | } else { |
| 139 | parserContext.m_suggestions.emplace(Completion{parseString, "[", Completion::WhenToAdd::IfFullMatch}); |
| 140 | } |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 141 | break; |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame^] | 142 | case yang::NodeTypes::Rpc: |
| 143 | out.m_suffix = rpcNode_{child.second}; |
| 144 | parserContext.m_suggestions.emplace(Completion{parseString + "/"}); |
| 145 | break; |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 146 | case yang::NodeTypes::Action: |
| 147 | case yang::NodeTypes::AnyXml: |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 148 | case yang::NodeTypes::Notification: |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 149 | continue; |
| 150 | } |
| 151 | table.add(parseString, out); |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 152 | if (!child.first) { |
| 153 | auto topLevelModule = parserContext.currentSchemaPath().m_nodes.begin()->m_prefix; |
| 154 | out.m_prefix = topLevelModule; |
| 155 | table.add(topLevelModule->m_name + ":" + parseString, out); |
| 156 | } |
| 157 | } |
Václav Kubernát | aed4bc7 | 2020-06-08 01:09:25 +0200 | [diff] [blame] | 158 | table.add("..", attribute_type{nodeup_{}}); |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 159 | parserContext.m_completionIterator = begin; |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 160 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 161 | if constexpr (PARSER_MODE == NodeParserMode::CompletionsOnly) { |
| 162 | return true; |
| 163 | } else { |
| 164 | It saveIter; |
| 165 | // GCC complains that I assign saveIter because I use it only if NodeType is dataNode_ |
| 166 | // FIXME: GCC 10.1 doesn't emit a warning here. Make this unconditional when GCC 10 is available. |
| 167 | if constexpr (std::is_same<attribute_type, dataNode_>()) { |
| 168 | saveIter = begin; |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 169 | } |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 170 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 171 | auto res = table.parse(begin, end, ctx, rctx, attr); |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 172 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 173 | if (std::holds_alternative<leaf_>(attr.m_suffix)) { |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 174 | parserContext.m_tmpListKeyLeafPath.m_location = parserContext.currentSchemaPath(); |
| 175 | ModuleNodePair node{attr.m_prefix.flat_map([](const auto& it) { |
| 176 | return boost::optional<std::string>{it.m_name}; |
| 177 | }), |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 178 | std::get<leaf_>(attr.m_suffix).m_name}; |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 179 | parserContext.m_tmpListKeyLeafPath.m_node = node; |
| 180 | } |
| 181 | |
| 182 | if constexpr (std::is_same<attribute_type, dataNode_>()) { |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 183 | if (std::holds_alternative<listElement_>(attr.m_suffix)) { |
Václav Kubernát | 2db124c | 2020-05-28 21:58:36 +0200 | [diff] [blame] | 184 | parserContext.m_tmpListPath = parserContext.currentDataPath(); |
| 185 | auto tmpList = list_{std::get<listElement_>(attr.m_suffix).m_name}; |
Václav Kubernát | faacd02 | 2020-07-08 16:44:38 +0200 | [diff] [blame] | 186 | parserContext.m_tmpListPath.m_nodes.emplace_back(attr.m_prefix, tmpList); |
Václav Kubernát | 2db124c | 2020-05-28 21:58:36 +0200 | [diff] [blame] | 187 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 188 | res = listSuffix.parse(begin, end, ctx, rctx, std::get<listElement_>(attr.m_suffix).m_keys); |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 189 | |
| 190 | // FIXME: think of a better way to do this, that is, get rid of manual iterator reverting |
| 191 | if (!res) { |
| 192 | // If listSuffix didn't succeed, we check, if we allow incomplete nodes. If we do, then we replace listElement_ with list_. |
| 193 | // If we don't, we fail the whole symbol table. |
| 194 | if constexpr (PARSER_MODE == NodeParserMode::IncompleteDataNode) { |
| 195 | res = true; |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 196 | attr.m_suffix = list_{std::get<listElement_>(attr.m_suffix).m_name}; |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 197 | } else { |
| 198 | begin = saveIter; |
| 199 | } |
| 200 | } |
| 201 | } |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 202 | |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 203 | if (std::holds_alternative<leafListElement_>(attr.m_suffix)) { |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 204 | parserContext.m_tmpListKeyLeafPath.m_location = parserContext.currentSchemaPath(); |
| 205 | ModuleNodePair node{attr.m_prefix.flat_map([](const auto& it) { |
| 206 | return boost::optional<std::string>{it.m_name}; |
| 207 | }), |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 208 | std::get<leafListElement_>(attr.m_suffix).m_name}; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 209 | parserContext.m_tmpListKeyLeafPath.m_node = node; |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 210 | res = leafListValue.parse(begin, end, ctx, rctx, std::get<leafListElement_>(attr.m_suffix).m_value); |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 211 | |
| 212 | if (!res) { |
| 213 | if constexpr (PARSER_MODE == NodeParserMode::IncompleteDataNode) { |
| 214 | res = true; |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 215 | attr.m_suffix = leafList_{std::get<leafListElement_>(attr.m_suffix).m_name}; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 216 | } else { |
| 217 | begin = saveIter; |
| 218 | } |
| 219 | } |
| 220 | } |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | if (res) { |
| 224 | parserContext.pushPathFragment(attr); |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 225 | } |
| 226 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 227 | return res; |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 228 | } |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 229 | } |
Václav Kubernát | dd5945a | 2020-05-05 01:24:23 +0200 | [diff] [blame] | 230 | }; |
| 231 | |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 232 | template <CompletionMode COMPLETION_MODE> using schemaNode = NodeParser<NodeParserMode::SchemaNode, COMPLETION_MODE>; |
| 233 | template <CompletionMode COMPLETION_MODE> using dataNode = NodeParser<NodeParserMode::CompleteDataNode, COMPLETION_MODE>; |
| 234 | template <CompletionMode COMPLETION_MODE> using incompleteDataNode = NodeParser<NodeParserMode::IncompleteDataNode, COMPLETION_MODE>; |
| 235 | template <CompletionMode COMPLETION_MODE> using pathCompletions = NodeParser<NodeParserMode::CompletionsOnly, COMPLETION_MODE>; |
Václav Kubernát | 60a0ed5 | 2020-04-28 15:21:33 +0200 | [diff] [blame] | 236 | |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 237 | using AnyPath = boost::variant<schemaPath_, dataPath_>; |
| 238 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 239 | enum class PathParserMode { |
| 240 | AnyPath, |
| 241 | DataPath, |
| 242 | DataPathListEnd |
| 243 | }; |
| 244 | |
| 245 | template <> |
| 246 | struct ModeToAttribute<PathParserMode::AnyPath> { |
| 247 | using type = AnyPath; |
| 248 | }; |
| 249 | |
| 250 | template <> |
| 251 | struct ModeToAttribute<PathParserMode::DataPath> { |
| 252 | using type = dataPath_; |
| 253 | }; |
| 254 | |
| 255 | template <> |
| 256 | struct ModeToAttribute<PathParserMode::DataPathListEnd> { |
| 257 | using type = dataPath_; |
| 258 | }; |
| 259 | |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 260 | template <PathParserMode PARSER_MODE, CompletionMode COMPLETION_MODE> |
| 261 | struct PathParser : x3::parser<PathParser<PARSER_MODE, COMPLETION_MODE>> { |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 262 | using attribute_type = ModeToAttribute<PARSER_MODE>; |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 263 | std::function<bool(const Schema&, const std::string& path)> m_filterFunction; |
| 264 | |
| 265 | PathParser(const std::function<bool(const Schema&, const std::string& path)>& filterFunction = [] (const auto&, const auto&) {return true;}) |
| 266 | : m_filterFunction(filterFunction) |
| 267 | { |
| 268 | } |
| 269 | |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 270 | template <typename It, typename Ctx, typename RCtx, typename Attr> |
| 271 | bool parse(It& begin, It end, Ctx const& ctx, RCtx& rctx, Attr& attr) const |
| 272 | { |
Václav Kubernát | 74d35a4 | 2020-05-15 15:29:16 +0200 | [diff] [blame] | 273 | initializePath.parse(begin, end, ctx, rctx, x3::unused); |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 274 | dataPath_ attrData; |
| 275 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 276 | auto pathEnd = x3::rule<class PathEnd>{"pathEnd"} = &space_separator | x3::eoi; |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 277 | // absoluteStart has to be separate from the dataPath parser, |
| 278 | // otherwise, if the "dataNode % '/'" parser fails, the begin iterator |
| 279 | // gets reverted to before the starting slash. |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 280 | auto res = (-absoluteStart).parse(begin, end, ctx, rctx, attrData.m_scope); |
| 281 | auto dataPath = x3::attr(attrData.m_scope) |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 282 | >> (dataNode<COMPLETION_MODE>{m_filterFunction} % '/' | pathEnd >> x3::attr(std::vector<dataNode_>{})) |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 283 | >> -trailingSlash; |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 284 | res = dataPath.parse(begin, end, ctx, rctx, attrData); |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 285 | |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 286 | // If we allow data paths with a list at the end, we just try to parse that separately. |
| 287 | if constexpr (PARSER_MODE == PathParserMode::DataPathListEnd || PARSER_MODE == PathParserMode::AnyPath) { |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 288 | if (!res || !pathEnd.parse(begin, end, ctx, rctx, x3::unused)) { |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 289 | dataNode_ attrNodeList; |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 290 | res = incompleteDataNode<COMPLETION_MODE>{m_filterFunction}.parse(begin, end, ctx, rctx, attrNodeList); |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 291 | if (res) { |
Václav Kubernát | faacd02 | 2020-07-08 16:44:38 +0200 | [diff] [blame] | 292 | attrData.m_nodes.emplace_back(attrNodeList); |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 293 | // If the trailing slash matches, no more nodes are parsed. |
| 294 | // That means no more completion. So, I generate them |
| 295 | // manually. |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 296 | res = (-(trailingSlash >> x3::omit[pathCompletions<COMPLETION_MODE>{m_filterFunction}])).parse(begin, end, ctx, rctx, attrData.m_trailingSlash); |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | attr = attrData; |
| 302 | if constexpr (PARSER_MODE == PathParserMode::AnyPath) { |
| 303 | // If our data path already has some listElement_ fragments, we can't parse rest of the path as a schema path |
| 304 | auto hasLists = std::any_of(attrData.m_nodes.begin(), attrData.m_nodes.end(), |
Václav Kubernát | b5ca154 | 2020-05-27 01:03:54 +0200 | [diff] [blame] | 305 | [] (const auto& node) { return std::holds_alternative<listElement_>(node.m_suffix); }); |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 306 | // If parsing failed, or if there's more input we try parsing schema nodes. |
| 307 | if (!hasLists) { |
| 308 | if (!res || !pathEnd.parse(begin, end, ctx, rctx, x3::unused)) { |
| 309 | // If dataPath parsed some nodes, they will be saved in `attrData`. We have to keep these. |
| 310 | schemaPath_ attrSchema = dataPathToSchemaPath(attrData); |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 311 | auto schemaPath = schemaNode<COMPLETION_MODE>{m_filterFunction} % '/'; |
Václav Kubernát | 4a58ce6 | 2020-05-14 17:58:10 +0200 | [diff] [blame] | 312 | // The schemaPath parser continues where the dataPath parser ended. |
| 313 | res = schemaPath.parse(begin, end, ctx, rctx, attrSchema.m_nodes); |
| 314 | auto trailing = -trailingSlash >> pathEnd; |
| 315 | res = trailing.parse(begin, end, ctx, rctx, attrSchema.m_trailingSlash); |
| 316 | attr = attrSchema; |
| 317 | } |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 318 | } |
| 319 | } |
| 320 | return res; |
| 321 | } |
Václav Kubernát | 74d35a4 | 2020-05-15 15:29:16 +0200 | [diff] [blame] | 322 | }; |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 323 | |
| 324 | // Need to use these wrappers so that my PathParser class gets the proper |
| 325 | // attribute. Otherwise, Spirit injects the attribute of the outer parser that |
| 326 | // uses my PathParser. |
| 327 | // Example grammar: anyPath | module. |
| 328 | // The PathParser class would get a boost::variant as the attribute, but I |
| 329 | // don't want to deal with that, so I use these wrappers to ensure the |
Václav Kubernát | 74d35a4 | 2020-05-15 15:29:16 +0200 | [diff] [blame] | 330 | // attribute I want (and let Spirit deal with boost::variant). |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 331 | auto const anyPath = x3::rule<class anyPath_class, AnyPath>{"anyPath"} = PathParser<PathParserMode::AnyPath, CompletionMode::Schema>{}; |
| 332 | auto const dataPath = x3::rule<class dataPath_class, dataPath_>{"dataPath"} = PathParser<PathParserMode::DataPath, CompletionMode::Data>{}; |
| 333 | auto const dataPathListEnd = x3::rule<class dataPath_class, dataPath_>{"dataPath"} = PathParser<PathParserMode::DataPathListEnd, CompletionMode::Data>{}; |
Václav Kubernát | 4618fa4 | 2020-05-07 01:33:19 +0200 | [diff] [blame] | 334 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 335 | #if __clang__ |
| 336 | #pragma GCC diagnostic push |
| 337 | #pragma GCC diagnostic ignored "-Woverloaded-shift-op-parentheses" |
| 338 | #endif |
| 339 | |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 340 | struct SuggestLeafListEnd : x3::parser<SuggestLeafListEnd> { |
| 341 | using attribute_type = x3::unused_type; |
| 342 | template <typename It, typename Ctx, typename RCtx, typename Attr> |
| 343 | bool parse(It& begin, It, Ctx const& ctx, RCtx&, Attr&) const |
| 344 | { |
| 345 | auto& parserContext = x3::get<parser_context_tag>(ctx); |
| 346 | parserContext.m_completionIterator = begin; |
| 347 | parserContext.m_suggestions = {Completion{"]"}}; |
| 348 | |
| 349 | return true; |
| 350 | } |
| 351 | } const suggestLeafListEnd; |
| 352 | |
| 353 | auto const leafListValue_def = |
| 354 | '[' >> leaf_data >> suggestLeafListEnd >> ']'; |
| 355 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 356 | auto const rest = |
| 357 | x3::omit[x3::no_skip[+(x3::char_ - '/' - space_separator)]]; |
| 358 | |
| 359 | auto const key_identifier_def = |
| 360 | x3::lexeme[ |
| 361 | ((x3::alpha | char_("_")) >> *(x3::alnum | char_("_") | char_("-") | char_("."))) |
| 362 | ]; |
| 363 | |
| 364 | auto const createKeySuggestions_def = |
| 365 | x3::eps; |
| 366 | |
| 367 | auto const createValueSuggestions_def = |
| 368 | x3::eps; |
| 369 | |
| 370 | auto const suggestKeysEnd_def = |
| 371 | x3::eps; |
| 372 | |
| 373 | auto const keyValue_def = |
| 374 | key_identifier > '=' > createValueSuggestions > leaf_data; |
| 375 | |
| 376 | auto const keyValueWrapper = |
Václav Kubernát | 9fa5dca | 2020-06-01 03:56:41 +0200 | [diff] [blame] | 377 | x3::no_skip['[' > createKeySuggestions > keyValue > suggestKeysEnd > ']']; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 378 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 379 | // even though we don't allow no keys to be supplied, the star allows me to check which keys are missing |
| 380 | auto const listSuffix_def = |
| 381 | *keyValueWrapper; |
| 382 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 383 | auto const list_def = |
| 384 | node_identifier >> !char_('['); |
| 385 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 386 | auto const absoluteStart_def = |
| 387 | x3::omit['/'] >> x3::attr(Scope::Absolute); |
| 388 | |
| 389 | auto const trailingSlash_def = |
| 390 | x3::omit['/'] >> x3::attr(TrailingSlash::Present); |
| 391 | |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 392 | auto const filterConfigFalse = [] (const Schema& schema, const std::string& path) { |
| 393 | return schema.isConfig(path); |
| 394 | }; |
| 395 | |
Václav Kubernát | 28cf336 | 2020-06-29 17:52:51 +0200 | [diff] [blame] | 396 | struct writableOps_tag; |
| 397 | |
| 398 | PathParser<PathParserMode::DataPath, CompletionMode::Data> const dataPathFilterConfigFalse{filterConfigFalse}; |
| 399 | |
| 400 | struct WritableLeafPath : x3::parser<WritableLeafPath> { |
| 401 | using attribute_type = dataPath_; |
| 402 | template <typename It, typename Ctx, typename RCtx, typename Attr> |
| 403 | static bool parse(It& begin, It end, Ctx const& ctx, RCtx& rctx, Attr& attr) |
| 404 | { |
| 405 | bool res; |
| 406 | if (x3::get<writableOps_tag>(ctx) == WritableOps::Yes) { |
| 407 | res = dataPath.parse(begin, end, ctx, rctx, attr); |
| 408 | } else { |
| 409 | res = dataPathFilterConfigFalse.parse(begin, end, ctx, rctx, attr); |
| 410 | } |
| 411 | if (!res) { |
| 412 | return false; |
| 413 | } |
| 414 | |
| 415 | if (attr.m_nodes.empty() || !std::holds_alternative<leaf_>(attr.m_nodes.back().m_suffix)) { |
| 416 | auto& parserContext = x3::get<parser_context_tag>(ctx); |
| 417 | parserContext.m_errorMsg = "This is not a path to leaf."; |
| 418 | return false; |
| 419 | } |
| 420 | |
| 421 | return true; |
| 422 | } |
| 423 | |
| 424 | } writableLeafPath; |
| 425 | |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 426 | auto const writableLeafPath_def = |
Václav Kubernát | 743d9eb | 2020-05-18 13:42:36 +0200 | [diff] [blame] | 427 | PathParser<PathParserMode::DataPath, CompletionMode::Data>{filterConfigFalse}; |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 428 | |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame^] | 429 | auto const onlyRpc = [] (const Schema& schema, const std::string& path) { |
| 430 | return schema.nodeType(path) == yang::NodeTypes::Rpc; |
| 431 | }; |
| 432 | |
| 433 | auto const rpcPath_def = |
| 434 | PathParser<PathParserMode::DataPath, CompletionMode::Data>{onlyRpc}; |
| 435 | |
| 436 | auto const noRpc = [] (const Schema& schema, const std::string& path) { |
| 437 | return schema.nodeType(path) != yang::NodeTypes::Rpc; |
| 438 | }; |
| 439 | |
| 440 | auto const cdPath_def = |
| 441 | PathParser<PathParserMode::DataPath, CompletionMode::Data>{noRpc}; |
| 442 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 443 | auto const presenceContainerPath_def = |
| 444 | dataPath; |
| 445 | |
| 446 | auto const listInstancePath_def = |
| 447 | dataPath; |
| 448 | |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 449 | auto const leafListElementPath_def = |
| 450 | dataPath; |
| 451 | |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 452 | // A "nothing" parser, which is used to indicate we tried to parse a path |
| 453 | auto const initializePath_def = |
| 454 | x3::eps; |
| 455 | |
| 456 | |
| 457 | |
| 458 | #if __clang__ |
| 459 | #pragma GCC diagnostic pop |
| 460 | #endif |
| 461 | |
| 462 | BOOST_SPIRIT_DEFINE(keyValue) |
| 463 | BOOST_SPIRIT_DEFINE(key_identifier) |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 464 | BOOST_SPIRIT_DEFINE(listSuffix) |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame^] | 465 | BOOST_SPIRIT_DEFINE(rpcPath) |
| 466 | BOOST_SPIRIT_DEFINE(cdPath) |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 467 | BOOST_SPIRIT_DEFINE(presenceContainerPath) |
| 468 | BOOST_SPIRIT_DEFINE(listInstancePath) |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 469 | BOOST_SPIRIT_DEFINE(leafListElementPath) |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 470 | BOOST_SPIRIT_DEFINE(initializePath) |
| 471 | BOOST_SPIRIT_DEFINE(createKeySuggestions) |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 472 | BOOST_SPIRIT_DEFINE(createValueSuggestions) |
| 473 | BOOST_SPIRIT_DEFINE(suggestKeysEnd) |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 474 | BOOST_SPIRIT_DEFINE(leafListValue) |
Václav Kubernát | d0ea9b2 | 2020-04-24 00:44:15 +0200 | [diff] [blame] | 475 | BOOST_SPIRIT_DEFINE(absoluteStart) |
| 476 | BOOST_SPIRIT_DEFINE(trailingSlash) |