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 | #pragma once |
| 10 | |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 11 | #include <functional> |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 12 | #include <optional> |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 13 | #include <set> |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 14 | #include "ast_path.hpp" |
| 15 | #include "schema.hpp" |
| 16 | |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 17 | namespace libyang { |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 18 | class Context; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 19 | class Schema_Node; |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 20 | class Data_Node; |
| 21 | class Module; |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 22 | } |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 23 | |
| 24 | /*! \class YangSchema |
| 25 | * \brief A schema class, which uses libyang for queries. |
| 26 | * */ |
| 27 | class YangSchema : public Schema { |
| 28 | public: |
| 29 | YangSchema(); |
Václav Kubernát | 1d50a5b | 2020-02-03 16:44:22 +0100 | [diff] [blame] | 30 | YangSchema(std::shared_ptr<libyang::Context> lyCtx); |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 31 | ~YangSchema() override; |
| 32 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 33 | bool isContainer(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 34 | bool isLeaf(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | 75877de | 2019-11-20 17:43:02 +0100 | [diff] [blame] | 35 | bool isModule(const std::string& name) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 36 | bool isList(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 37 | bool isPresenceContainer(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 38 | bool leafEnumHasValue(const schemaPath_& location, const ModuleNodePair& node, const std::string& value) const override; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 39 | bool leafIdentityIsValid(const schemaPath_& location, const ModuleNodePair& node, const ModuleValuePair& value) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 40 | bool listHasKey(const schemaPath_& location, const ModuleNodePair& node, const std::string& key) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 41 | const std::set<std::string> listKeys(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 42 | yang::LeafDataTypes leafType(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | 6a8d1d9 | 2019-04-24 20:30:36 +0200 | [diff] [blame] | 43 | yang::LeafDataTypes leafrefBase(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 44 | const std::set<std::string> validIdentities(const schemaPath_& location, const ModuleNodePair& node, const Prefixes prefixes) const override; |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 45 | const std::set<std::string> enumValues(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 46 | std::set<std::string> childNodes(const schemaPath_& path, const Recursion recursion) const override; |
Václav Kubernát | 9456b5c | 2019-10-02 21:14:52 +0200 | [diff] [blame] | 47 | std::set<std::string> moduleNodes(const module_& module, const Recursion recursion) const override; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 48 | |
Václav Kubernát | b52dc25 | 2019-12-04 13:03:39 +0100 | [diff] [blame] | 49 | void 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] | 50 | |
| 51 | /** @short Loads a module called moduleName. */ |
| 52 | void loadModule(const std::string& moduleName); |
| 53 | |
Václav Kubernát | bf9c611 | 2019-11-04 16:03:35 +0100 | [diff] [blame] | 54 | /** @short Enables a feature called featureName on a module called moduleName. */ |
| 55 | void enableFeature(const std::string& moduleName, const std::string& featureName); |
| 56 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 57 | /** @short Adds a new module passed as a YANG string. */ |
| 58 | void addSchemaString(const char* schema); |
| 59 | |
| 60 | /** @short Adds a new module from a file. */ |
| 61 | void addSchemaFile(const char* filename); |
| 62 | |
| 63 | /** @short Adds a new directory for schema lookup. */ |
| 64 | void addSchemaDirectory(const char* directoryName); |
| 65 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 66 | /** @short Creates a new data node from a path (to be used with NETCONF edit-config) */ |
| 67 | std::shared_ptr<libyang::Data_Node> dataNodeFromPath(const std::string& path, const std::optional<const std::string> value = std::nullopt) const; |
| 68 | std::shared_ptr<libyang::Module> getYangModule(const std::string& name); |
| 69 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 70 | private: |
| 71 | std::set<std::string> modules() const; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 72 | |
| 73 | /** @short Returns a set of nodes, that match the location and name criteria. */ |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 74 | |
| 75 | /** @short Returns a single Schema_Node if the criteria matches only one, otherwise nullptr. */ |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 76 | std::shared_ptr<libyang::Schema_Node> getSchemaNode(const std::string& node) const; |
| 77 | |
| 78 | /** @short Returns a single Schema_Node if the criteria matches only one, otherwise nullptr. */ |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 79 | std::shared_ptr<libyang::Schema_Node> getSchemaNode(const schemaPath_& location, const ModuleNodePair& node) const; |
Jan Kundrát | 4ed0e9f | 2018-08-23 16:56:58 +0200 | [diff] [blame] | 80 | std::shared_ptr<libyang::Context> m_context; |
Václav Kubernát | 47a3f67 | 2019-11-08 15:42:43 +0100 | [diff] [blame] | 81 | |
| 82 | std::shared_ptr<libyang::Schema_Node> impl_getSchemaNode(const std::string& node) const; |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 83 | }; |