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 | { |
| 115 | if (!isLeaf(location, node) || leafType(location, node) != yang::LeafDataTypes::Enum) |
| 116 | return false; |
| 117 | |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 118 | libyang::Schema_Node_Leaf leaf(getSchemaNode(location, node)); |
Václav Kubernát | 6a713d6 | 2018-10-03 18:47:34 +0200 | [diff] [blame] | 119 | auto type = leaf.type(); |
| 120 | auto enm = type->info()->enums()->enm(); |
| 121 | // The enum can be a derived type and enm() only returns values, |
| 122 | // if that specific typedef changed the possible values. So we go |
| 123 | // up the hierarchy until we find a typedef that defined these values. |
| 124 | while (enm.empty()) { |
| 125 | type = type->der()->type(); |
| 126 | enm = type->info()->enums()->enm(); |
| 127 | } |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 128 | |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 129 | return std::any_of(enm.begin(), enm.end(), [=](const auto& x) { return x->name() == value; }); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 130 | } |
| 131 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 132 | 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] | 133 | { |
| 134 | if (!isList(location, node)) |
| 135 | return false; |
| 136 | const auto keys = listKeys(location, node); |
| 137 | return keys.find(key) != keys.end(); |
| 138 | } |
| 139 | |
| 140 | bool YangSchema::nodeExists(const std::string& location, const std::string& node) const |
| 141 | { |
| 142 | const auto absPath = location + "/" + node; |
| 143 | const auto set = m_context->find_path(absPath.c_str()); |
| 144 | return set->number() == 1; |
| 145 | } |
| 146 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 147 | 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] | 148 | { |
| 149 | std::string absPath = location.m_nodes.empty() ? "" : "/"; |
| 150 | absPath += pathToAbsoluteSchemaString(location) + "/" + fullNodeName(location, node); |
| 151 | return m_context->find_path(absPath.c_str()); |
| 152 | } |
| 153 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 154 | 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] | 155 | { |
| 156 | const auto set = getNodeSet(location, node); |
| 157 | if (!set) |
| 158 | return nullptr; |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 159 | const auto& schemaSet = set->schema(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 160 | if (set->number() != 1) |
| 161 | return nullptr; |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 162 | return *schemaSet.begin(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 163 | } |
| 164 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 165 | 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] | 166 | { |
| 167 | std::set<std::string> keys; |
| 168 | if (!isList(location, node)) |
| 169 | return keys; |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 170 | libyang::Schema_Node_List list(getSchemaNode(location, node)); |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 171 | const auto& keysVec = list.keys(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 172 | |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 173 | 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] | 174 | [] (const auto& it) {return it->name();}); |
| 175 | return keys; |
| 176 | } |
| 177 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 178 | 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] | 179 | { |
| 180 | using namespace std::string_literals; |
| 181 | if (!isLeaf(location, node)) |
| 182 | throw InvalidSchemaQueryException(fullNodeName(location, node) + " is not a leaf"); |
| 183 | |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 184 | libyang::Schema_Node_Leaf leaf(getSchemaNode(location, node)); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 185 | switch (leaf.type()->base()) { |
| 186 | case LY_TYPE_STRING: |
| 187 | return yang::LeafDataTypes::String; |
| 188 | case LY_TYPE_DEC64: |
| 189 | return yang::LeafDataTypes::Decimal; |
| 190 | case LY_TYPE_BOOL: |
| 191 | return yang::LeafDataTypes::Bool; |
| 192 | case LY_TYPE_INT32: |
| 193 | return yang::LeafDataTypes::Int; |
| 194 | case LY_TYPE_UINT32: |
| 195 | return yang::LeafDataTypes::Uint; |
| 196 | case LY_TYPE_ENUM: |
| 197 | return yang::LeafDataTypes::Enum; |
| 198 | default: |
| 199 | throw UnsupportedYangTypeException("the type of "s + fullNodeName(location, node) + " is not supported"); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | std::set<std::string> YangSchema::modules() const |
| 204 | { |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 205 | const auto& modules = m_context->get_module_iter(); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 206 | |
| 207 | std::set<std::string> res; |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 208 | std::transform(modules.begin(), modules.end(), |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 209 | std::inserter(res, res.end()), |
| 210 | [] (const auto module) { return module->name(); }); |
| 211 | return res; |
| 212 | } |
| 213 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 214 | 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] | 215 | { |
| 216 | using namespace std::string_view_literals; |
| 217 | std::set<std::string> res; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 218 | std::vector<libyang::S_Schema_Node> nodes; |
| 219 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 220 | if (path.m_nodes.empty()) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 221 | nodes = m_context->data_instantiables(0); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 222 | } else { |
| 223 | const auto absolutePath = "/" + pathToAbsoluteSchemaString(path); |
| 224 | const auto set = m_context->find_path(absolutePath.c_str()); |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 225 | const auto schemaSet = set->schema(); |
Jan Kundrát | 4030b77 | 2018-08-23 15:54:56 +0200 | [diff] [blame] | 226 | for (auto it = (*schemaSet.begin())->child(); it; it = it->next()) { |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 227 | nodes.push_back(it); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 228 | } |
| 229 | } |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 230 | |
| 231 | for (const auto node : nodes) { |
| 232 | if (node->module()->name() == "ietf-yang-library"sv) |
Václav Kubernát | 89728d8 | 2018-09-13 16:28:28 +0200 | [diff] [blame] | 233 | continue; |
Václav Kubernát | e7d4aea | 2018-09-11 18:15:48 +0200 | [diff] [blame] | 234 | if (recursion == Recursion::Recursive) { |
| 235 | for (auto it : node->tree_dfs()) { |
| 236 | res.insert(it->path(LYS_PATH_FIRST_PREFIX)); |
| 237 | } |
| 238 | } else { |
| 239 | res.insert(std::string(node->module()->name()) + ":" + node->name()); |
| 240 | } |
| 241 | } |
| 242 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 243 | return res; |
| 244 | } |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 245 | |
| 246 | void YangSchema::loadModule(const std::string& moduleName) |
| 247 | { |
| 248 | m_context->load_module(moduleName.c_str()); |
| 249 | } |
| 250 | |
| 251 | void YangSchema::registerModuleCallback(const std::function<std::string(const char*, const char*, const char*)>& clb) |
| 252 | { |
| 253 | auto lambda = [clb](const char* mod_name, const char* mod_revision, const char* submod_name, const char* submod_revision) { |
| 254 | (void)submod_revision; |
| 255 | auto moduleSource = clb(mod_name, mod_revision, submod_name); |
| 256 | if (moduleSource.empty()) { |
| 257 | return libyang::Context::mod_missing_cb_return{LYS_IN_YANG, nullptr}; |
| 258 | } |
| 259 | return libyang::Context::mod_missing_cb_return{LYS_IN_YANG, strdup(moduleSource.c_str())}; |
| 260 | }; |
| 261 | |
| 262 | auto deleter = [](void* data) { |
| 263 | free(data); |
| 264 | }; |
| 265 | m_context->add_missing_module_callback(lambda, deleter); |
| 266 | } |