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 | |
| 9 | #pragma once |
| 10 | |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 11 | #include <set> |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 12 | #include <unordered_map> |
| 13 | #include "ast_path.hpp" |
| 14 | #include "schema.hpp" |
| 15 | |
Václav Kubernát | ff45f31 | 2019-10-09 12:45:27 +0200 | [diff] [blame] | 16 | namespace yang { |
| 17 | enum class ContainerTraits { |
| 18 | Presence, |
| 19 | None, |
| 20 | }; |
| 21 | |
| 22 | struct container { |
| 23 | yang::ContainerTraits m_presence; |
| 24 | }; |
| 25 | struct list { |
| 26 | std::set<std::string> m_keys; |
| 27 | }; |
| 28 | |
| 29 | struct leaf { |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 30 | yang::TypeInfo m_type; |
Václav Kubernát | ff45f31 | 2019-10-09 12:45:27 +0200 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | struct module { |
| 34 | }; |
| 35 | } |
| 36 | |
| 37 | using NodeType = boost::variant<yang::container, yang::list, yang::leaf, yang::module>; |
| 38 | |
| 39 | |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 40 | /*! \class StaticSchema |
| 41 | * \brief Static schema, used mainly for testing |
| 42 | * */ |
| 43 | |
| 44 | class StaticSchema : public Schema { |
| 45 | public: |
| 46 | StaticSchema(); |
| 47 | |
Václav Kubernát | 34ee85a | 2020-02-18 17:12:12 +0100 | [diff] [blame] | 48 | yang::NodeTypes nodeType(const std::string& path) const override; |
| 49 | yang::NodeTypes nodeType(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | 75877de | 2019-11-20 17:43:02 +0100 | [diff] [blame] | 50 | bool isModule(const std::string& name) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 51 | bool listHasKey(const schemaPath_& location, const ModuleNodePair& node, const std::string& key) const override; |
Václav Kubernát | c386679 | 2020-02-20 14:12:56 +0100 | [diff] [blame] | 52 | bool leafIsKey(const std::string& leafPath) const override; |
Václav Kubernát | 0599e9f | 2020-04-21 09:51:33 +0200 | [diff] [blame] | 53 | bool isConfig(const std::string& leafPath) const override; |
Václav Kubernát | b1a75c6 | 2020-04-21 15:20:16 +0200 | [diff] [blame] | 54 | std::optional<std::string> defaultValue(const std::string& leafPath) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 55 | const std::set<std::string> listKeys(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | 13b23d7 | 2020-04-16 21:49:51 +0200 | [diff] [blame] | 56 | yang::TypeInfo leafType(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 57 | yang::TypeInfo leafType(const std::string& path) const override; |
Václav Kubernát | 6fcd028 | 2020-02-21 16:33:08 +0100 | [diff] [blame] | 58 | std::optional<std::string> leafTypeName(const std::string& path) const override; |
Václav Kubernát | bd5e3c2 | 2020-02-19 15:22:00 +0100 | [diff] [blame] | 59 | std::string leafrefPath(const std::string& leafrefPath) const override; |
Václav Kubernát | 95b0887 | 2020-04-28 01:04:17 +0200 | [diff] [blame] | 60 | std::set<ModuleNodePair> availableNodes(const boost::variant<dataPath_, schemaPath_, module_>& path, const Recursion recursion) const override; |
Václav Kubernát | 1e09bd6 | 2020-02-17 15:13:38 +0100 | [diff] [blame] | 61 | std::optional<std::string> description(const std::string& path) const override; |
Václav Kubernát | a1c4c9e | 2020-04-22 00:37:52 +0200 | [diff] [blame] | 62 | yang::Status status(const std::string& location) const override; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 63 | |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 64 | /** A helper for making tests a little bit easier. It returns all |
| 65 | * identities which are based on the argument passed and which can then be |
| 66 | * used in addLeaf for the `type` argument */ |
| 67 | std::set<identityRef_> validIdentities(std::string_view module, std::string_view value); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 68 | void addContainer(const std::string& location, const std::string& name, yang::ContainerTraits isPresence = yang::ContainerTraits::None); |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 69 | void addLeaf(const std::string& location, const std::string& name, const yang::LeafDataType& type); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 70 | void addList(const std::string& location, const std::string& name, const std::set<std::string>& keys); |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 71 | void addModule(const std::string& name); |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 72 | void addIdentity(const std::optional<ModuleValuePair>& base, const ModuleValuePair& name); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 73 | |
| 74 | private: |
| 75 | const std::unordered_map<std::string, NodeType>& children(const std::string& name) const; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 76 | void getIdentSet(const ModuleValuePair& ident, std::set<ModuleValuePair>& res) const; |
Václav Kubernát | 9d799ac | 2019-04-11 12:59:07 +0200 | [diff] [blame] | 77 | bool nodeExists(const std::string& location, const std::string& node) const; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 78 | |
| 79 | std::unordered_map<std::string, std::unordered_map<std::string, NodeType>> m_nodes; |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 80 | std::set<std::string> m_modules; |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 81 | |
| 82 | // FIXME: Change the template arguments to identityRef_ |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 83 | std::map<ModuleValuePair, std::set<ModuleValuePair>> m_identities; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 84 | }; |