Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +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 | #include <libyang/Libyang.hpp> |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 10 | #include <libyang/Tree_Data.hpp> |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 11 | #include <libyang/Tree_Schema.hpp> |
| 12 | #include <string_view> |
Václav Kubernát | 26b5608 | 2020-02-03 18:28:56 +0100 | [diff] [blame] | 13 | #include "UniqueResource.hpp" |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 14 | #include "utils.hpp" |
| 15 | #include "yang_schema.hpp" |
| 16 | |
| 17 | class YangLoadError : public std::runtime_error { |
| 18 | public: |
| 19 | using std::runtime_error::runtime_error; |
| 20 | ~YangLoadError() override = default; |
| 21 | }; |
| 22 | |
| 23 | class UnsupportedYangTypeException : public std::runtime_error { |
| 24 | public: |
| 25 | using std::runtime_error::runtime_error; |
| 26 | ~UnsupportedYangTypeException() override = default; |
| 27 | }; |
| 28 | |
| 29 | class InvalidSchemaQueryException : public std::runtime_error { |
| 30 | public: |
| 31 | using std::runtime_error::runtime_error; |
| 32 | ~InvalidSchemaQueryException() override = default; |
| 33 | }; |
| 34 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 35 | template <typename T> |
| 36 | std::string pathToYangAbsSchemPath(const T& path) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 37 | { |
| 38 | std::string res = "/"; |
| 39 | std::string currentModule; |
| 40 | |
| 41 | for (const auto& it : path.m_nodes) { |
| 42 | const auto name = nodeToSchemaString(it); |
| 43 | |
| 44 | if (it.m_suffix.type() == typeid(module_)) { |
| 45 | currentModule = name; |
| 46 | continue; |
| 47 | } else { |
| 48 | res += currentModule + ":"; |
| 49 | res += name + "/"; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | return res; |
| 54 | } |
| 55 | |
| 56 | YangSchema::YangSchema() |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 57 | : m_context(std::make_shared<libyang::Context>(nullptr, LY_CTX_DISABLE_SEARCHDIRS | LY_CTX_DISABLE_SEARCHDIR_CWD)) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 58 | { |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 59 | } |
| 60 | |
Václav Kubernát | 1d50a5b | 2020-02-03 16:44:22 +0100 | [diff] [blame] | 61 | YangSchema::YangSchema(std::shared_ptr<libyang::Context> lyCtx) |
| 62 | : m_context(lyCtx) |
| 63 | { |
| 64 | |
| 65 | } |
| 66 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 67 | YangSchema::~YangSchema() = default; |
| 68 | |
| 69 | void YangSchema::addSchemaString(const char* schema) |
| 70 | { |
| 71 | if (!m_context->parse_module_mem(schema, LYS_IN_YANG)) { |
| 72 | throw YangLoadError("Couldn't load schema"); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | void YangSchema::addSchemaDirectory(const char* directoryName) |
| 77 | { |
| 78 | if (m_context->set_searchdir(directoryName)) { |
| 79 | throw YangLoadError("Couldn't add schema search directory"); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void YangSchema::addSchemaFile(const char* filename) |
| 84 | { |
| 85 | if (!m_context->parse_module_path(filename, LYS_IN_YANG)) { |
| 86 | throw YangLoadError("Couldn't load schema"); |
| 87 | } |
| 88 | } |
| 89 | |
Václav Kubernát | 75877de | 2019-11-20 17:43:02 +0100 | [diff] [blame] | 90 | bool YangSchema::isModule(const std::string& name) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 91 | { |
| 92 | const auto set = modules(); |
| 93 | return set.find(name) != set.end(); |
| 94 | } |
| 95 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 96 | bool YangSchema::listHasKey(const schemaPath_& location, const ModuleNodePair& node, const std::string& key) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 97 | { |
| 98 | if (!isList(location, node)) |
| 99 | return false; |
| 100 | const auto keys = listKeys(location, node); |
| 101 | return keys.find(key) != keys.end(); |
| 102 | } |
| 103 | |
Václav Kubernát | c386679 | 2020-02-20 14:12:56 +0100 | [diff] [blame] | 104 | bool YangSchema::leafIsKey(const std::string& leafPath) const |
| 105 | { |
| 106 | auto node = getSchemaNode(leafPath); |
| 107 | if (!node || node->nodetype() != LYS_LEAF) |
| 108 | return false; |
| 109 | |
| 110 | return libyang::Schema_Node_Leaf{node}.is_key().get(); |
| 111 | } |
| 112 | |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 113 | libyang::S_Schema_Node YangSchema::impl_getSchemaNode(const std::string& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 114 | { |
Václav Kubernát | f2b91e0 | 2019-04-11 15:36:48 +0200 | [diff] [blame] | 115 | // If no node is found find_path prints an error message, so we have to |
| 116 | // disable logging |
| 117 | // https://github.com/CESNET/libyang/issues/753 |
| 118 | { |
| 119 | int oldOptions; |
| 120 | auto logBlocker = make_unique_resource( |
| 121 | [&oldOptions]() { |
| 122 | oldOptions = libyang::set_log_options(0); |
| 123 | }, |
| 124 | [&oldOptions]() { |
| 125 | libyang::set_log_options(oldOptions); |
| 126 | }); |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 127 | return m_context->get_node(nullptr, node.c_str()); |
Václav Kubernát | f2b91e0 | 2019-04-11 15:36:48 +0200 | [diff] [blame] | 128 | } |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 129 | } |
| 130 | |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 131 | |
| 132 | libyang::S_Schema_Node YangSchema::getSchemaNode(const std::string& node) const |
| 133 | { |
| 134 | return impl_getSchemaNode(node); |
| 135 | } |
| 136 | |
| 137 | libyang::S_Schema_Node YangSchema::getSchemaNode(const schemaPath_& location, const ModuleNodePair& node) const |
| 138 | { |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 139 | std::string absPath = joinPaths(pathToSchemaString(location, Prefixes::Always), fullNodeName(location, node)); |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 140 | |
| 141 | return impl_getSchemaNode(absPath); |
| 142 | } |
| 143 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 144 | const std::set<std::string> YangSchema::listKeys(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 145 | { |
| 146 | std::set<std::string> keys; |
| 147 | if (!isList(location, node)) |
| 148 | return keys; |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 149 | libyang::Schema_Node_List list(getSchemaNode(location, node)); |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 150 | const auto& keysVec = list.keys(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 151 | |
Václav Kubernát | 90de950 | 2019-11-20 17:19:44 +0100 | [diff] [blame] | 152 | std::transform(keysVec.begin(), keysVec.end(), std::inserter(keys, keys.begin()), [](const auto& it) { return it->name(); }); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 153 | return keys; |
| 154 | } |
| 155 | |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 156 | namespace { |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 157 | std::set<enum_> enumValues(const libyang::S_Type& typeArg) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 158 | { |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 159 | auto type = typeArg; |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 160 | auto enm = type->info()->enums()->enm(); |
| 161 | // The enum can be a derived type and enm() only returns values, |
| 162 | // if that specific typedef changed the possible values. So we go |
| 163 | // up the hierarchy until we find a typedef that defined these values. |
| 164 | while (enm.empty()) { |
| 165 | type = type->der()->type(); |
| 166 | enm = type->info()->enums()->enm(); |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 167 | } |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 168 | |
| 169 | std::vector<libyang::S_Type_Enum> enabled; |
| 170 | std::copy_if(enm.begin(), enm.end(), std::back_inserter(enabled), [](const libyang::S_Type_Enum& it) { |
| 171 | auto iffeatures = it->iffeature(); |
| 172 | return std::all_of(iffeatures.begin(), iffeatures.end(), [](auto it) { return it->value(); }); |
| 173 | }); |
| 174 | |
| 175 | std::set<enum_> enumSet; |
| 176 | std::transform(enabled.begin(), enabled.end(), std::inserter(enumSet, enumSet.end()), [](auto it) { return enum_{it->name()}; }); |
| 177 | return enumSet; |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 178 | } |
| 179 | |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 180 | std::set<identityRef_> validIdentities(const libyang::S_Type& type) |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 181 | { |
| 182 | std::set<identityRef_> identSet; |
| 183 | |
| 184 | // auto topLevelModule = leaf->module(); |
| 185 | |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 186 | auto info = type->info(); |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 187 | for (auto base : info->ident()->ref()) { // Iterate over all bases |
| 188 | identSet.emplace(base->module()->name(), base->name()); |
| 189 | // Iterate over derived identities (this is recursive!) |
| 190 | for (auto derived : base->der()->schema()) { |
| 191 | identSet.emplace(derived->module()->name(), derived->name()); |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | return identSet; |
| 196 | } |
| 197 | |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 198 | std::string leafrefPath(const libyang::S_Type& type) |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 199 | { |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 200 | return type->info()->lref()->target()->path(LYS_PATH_FIRST_PREFIX); |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 204 | yang::TypeInfo YangSchema::impl_leafType(const libyang::S_Schema_Node& node) const |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 205 | { |
| 206 | using namespace std::string_literals; |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 207 | auto leaf = std::make_shared<libyang::Schema_Node_Leaf>(node); |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 208 | auto leafUnits = leaf->units(); |
| 209 | std::function<yang::TypeInfo(std::shared_ptr<libyang::Type>)> resolveType; |
| 210 | resolveType = [this, &resolveType, leaf, leafUnits] (std::shared_ptr<libyang::Type> type) -> yang::TypeInfo { |
| 211 | yang::LeafDataType resType; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 212 | switch (type->base()) { |
| 213 | case LY_TYPE_STRING: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 214 | resType.emplace<yang::String>(); |
| 215 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 216 | case LY_TYPE_DEC64: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 217 | resType.emplace<yang::Decimal>(); |
| 218 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 219 | case LY_TYPE_BOOL: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 220 | resType.emplace<yang::Bool>(); |
| 221 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 222 | case LY_TYPE_INT8: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 223 | resType.emplace<yang::Int8>(); |
| 224 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 225 | case LY_TYPE_INT16: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 226 | resType.emplace<yang::Int16>(); |
| 227 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 228 | case LY_TYPE_INT32: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 229 | resType.emplace<yang::Int32>(); |
| 230 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 231 | case LY_TYPE_INT64: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 232 | resType.emplace<yang::Int64>(); |
| 233 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 234 | case LY_TYPE_UINT8: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 235 | resType.emplace<yang::Uint8>(); |
| 236 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 237 | case LY_TYPE_UINT16: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 238 | resType.emplace<yang::Uint16>(); |
| 239 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 240 | case LY_TYPE_UINT32: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 241 | resType.emplace<yang::Uint32>(); |
| 242 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 243 | case LY_TYPE_UINT64: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 244 | resType.emplace<yang::Uint64>(); |
| 245 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 246 | case LY_TYPE_BINARY: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 247 | resType.emplace<yang::Binary>(); |
| 248 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 249 | case LY_TYPE_ENUM: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 250 | resType.emplace<yang::Enum>(enumValues(type)); |
| 251 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 252 | case LY_TYPE_IDENT: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 253 | resType.emplace<yang::IdentityRef>(validIdentities(type)); |
| 254 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 255 | case LY_TYPE_LEAFREF: |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 256 | resType.emplace<yang::LeafRef>(::leafrefPath(type), std::make_unique<yang::TypeInfo>(leafType(::leafrefPath(type)))); |
| 257 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 258 | case LY_TYPE_UNION: |
| 259 | { |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 260 | auto resUnion = yang::Union{}; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 261 | for (auto unionType : type->info()->uni()->types()) { |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 262 | resUnion.m_unionTypes.push_back(resolveType(unionType)); |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 263 | } |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 264 | resType.emplace<yang::Union>(std::move(resUnion)); |
| 265 | break; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 266 | } |
| 267 | default: |
| 268 | using namespace std::string_literals; |
| 269 | throw UnsupportedYangTypeException("the type of "s + leaf->name() + " is not supported: " + std::to_string(leaf->type()->base())); |
| 270 | } |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 271 | |
| 272 | std::optional<std::string> resUnits; |
| 273 | |
| 274 | if (leafUnits) { |
| 275 | resUnits = leafUnits; |
| 276 | } else { |
| 277 | for (auto parentTypedef = type->der(); parentTypedef; parentTypedef = parentTypedef->type()->der()) { |
| 278 | auto units = parentTypedef->units(); |
| 279 | if (units) { |
| 280 | resUnits = units; |
| 281 | break; |
| 282 | } |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | return yang::TypeInfo(resType, resUnits); |
| 287 | }; |
Václav Kubernát | 2984f44 | 2020-02-20 17:43:35 +0100 | [diff] [blame] | 288 | return resolveType(leaf->type()); |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 291 | yang::TypeInfo YangSchema::leafType(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 9bf3685 | 2020-02-18 17:47:56 +0100 | [diff] [blame] | 292 | { |
| 293 | return impl_leafType(getSchemaNode(location, node)); |
| 294 | } |
| 295 | |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 296 | yang::TypeInfo YangSchema::leafType(const std::string& path) const |
Václav Kubernát | 9bf3685 | 2020-02-18 17:47:56 +0100 | [diff] [blame] | 297 | { |
| 298 | return impl_leafType(getSchemaNode(path)); |
| 299 | } |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 300 | |
Václav Kubernát | 6fcd028 | 2020-02-21 16:33:08 +0100 | [diff] [blame] | 301 | std::optional<std::string> YangSchema::leafTypeName(const std::string& path) const |
| 302 | { |
| 303 | libyang::Schema_Node_Leaf leaf(getSchemaNode(path)); |
| 304 | return leaf.type()->der().get() ? std::optional{leaf.type()->der()->name()} : std::nullopt; |
| 305 | } |
| 306 | |
Václav Kubernát | bd5e3c2 | 2020-02-19 15:22:00 +0100 | [diff] [blame] | 307 | std::string YangSchema::leafrefPath(const std::string& leafrefPath) const |
| 308 | { |
| 309 | using namespace std::string_literals; |
| 310 | libyang::Schema_Node_Leaf leaf(getSchemaNode(leafrefPath)); |
| 311 | return leaf.type()->info()->lref()->target()->path(LYS_PATH_FIRST_PREFIX); |
| 312 | } |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 313 | |
| 314 | std::set<std::string> YangSchema::modules() const |
| 315 | { |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 316 | const auto& modules = m_context->get_module_iter(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 317 | |
| 318 | std::set<std::string> res; |
Václav Kubernát | 90de950 | 2019-11-20 17:19:44 +0100 | [diff] [blame] | 319 | std::transform(modules.begin(), modules.end(), std::inserter(res, res.end()), [](const auto module) { return module->name(); }); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 320 | return res; |
| 321 | } |
| 322 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 323 | std::set<std::string> YangSchema::childNodes(const schemaPath_& path, const Recursion recursion) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 324 | { |
| 325 | using namespace std::string_view_literals; |
| 326 | std::set<std::string> res; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 327 | std::vector<libyang::S_Schema_Node> nodes; |
| 328 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 329 | if (path.m_nodes.empty()) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 330 | nodes = m_context->data_instantiables(0); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 331 | } else { |
Václav Kubernát | efcac93 | 2020-01-10 15:26:32 +0100 | [diff] [blame] | 332 | const auto pathString = pathToSchemaString(path, Prefixes::Always); |
| 333 | const auto node = getSchemaNode(pathString); |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 334 | nodes = node->child_instantiables(0); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 335 | } |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 336 | |
Václav Kubernát | ef08574 | 2020-04-21 09:28:44 +0200 | [diff] [blame] | 337 | for (const auto& node : nodes) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 338 | if (node->module()->name() == "ietf-yang-library"sv) |
Václav Kubernát | 89728d8 | 2018-09-13 16:28:28 +0200 | [diff] [blame] | 339 | continue; |
Václav Kubernát | fa81c8c | 2020-02-13 17:22:46 +0100 | [diff] [blame] | 340 | // FIXME: This is a temporary fix to filter out RPC nodes in |
| 341 | // tab-completion. The method will have to be changed/reworked when RPC |
| 342 | // support gets added. |
| 343 | if (node->nodetype() == LYS_RPC) |
| 344 | continue; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 345 | if (recursion == Recursion::Recursive) { |
| 346 | for (auto it : node->tree_dfs()) { |
| 347 | res.insert(it->path(LYS_PATH_FIRST_PREFIX)); |
| 348 | } |
| 349 | } else { |
Václav Kubernát | 4f77a25 | 2019-02-19 16:51:30 +0100 | [diff] [blame] | 350 | std::string toInsert; |
| 351 | if (path.m_nodes.empty() || path.m_nodes.front().m_prefix.get().m_name != node->module()->name()) { |
| 352 | toInsert += node->module()->name(); |
| 353 | toInsert += ":"; |
| 354 | } |
| 355 | toInsert += node->name(); |
| 356 | res.insert(toInsert); |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 360 | return res; |
| 361 | } |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 362 | |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 363 | std::set<std::string> YangSchema::moduleNodes(const module_& module, const Recursion recursion) const |
| 364 | { |
| 365 | std::set<std::string> res; |
| 366 | const auto yangModule = m_context->get_module(module.m_name.c_str()); |
| 367 | |
| 368 | std::vector<libyang::S_Schema_Node> nodes; |
| 369 | |
Václav Kubernát | ef08574 | 2020-04-21 09:28:44 +0200 | [diff] [blame] | 370 | for (const auto& node : yangModule->data_instantiables(0)) { |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 371 | if (recursion == Recursion::Recursive) { |
Václav Kubernát | ef08574 | 2020-04-21 09:28:44 +0200 | [diff] [blame] | 372 | for (const auto& it : node->tree_dfs()) { |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 373 | res.insert(it->path(LYS_PATH_FIRST_PREFIX)); |
| 374 | } |
| 375 | } else { |
| 376 | res.insert(module.m_name + ":" + node->name()); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | return res; |
| 381 | } |
| 382 | |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 383 | void YangSchema::loadModule(const std::string& moduleName) |
| 384 | { |
| 385 | m_context->load_module(moduleName.c_str()); |
| 386 | } |
| 387 | |
Václav Kubernát | bf9c611 | 2019-11-04 16:03:35 +0100 | [diff] [blame] | 388 | void YangSchema::enableFeature(const std::string& moduleName, const std::string& featureName) |
| 389 | { |
| 390 | m_context->get_module(moduleName.c_str())->feature_enable(featureName.c_str()); |
| 391 | } |
| 392 | |
Václav Kubernát | b52dc25 | 2019-12-04 13:03:39 +0100 | [diff] [blame] | 393 | void YangSchema::registerModuleCallback(const std::function<std::string(const char*, const char*, const char*, const char*)>& clb) |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 394 | { |
| 395 | auto lambda = [clb](const char* mod_name, const char* mod_revision, const char* submod_name, const char* submod_revision) { |
| 396 | (void)submod_revision; |
Václav Kubernát | b52dc25 | 2019-12-04 13:03:39 +0100 | [diff] [blame] | 397 | auto moduleSource = clb(mod_name, mod_revision, submod_name, submod_revision); |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 398 | if (moduleSource.empty()) { |
| 399 | return libyang::Context::mod_missing_cb_return{LYS_IN_YANG, nullptr}; |
| 400 | } |
| 401 | return libyang::Context::mod_missing_cb_return{LYS_IN_YANG, strdup(moduleSource.c_str())}; |
| 402 | }; |
| 403 | |
| 404 | auto deleter = [](void* data) { |
| 405 | free(data); |
| 406 | }; |
| 407 | m_context->add_missing_module_callback(lambda, deleter); |
| 408 | } |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 409 | |
| 410 | std::shared_ptr<libyang::Data_Node> YangSchema::dataNodeFromPath(const std::string& path, const std::optional<const std::string> value) const |
| 411 | { |
| 412 | return std::make_shared<libyang::Data_Node>(m_context, |
| 413 | path.c_str(), |
| 414 | value ? value.value().c_str() : nullptr, |
| 415 | LYD_ANYDATA_CONSTSTRING, |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 416 | LYD_PATH_OPT_EDIT); |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | std::shared_ptr<libyang::Module> YangSchema::getYangModule(const std::string& name) |
| 420 | { |
| 421 | return m_context->get_module(name.c_str(), nullptr, 0); |
| 422 | } |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 423 | |
| 424 | namespace { |
| 425 | yang::NodeTypes impl_nodeType(const libyang::S_Schema_Node& node) |
| 426 | { |
| 427 | if (!node) { |
| 428 | throw InvalidNodeException(); |
| 429 | } |
| 430 | switch (node->nodetype()) { |
| 431 | case LYS_CONTAINER: |
| 432 | return libyang::Schema_Node_Container{node}.presence() ? yang::NodeTypes::PresenceContainer : yang::NodeTypes::Container; |
| 433 | case LYS_LEAF: |
| 434 | return yang::NodeTypes::Leaf; |
| 435 | case LYS_LIST: |
| 436 | return yang::NodeTypes::List; |
| 437 | default: |
Václav Kubernát | 2a14139 | 2020-02-18 17:12:32 +0100 | [diff] [blame] | 438 | throw InvalidNodeException(); // FIXME: Implement all types. |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 439 | } |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | yang::NodeTypes YangSchema::nodeType(const schemaPath_& location, const ModuleNodePair& node) const |
| 444 | { |
| 445 | return impl_nodeType(getSchemaNode(location, node)); |
| 446 | } |
| 447 | |
| 448 | yang::NodeTypes YangSchema::nodeType(const std::string& path) const |
| 449 | { |
| 450 | return impl_nodeType(getSchemaNode(path)); |
| 451 | } |
Václav Kubernát | 1e09bd6 | 2020-02-17 15:13:38 +0100 | [diff] [blame] | 452 | |
| 453 | std::optional<std::string> YangSchema::description(const std::string& path) const |
| 454 | { |
| 455 | auto node = getSchemaNode(path.c_str()); |
| 456 | return node->dsc() ? std::optional{node->dsc()} : std::nullopt; |
| 457 | } |
Václav Kubernát | 0599e9f | 2020-04-21 09:51:33 +0200 | [diff] [blame] | 458 | |
Václav Kubernát | a1c4c9e | 2020-04-22 00:37:52 +0200 | [diff] [blame] | 459 | yang::Status YangSchema::status(const std::string& location) const |
| 460 | { |
| 461 | auto node = getSchemaNode(location.c_str()); |
| 462 | if (node->flags() & LYS_STATUS_DEPRC) { |
| 463 | return yang::Status::Deprecated; |
| 464 | } else if (node->flags() & LYS_STATUS_OBSLT) { |
| 465 | return yang::Status::Obsolete; |
| 466 | } else { |
| 467 | return yang::Status::Current; |
| 468 | } |
| 469 | } |
| 470 | |
Václav Kubernát | 0599e9f | 2020-04-21 09:51:33 +0200 | [diff] [blame] | 471 | bool YangSchema::isConfig(const std::string& path) const |
| 472 | { |
| 473 | return getSchemaNode(path.c_str())->flags() & LYS_CONFIG_W; |
| 474 | } |
Václav Kubernát | b1a75c6 | 2020-04-21 15:20:16 +0200 | [diff] [blame] | 475 | |
| 476 | std::optional<std::string> YangSchema::defaultValue(const std::string& leafPath) const |
| 477 | { |
| 478 | libyang::Schema_Node_Leaf leaf(getSchemaNode(leafPath)); |
| 479 | |
| 480 | if (auto leafDefault = leaf.dflt()) { |
| 481 | return leafDefault; |
| 482 | } |
| 483 | |
| 484 | for (auto type = leaf.type()->der(); type != nullptr; type = type->type()->der()) { |
| 485 | if (auto defaultValue = type->dflt()) { |
| 486 | return defaultValue; |
| 487 | } |
| 488 | } |
| 489 | |
| 490 | return std::nullopt; |
| 491 | } |