Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +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 | |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 9 | #include <boost/algorithm/string/predicate.hpp> |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 10 | #include "static_schema.hpp" |
| 11 | #include "utils.hpp" |
| 12 | |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 13 | StaticSchema::StaticSchema() |
| 14 | { |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 15 | m_nodes.emplace("/", std::unordered_map<std::string, NodeInfo>()); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 16 | } |
| 17 | |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 18 | const std::unordered_map<std::string, NodeInfo>& StaticSchema::children(const std::string& name) const |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 19 | { |
| 20 | return m_nodes.at(name); |
| 21 | } |
| 22 | |
Václav Kubernát | 75877de | 2019-11-20 17:43:02 +0100 | [diff] [blame] | 23 | bool StaticSchema::isModule(const std::string& name) const |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 24 | { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 25 | return m_modules.find(name) != m_modules.end(); |
| 26 | } |
| 27 | |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 28 | void StaticSchema::addContainer(const std::string& location, const std::string& name, yang::ContainerTraits isPresence) |
| 29 | { |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 30 | m_nodes.at(location).emplace(name, NodeInfo{yang::container{isPresence}, yang::AccessType::Writable}); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 31 | |
| 32 | //create a new set of children for the new node |
| 33 | std::string key = joinPaths(location, name); |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 34 | m_nodes.emplace(key, std::unordered_map<std::string, NodeInfo>()); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 35 | } |
| 36 | |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 37 | void StaticSchema::addRpc(const std::string& location, const std::string& name) |
| 38 | { |
| 39 | m_nodes.at(location).emplace(name, NodeInfo{yang::rpc{}, yang::AccessType::Writable}); |
| 40 | |
| 41 | //create a new set of children for the new node |
| 42 | std::string key = joinPaths(location, name); |
| 43 | m_nodes.emplace(key, std::unordered_map<std::string, NodeInfo>()); |
Václav Kubernát | d8408e0 | 2020-12-02 05:13:27 +0100 | [diff] [blame] | 44 | m_nodes.emplace(joinPaths(key, "input"), std::unordered_map<std::string, NodeInfo>()); |
| 45 | m_nodes.emplace(joinPaths(key, "output"), std::unordered_map<std::string, NodeInfo>()); |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 46 | } |
| 47 | |
Václav Kubernát | 3d787b1 | 2020-10-29 09:11:26 +0100 | [diff] [blame] | 48 | void StaticSchema::addAction(const std::string& location, const std::string& name) |
| 49 | { |
| 50 | m_nodes.at(location).emplace(name, NodeInfo{yang::action{}, yang::AccessType::Writable}); |
| 51 | |
| 52 | //create a new set of children for the new node |
| 53 | std::string key = joinPaths(location, name); |
| 54 | m_nodes.emplace(key, std::unordered_map<std::string, NodeInfo>()); |
| 55 | } |
| 56 | |
Václav Kubernát | 2db124c | 2020-05-28 21:58:36 +0200 | [diff] [blame] | 57 | bool StaticSchema::listHasKey(const schemaPath_& listPath, const std::string& key) const |
| 58 | { |
| 59 | return listKeys(listPath).count(key); |
| 60 | } |
| 61 | |
Václav Kubernát | 2db124c | 2020-05-28 21:58:36 +0200 | [diff] [blame] | 62 | std::string lastNodeOfSchemaPath(const std::string& path) |
| 63 | { |
| 64 | std::string res = path; |
| 65 | if (auto pos = res.find_last_of('/'); pos != res.npos) { |
| 66 | res.erase(0, pos + 1); |
| 67 | } |
| 68 | return res; |
| 69 | } |
| 70 | |
| 71 | const std::set<std::string> StaticSchema::listKeys(const schemaPath_& listPath) const |
| 72 | { |
| 73 | auto listPathString = pathToSchemaString(listPath, Prefixes::Always); |
| 74 | const auto& child = children(stripLastNodeFromPath(listPathString)).at(lastNodeOfSchemaPath(listPathString)); |
| 75 | const auto& list = std::get<yang::list>(child.m_nodeType); |
| 76 | return list.m_keys; |
| 77 | } |
| 78 | |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 79 | void StaticSchema::addList(const std::string& location, const std::string& name, const std::set<std::string>& keys) |
| 80 | { |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 81 | m_nodes.at(location).emplace(name, NodeInfo{yang::list{keys}, yang::AccessType::Writable}); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 82 | |
Václav Kubernát | 1446fe1 | 2019-10-02 19:32:51 +0200 | [diff] [blame] | 83 | std::string key = joinPaths(location, name); |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 84 | m_nodes.emplace(key, std::unordered_map<std::string, NodeInfo>()); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 85 | } |
| 86 | |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 87 | std::set<identityRef_> StaticSchema::validIdentities(std::string_view module, std::string_view value) |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 88 | { |
Václav Kubernát | 222ecff | 2020-05-14 23:14:35 +0200 | [diff] [blame] | 89 | std::set<identityRef_> identities; |
| 90 | getIdentSet(identityRef_{std::string{module}, std::string{value}}, identities); |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 91 | |
Václav Kubernát | 222ecff | 2020-05-14 23:14:35 +0200 | [diff] [blame] | 92 | return identities; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 93 | } |
| 94 | |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 95 | void StaticSchema::addLeaf(const std::string& location, const std::string& name, const yang::LeafDataType& type, const yang::AccessType accessType) |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 96 | { |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 97 | m_nodes.at(location).emplace(name, NodeInfo{yang::leaf{yang::TypeInfo{type, std::nullopt}}, accessType}); |
Václav Kubernát | e69133a | 2019-11-01 19:01:34 +0100 | [diff] [blame] | 98 | std::string key = joinPaths(location, name); |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 99 | m_nodes.emplace(key, std::unordered_map<std::string, NodeInfo>()); |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 102 | void StaticSchema::addLeafList(const std::string& location, const std::string& name, const yang::LeafDataType& type) |
| 103 | { |
| 104 | m_nodes.at(location).emplace(name, NodeInfo{yang::leaflist{yang::TypeInfo{type, std::nullopt}}, yang::AccessType::Writable}); |
| 105 | std::string key = joinPaths(location, name); |
| 106 | m_nodes.emplace(key, std::unordered_map<std::string, NodeInfo>()); |
| 107 | } |
| 108 | |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 109 | void StaticSchema::addModule(const std::string& name) |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 110 | { |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 111 | m_modules.emplace(name); |
| 112 | } |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 113 | |
Václav Kubernát | 222ecff | 2020-05-14 23:14:35 +0200 | [diff] [blame] | 114 | void StaticSchema::addIdentity(const std::optional<identityRef_>& base, const identityRef_& name) |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 115 | { |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 116 | if (base) { |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 117 | m_identities.at(base.value()).emplace(name); |
Václav Kubernát | 3a43323 | 2020-07-08 17:52:50 +0200 | [diff] [blame] | 118 | } |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 119 | |
Václav Kubernát | 222ecff | 2020-05-14 23:14:35 +0200 | [diff] [blame] | 120 | m_identities.emplace(name, std::set<identityRef_>()); |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 121 | } |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 122 | |
Václav Kubernát | 222ecff | 2020-05-14 23:14:35 +0200 | [diff] [blame] | 123 | void StaticSchema::getIdentSet(const identityRef_& ident, std::set<identityRef_>& res) const |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 124 | { |
| 125 | res.insert(ident); |
| 126 | auto derivedIdentities = m_identities.at(ident); |
| 127 | for (auto it : derivedIdentities) { |
| 128 | getIdentSet(it, res); |
| 129 | } |
| 130 | } |
| 131 | |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 132 | yang::TypeInfo StaticSchema::leafType(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 133 | { |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 134 | std::string locationString = pathToSchemaString(location, Prefixes::Always); |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 135 | auto nodeType = children(locationString).at(fullNodeName(location, node)).m_nodeType; |
Václav Kubernát | 4d8a9c2 | 2020-05-26 23:56:10 +0200 | [diff] [blame] | 136 | if (std::holds_alternative<yang::leaf>(nodeType)) { |
| 137 | return std::get<yang::leaf>(nodeType).m_type; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 138 | } |
| 139 | |
Václav Kubernát | 4d8a9c2 | 2020-05-26 23:56:10 +0200 | [diff] [blame] | 140 | if (std::holds_alternative<yang::leaflist>(nodeType)) { |
| 141 | return std::get<yang::leaflist>(nodeType).m_type; |
Václav Kubernát | 5b8a8f3 | 2020-05-20 00:57:22 +0200 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | throw std::logic_error("StaticSchema::leafType: Path is not a leaf or a leaflist"); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 145 | } |
| 146 | |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 147 | yang::TypeInfo StaticSchema::leafType(const std::string& path) const |
Václav Kubernát | 9bf3685 | 2020-02-18 17:47:56 +0100 | [diff] [blame] | 148 | { |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 149 | auto locationString = stripLastNodeFromPath(path); |
| 150 | auto node = lastNodeOfSchemaPath(path); |
Václav Kubernát | 4d8a9c2 | 2020-05-26 23:56:10 +0200 | [diff] [blame] | 151 | return std::get<yang::leaf>(children(locationString).at(node).m_nodeType).m_type; |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 152 | } |
| 153 | |
Václav Kubernát | 95b0887 | 2020-04-28 01:04:17 +0200 | [diff] [blame] | 154 | std::set<ModuleNodePair> StaticSchema::availableNodes(const boost::variant<dataPath_, schemaPath_, module_>& path, const Recursion recursion) const |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 155 | { |
Václav Kubernát | 3a823f4 | 2020-04-29 23:40:21 +0200 | [diff] [blame] | 156 | if (recursion == Recursion::Recursive) { |
| 157 | throw std::logic_error("Recursive StaticSchema::availableNodes is not implemented. It shouldn't be used in tests."); |
| 158 | } |
| 159 | |
Václav Kubernát | 95b0887 | 2020-04-28 01:04:17 +0200 | [diff] [blame] | 160 | std::set<ModuleNodePair> res; |
Václav Kubernát | 3a823f4 | 2020-04-29 23:40:21 +0200 | [diff] [blame] | 161 | if (path.type() == typeid(module_)) { |
| 162 | auto topLevelNodes = m_nodes.at(""); |
| 163 | auto modulePlusColon = boost::get<module_>(path).m_name + ":"; |
| 164 | for (const auto& it : topLevelNodes) { |
| 165 | if (boost::algorithm::starts_with(it.first, modulePlusColon)) { |
Václav Kubernát | 95b0887 | 2020-04-28 01:04:17 +0200 | [diff] [blame] | 166 | res.insert(splitModuleNode(it.first)); |
Václav Kubernát | 3a823f4 | 2020-04-29 23:40:21 +0200 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | return res; |
| 170 | } |
| 171 | |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 172 | auto getTopLevelModule = [](const auto& path) -> boost::optional<std::string> { |
Václav Kubernát | e2d629f | 2020-04-28 11:01:54 +0200 | [diff] [blame] | 173 | if (!path.m_nodes.empty()) { |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 174 | return path.m_nodes.begin()->m_prefix.flat_map([](const auto& module) { return boost::optional<std::string>(module.m_name); }); |
Václav Kubernát | e2d629f | 2020-04-28 11:01:54 +0200 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | return boost::none; |
| 178 | }; |
| 179 | |
| 180 | std::string locationString; |
| 181 | boost::optional<std::string> topLevelModule; |
| 182 | if (path.type() == typeid(schemaPath_)) { |
| 183 | locationString = pathToSchemaString(boost::get<schemaPath_>(path), Prefixes::Always); |
| 184 | topLevelModule = getTopLevelModule(boost::get<schemaPath_>(path)); |
| 185 | } else { |
| 186 | locationString = pathToSchemaString(boost::get<dataPath_>(path), Prefixes::Always); |
| 187 | topLevelModule = getTopLevelModule(boost::get<dataPath_>(path)); |
| 188 | } |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 189 | |
| 190 | auto childrenRef = children(locationString); |
| 191 | |
Václav Kubernát | e2d629f | 2020-04-28 11:01:54 +0200 | [diff] [blame] | 192 | std::transform(childrenRef.begin(), childrenRef.end(), std::inserter(res, res.end()), [path, topLevelModule](const auto& it) { |
| 193 | auto res = splitModuleNode(it.first); |
| 194 | if (topLevelModule == res.first) { |
| 195 | res.first = boost::none; |
| 196 | } |
| 197 | return res; |
Václav Kubernát | 95b0887 | 2020-04-28 01:04:17 +0200 | [diff] [blame] | 198 | }); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 199 | return res; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 200 | } |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 201 | |
Václav Kubernát | 19a368b | 2020-05-27 00:05:23 +0200 | [diff] [blame] | 202 | struct impl_nodeType { |
| 203 | |
| 204 | yang::NodeTypes operator()(const yang::container& cont) |
| 205 | { |
| 206 | if (cont.m_presence == yang::ContainerTraits::Presence) { |
| 207 | return yang::NodeTypes::PresenceContainer; |
| 208 | } |
| 209 | return yang::NodeTypes::Container; |
| 210 | } |
| 211 | yang::NodeTypes operator()(const yang::list&) |
| 212 | { |
| 213 | return yang::NodeTypes::List; |
| 214 | } |
| 215 | yang::NodeTypes operator()(const yang::leaf&) |
| 216 | { |
| 217 | return yang::NodeTypes::Leaf; |
Václav Kubernát | 19a368b | 2020-05-27 00:05:23 +0200 | [diff] [blame] | 218 | } |
| 219 | yang::NodeTypes operator()(const yang::leaflist&) |
| 220 | { |
| 221 | return yang::NodeTypes::LeafList; |
| 222 | } |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 223 | |
| 224 | yang::NodeTypes operator()(const yang::rpc) |
| 225 | { |
| 226 | return yang::NodeTypes::Rpc; |
| 227 | } |
Václav Kubernát | 3d787b1 | 2020-10-29 09:11:26 +0100 | [diff] [blame] | 228 | |
| 229 | yang::NodeTypes operator()(const yang::action) |
| 230 | { |
| 231 | return yang::NodeTypes::Action; |
| 232 | } |
Václav Kubernát | 19a368b | 2020-05-27 00:05:23 +0200 | [diff] [blame] | 233 | }; |
| 234 | |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 235 | yang::NodeTypes StaticSchema::nodeType(const schemaPath_& location, const ModuleNodePair& node) const |
| 236 | { |
| 237 | std::string locationString = pathToSchemaString(location, Prefixes::Always); |
| 238 | auto fullName = fullNodeName(location, node); |
| 239 | try { |
| 240 | auto targetNode = children(locationString).at(fullName); |
| 241 | |
Václav Kubernát | 19a368b | 2020-05-27 00:05:23 +0200 | [diff] [blame] | 242 | return std::visit(impl_nodeType{}, targetNode.m_nodeType); |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 243 | } catch (std::out_of_range&) { |
| 244 | throw InvalidNodeException(); |
| 245 | } |
| 246 | } |
| 247 | |
Václav Kubernát | abf5280 | 2020-05-19 01:31:17 +0200 | [diff] [blame] | 248 | std::string fullNodeName(const std::string& location, const std::string& node) |
| 249 | { |
| 250 | // If the node already contains a module name, just return it. |
| 251 | if (node.find_first_of(':') != std::string::npos) { |
| 252 | return node; |
| 253 | } |
| 254 | |
| 255 | // Otherwise take the module name from the first node of location. |
| 256 | return location.substr(location.find_first_not_of('/'), location.find_first_of(':') - 1) + ":" + node; |
| 257 | } |
| 258 | |
| 259 | bool StaticSchema::isConfig(const std::string& leafPath) const |
| 260 | { |
| 261 | auto locationString = stripLastNodeFromPath(leafPath); |
| 262 | |
| 263 | auto node = fullNodeName(locationString, lastNodeOfSchemaPath(leafPath)); |
| 264 | return children(locationString).at(node).m_configType == yang::AccessType::Writable; |
| 265 | } |
| 266 | |
Václav Kubernát | 1e09bd6 | 2020-02-17 15:13:38 +0100 | [diff] [blame] | 267 | std::optional<std::string> StaticSchema::description([[maybe_unused]] const std::string& path) const |
| 268 | { |
| 269 | throw std::runtime_error{"StaticSchema::description not implemented"}; |
| 270 | } |
| 271 | |
Václav Kubernát | a1c4c9e | 2020-04-22 00:37:52 +0200 | [diff] [blame] | 272 | yang::Status StaticSchema::status([[maybe_unused]] const std::string& location) const |
| 273 | { |
| 274 | throw std::runtime_error{"Internal error: StaticSchema::status(std::string) not implemented. The tests should not have called this overload."}; |
| 275 | } |
| 276 | |
Václav Kubernát | d8408e0 | 2020-12-02 05:13:27 +0100 | [diff] [blame] | 277 | bool StaticSchema::hasInputNodes(const std::string& path) const |
| 278 | { |
| 279 | if (nodeType(path) != yang::NodeTypes::Action && nodeType(path) != yang::NodeTypes::Rpc) { |
| 280 | throw std::logic_error("StaticSchema::hasInputNodes called with non-RPC/action path"); |
| 281 | } |
| 282 | |
| 283 | return m_nodes.at(joinPaths(path, "input")).size() != 0; |
| 284 | } |
| 285 | |
Václav Kubernát | e811bfa | 2020-05-29 02:25:20 +0200 | [diff] [blame] | 286 | yang::NodeTypes StaticSchema::nodeType(const std::string& path) const |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 287 | { |
Václav Kubernát | e811bfa | 2020-05-29 02:25:20 +0200 | [diff] [blame] | 288 | auto locationString = stripLastNodeFromPath(path); |
| 289 | |
| 290 | auto node = fullNodeName(locationString, lastNodeOfSchemaPath(path)); |
| 291 | return std::visit(impl_nodeType{}, children(locationString).at(node).m_nodeType); |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 292 | } |
Václav Kubernát | ad87ece | 2020-02-19 15:20:56 +0100 | [diff] [blame] | 293 | |
Václav Kubernát | bd5e3c2 | 2020-02-19 15:22:00 +0100 | [diff] [blame] | 294 | std::string StaticSchema::leafrefPath([[maybe_unused]] const std::string& leafrefPath) const |
| 295 | { |
| 296 | throw std::runtime_error{"Internal error: StaticSchema::leafrefPath(std::string) not implemented. The tests should not have called this overload."}; |
| 297 | } |
Václav Kubernát | c386679 | 2020-02-20 14:12:56 +0100 | [diff] [blame] | 298 | |
| 299 | bool StaticSchema::leafIsKey([[maybe_unused]] const std::string& leafPath) const |
| 300 | { |
| 301 | throw std::runtime_error{"Internal error: StaticSchema::leafIsKey(std::string) not implemented. The tests should not have called this overload."}; |
| 302 | } |
Václav Kubernát | 6fcd028 | 2020-02-21 16:33:08 +0100 | [diff] [blame] | 303 | |
| 304 | std::optional<std::string> StaticSchema::leafTypeName([[maybe_unused]] const std::string& path) const |
| 305 | { |
| 306 | throw std::runtime_error{"Internal error: StaticSchema::leafTypeName(std::string) not implemented. The tests should not have called this overload."}; |
| 307 | } |
Václav Kubernát | 0599e9f | 2020-04-21 09:51:33 +0200 | [diff] [blame] | 308 | |
Václav Kubernát | b1a75c6 | 2020-04-21 15:20:16 +0200 | [diff] [blame] | 309 | std::optional<std::string> StaticSchema::defaultValue([[maybe_unused]] const std::string& leafPath) const |
| 310 | { |
| 311 | throw std::runtime_error{"Internal error: StaticSchema::defaultValue(std::string) not implemented. The tests should not have called this overload."}; |
| 312 | } |