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