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 { |
| 30 | yang::LeafDataTypes m_type; |
| 31 | std::set<std::string> m_enumValues; |
| 32 | ModuleValuePair m_identBase; |
| 33 | }; |
| 34 | |
| 35 | struct module { |
| 36 | }; |
| 37 | } |
| 38 | |
| 39 | using NodeType = boost::variant<yang::container, yang::list, yang::leaf, yang::module>; |
| 40 | |
| 41 | |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 42 | |
| 43 | /*! \class StaticSchema |
| 44 | * \brief Static schema, used mainly for testing |
| 45 | * */ |
| 46 | |
| 47 | class StaticSchema : public Schema { |
| 48 | public: |
| 49 | StaticSchema(); |
| 50 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 51 | bool isContainer(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 52 | bool isModule(const schemaPath_& location, const std::string& name) const override; |
| 53 | bool isLeaf(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 54 | bool isList(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 55 | bool isPresenceContainer(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 56 | 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] | 57 | 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] | 58 | 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] | 59 | const std::set<std::string> listKeys(const schemaPath_& location, const ModuleNodePair& node) const override; |
| 60 | yang::LeafDataTypes leafType(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 61 | const std::set<std::string> enumValues(const schemaPath_& location, const ModuleNodePair& node) const override; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 62 | const std::set<std::string> validIdentities(const schemaPath_& location, const ModuleNodePair& node, const Prefixes prefixes) const override; |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 63 | std::set<std::string> childNodes(const schemaPath_& path, const Recursion) const override; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 64 | |
| 65 | void addContainer(const std::string& location, const std::string& name, yang::ContainerTraits isPresence = yang::ContainerTraits::None); |
| 66 | void addLeaf(const std::string& location, const std::string& name, const yang::LeafDataTypes& type); |
| 67 | void addLeafEnum(const std::string& location, const std::string& name, std::set<std::string> enumValues); |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 68 | void addLeafIdentityRef(const std::string& location, const std::string& name, const ModuleValuePair& base); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 69 | 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] | 70 | void addModule(const std::string& name); |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 71 | void addIdentity(const std::optional<ModuleValuePair>& base, const ModuleValuePair& name); |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 72 | |
| 73 | private: |
| 74 | 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] | 75 | void getIdentSet(const ModuleValuePair& ident, std::set<ModuleValuePair>& res) const; |
Václav Kubernát | 9d799ac | 2019-04-11 12:59:07 +0200 | [diff] [blame] | 76 | 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] | 77 | |
| 78 | 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] | 79 | std::set<std::string> m_modules; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 80 | std::map<ModuleValuePair, std::set<ModuleValuePair>> m_identities; |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 81 | }; |