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> |
| 10 | #include <libyang/Tree_Schema.hpp> |
| 11 | #include <string_view> |
| 12 | #include "utils.hpp" |
| 13 | #include "yang_schema.hpp" |
| 14 | |
| 15 | class YangLoadError : public std::runtime_error { |
| 16 | public: |
| 17 | using std::runtime_error::runtime_error; |
| 18 | ~YangLoadError() override = default; |
| 19 | }; |
| 20 | |
| 21 | class UnsupportedYangTypeException : public std::runtime_error { |
| 22 | public: |
| 23 | using std::runtime_error::runtime_error; |
| 24 | ~UnsupportedYangTypeException() override = default; |
| 25 | }; |
| 26 | |
| 27 | class InvalidSchemaQueryException : public std::runtime_error { |
| 28 | public: |
| 29 | using std::runtime_error::runtime_error; |
| 30 | ~InvalidSchemaQueryException() override = default; |
| 31 | }; |
| 32 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 33 | template <typename T> |
| 34 | std::string pathToYangAbsSchemPath(const T& path) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 35 | { |
| 36 | std::string res = "/"; |
| 37 | std::string currentModule; |
| 38 | |
| 39 | for (const auto& it : path.m_nodes) { |
| 40 | const auto name = nodeToSchemaString(it); |
| 41 | |
| 42 | if (it.m_suffix.type() == typeid(module_)) { |
| 43 | currentModule = name; |
| 44 | continue; |
| 45 | } else { |
| 46 | res += currentModule + ":"; |
| 47 | res += name + "/"; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | return res; |
| 52 | } |
| 53 | |
| 54 | YangSchema::YangSchema() |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 55 | : 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] | 56 | { |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | YangSchema::~YangSchema() = default; |
| 60 | |
| 61 | void YangSchema::addSchemaString(const char* schema) |
| 62 | { |
| 63 | if (!m_context->parse_module_mem(schema, LYS_IN_YANG)) { |
| 64 | throw YangLoadError("Couldn't load schema"); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | void YangSchema::addSchemaDirectory(const char* directoryName) |
| 69 | { |
| 70 | if (m_context->set_searchdir(directoryName)) { |
| 71 | throw YangLoadError("Couldn't add schema search directory"); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void YangSchema::addSchemaFile(const char* filename) |
| 76 | { |
| 77 | if (!m_context->parse_module_path(filename, LYS_IN_YANG)) { |
| 78 | throw YangLoadError("Couldn't load schema"); |
| 79 | } |
| 80 | } |
| 81 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 82 | bool YangSchema::isModule(const schemaPath_&, const std::string& name) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 83 | { |
| 84 | const auto set = modules(); |
| 85 | return set.find(name) != set.end(); |
| 86 | } |
| 87 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 88 | bool YangSchema::isContainer(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 89 | { |
| 90 | const auto schemaNode = getSchemaNode(location, node); |
| 91 | return schemaNode && schemaNode->nodetype() == LYS_CONTAINER; |
| 92 | } |
| 93 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 94 | bool YangSchema::isLeaf(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 95 | { |
| 96 | const auto schemaNode = getSchemaNode(location, node); |
| 97 | return schemaNode && schemaNode->nodetype() == LYS_LEAF; |
| 98 | } |
| 99 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 100 | bool YangSchema::isList(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 101 | { |
| 102 | const auto schemaNode = getSchemaNode(location, node); |
| 103 | return schemaNode && schemaNode->nodetype() == LYS_LIST; |
| 104 | } |
| 105 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 106 | bool YangSchema::isPresenceContainer(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 107 | { |
| 108 | if (!isContainer(location, node)) |
| 109 | return false; |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 110 | return libyang::Schema_Node_Container(getSchemaNode(location, node)).presence(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 111 | } |
| 112 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 113 | bool YangSchema::leafEnumHasValue(const schemaPath_& location, const ModuleNodePair& node, const std::string& value) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 114 | { |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 115 | auto enums = enumValues(location, node); |
| 116 | |
| 117 | return std::any_of(enums.begin(), enums.end(), [=](const auto& x) { return x == value; }); |
| 118 | } |
| 119 | |
| 120 | const std::set<std::string> YangSchema::enumValues(const schemaPath_& location, const ModuleNodePair& node) const |
| 121 | { |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 122 | if (!isLeaf(location, node) || leafType(location, node) != yang::LeafDataTypes::Enum) |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 123 | return {}; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 124 | |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 125 | libyang::Schema_Node_Leaf leaf(getSchemaNode(location, node)); |
Václav Kubernát | 6a713d6 | 2018-10-03 18:47:34 +0200 | [diff] [blame] | 126 | auto type = leaf.type(); |
| 127 | auto enm = type->info()->enums()->enm(); |
| 128 | // The enum can be a derived type and enm() only returns values, |
| 129 | // if that specific typedef changed the possible values. So we go |
| 130 | // up the hierarchy until we find a typedef that defined these values. |
| 131 | while (enm.empty()) { |
| 132 | type = type->der()->type(); |
| 133 | enm = type->info()->enums()->enm(); |
| 134 | } |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 135 | |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 136 | std::set<std::string> enumSet; |
| 137 | std::transform(enm.begin(), enm.end(), std::inserter(enumSet, enumSet.end()), [](auto it) { return it->name(); }); |
| 138 | return enumSet; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 139 | } |
| 140 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 141 | 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] | 142 | { |
| 143 | if (!isList(location, node)) |
| 144 | return false; |
| 145 | const auto keys = listKeys(location, node); |
| 146 | return keys.find(key) != keys.end(); |
| 147 | } |
| 148 | |
| 149 | bool YangSchema::nodeExists(const std::string& location, const std::string& node) const |
| 150 | { |
| 151 | const auto absPath = location + "/" + node; |
| 152 | const auto set = m_context->find_path(absPath.c_str()); |
| 153 | return set->number() == 1; |
| 154 | } |
| 155 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 156 | libyang::S_Set YangSchema::getNodeSet(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 157 | { |
| 158 | std::string absPath = location.m_nodes.empty() ? "" : "/"; |
| 159 | absPath += pathToAbsoluteSchemaString(location) + "/" + fullNodeName(location, node); |
| 160 | return m_context->find_path(absPath.c_str()); |
| 161 | } |
| 162 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 163 | libyang::S_Schema_Node YangSchema::getSchemaNode(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 164 | { |
| 165 | const auto set = getNodeSet(location, node); |
| 166 | if (!set) |
| 167 | return nullptr; |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 168 | const auto& schemaSet = set->schema(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 169 | if (set->number() != 1) |
| 170 | return nullptr; |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 171 | return *schemaSet.begin(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 174 | 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] | 175 | { |
| 176 | std::set<std::string> keys; |
| 177 | if (!isList(location, node)) |
| 178 | return keys; |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 179 | libyang::Schema_Node_List list(getSchemaNode(location, node)); |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 180 | const auto& keysVec = list.keys(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 181 | |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 182 | std::transform(keysVec.begin(), keysVec.end(), std::inserter(keys, keys.begin()), |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 183 | [] (const auto& it) {return it->name();}); |
| 184 | return keys; |
| 185 | } |
| 186 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 187 | yang::LeafDataTypes YangSchema::leafType(const schemaPath_& location, const ModuleNodePair& node) const |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 188 | { |
| 189 | using namespace std::string_literals; |
| 190 | if (!isLeaf(location, node)) |
| 191 | throw InvalidSchemaQueryException(fullNodeName(location, node) + " is not a leaf"); |
| 192 | |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 193 | libyang::Schema_Node_Leaf leaf(getSchemaNode(location, node)); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 194 | switch (leaf.type()->base()) { |
| 195 | case LY_TYPE_STRING: |
| 196 | return yang::LeafDataTypes::String; |
| 197 | case LY_TYPE_DEC64: |
| 198 | return yang::LeafDataTypes::Decimal; |
| 199 | case LY_TYPE_BOOL: |
| 200 | return yang::LeafDataTypes::Bool; |
| 201 | case LY_TYPE_INT32: |
| 202 | return yang::LeafDataTypes::Int; |
| 203 | case LY_TYPE_UINT32: |
| 204 | return yang::LeafDataTypes::Uint; |
| 205 | case LY_TYPE_ENUM: |
| 206 | return yang::LeafDataTypes::Enum; |
Václav Kubernát | ab53899 | 2019-03-06 15:30:50 +0100 | [diff] [blame] | 207 | case LY_TYPE_BINARY: |
| 208 | return yang::LeafDataTypes::Binary; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 209 | default: |
| 210 | throw UnsupportedYangTypeException("the type of "s + fullNodeName(location, node) + " is not supported"); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | std::set<std::string> YangSchema::modules() const |
| 215 | { |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 216 | const auto& modules = m_context->get_module_iter(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 217 | |
| 218 | std::set<std::string> res; |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 219 | std::transform(modules.begin(), modules.end(), |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 220 | std::inserter(res, res.end()), |
| 221 | [] (const auto module) { return module->name(); }); |
| 222 | return res; |
| 223 | } |
| 224 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 225 | 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] | 226 | { |
| 227 | using namespace std::string_view_literals; |
| 228 | std::set<std::string> res; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 229 | std::vector<libyang::S_Schema_Node> nodes; |
| 230 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 231 | if (path.m_nodes.empty()) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 232 | nodes = m_context->data_instantiables(0); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 233 | } else { |
| 234 | const auto absolutePath = "/" + pathToAbsoluteSchemaString(path); |
| 235 | const auto set = m_context->find_path(absolutePath.c_str()); |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 236 | const auto schemaSet = set->schema(); |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 237 | for (auto it = (*schemaSet.begin())->child(); it; it = it->next()) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 238 | nodes.push_back(it); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 239 | } |
| 240 | } |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 241 | |
| 242 | for (const auto node : nodes) { |
| 243 | if (node->module()->name() == "ietf-yang-library"sv) |
Václav Kubernát | 89728d8 | 2018-09-13 16:28:28 +0200 | [diff] [blame] | 244 | continue; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 245 | if (recursion == Recursion::Recursive) { |
| 246 | for (auto it : node->tree_dfs()) { |
| 247 | res.insert(it->path(LYS_PATH_FIRST_PREFIX)); |
| 248 | } |
| 249 | } else { |
Václav Kubernát | 4f77a25 | 2019-02-19 16:51:30 +0100 | [diff] [blame] | 250 | std::string toInsert; |
| 251 | if (path.m_nodes.empty() || path.m_nodes.front().m_prefix.get().m_name != node->module()->name()) { |
| 252 | toInsert += node->module()->name(); |
| 253 | toInsert += ":"; |
| 254 | } |
| 255 | toInsert += node->name(); |
| 256 | res.insert(toInsert); |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 260 | return res; |
| 261 | } |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 262 | |
| 263 | void YangSchema::loadModule(const std::string& moduleName) |
| 264 | { |
| 265 | m_context->load_module(moduleName.c_str()); |
| 266 | } |
| 267 | |
| 268 | void YangSchema::registerModuleCallback(const std::function<std::string(const char*, const char*, const char*)>& clb) |
| 269 | { |
| 270 | auto lambda = [clb](const char* mod_name, const char* mod_revision, const char* submod_name, const char* submod_revision) { |
| 271 | (void)submod_revision; |
| 272 | auto moduleSource = clb(mod_name, mod_revision, submod_name); |
| 273 | if (moduleSource.empty()) { |
| 274 | return libyang::Context::mod_missing_cb_return{LYS_IN_YANG, nullptr}; |
| 275 | } |
| 276 | return libyang::Context::mod_missing_cb_return{LYS_IN_YANG, strdup(moduleSource.c_str())}; |
| 277 | }; |
| 278 | |
| 279 | auto deleter = [](void* data) { |
| 280 | free(data); |
| 281 | }; |
| 282 | m_context->add_missing_module_callback(lambda, deleter); |
| 283 | } |