blob: 3121e0ecc31fe6bec0db811dd75cfd6b62c6c53a [file] [log] [blame]
Václav Kubernátbddbb172018-06-13 16:27:39 +02001/*
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átbddbb172018-06-13 16:27:39 +020011#include <set>
Václav Kubernátbddbb172018-06-13 16:27:39 +020012#include <unordered_map>
13#include "ast_path.hpp"
14#include "schema.hpp"
15
16
17/*! \class StaticSchema
18 * \brief Static schema, used mainly for testing
19 * */
20
21class StaticSchema : public Schema {
22public:
23 StaticSchema();
24
Václav Kubernát2eaceb82018-10-08 19:56:30 +020025 bool isContainer(const schemaPath_& location, const ModuleNodePair& node) const override;
26 bool isModule(const schemaPath_& location, const std::string& name) const override;
27 bool isLeaf(const schemaPath_& location, const ModuleNodePair& node) const override;
28 bool isList(const schemaPath_& location, const ModuleNodePair& node) const override;
29 bool isPresenceContainer(const schemaPath_& location, const ModuleNodePair& node) const override;
30 bool leafEnumHasValue(const schemaPath_& location, const ModuleNodePair& node, const std::string& value) const override;
Václav Kubernáteeb38842019-03-20 19:46:05 +010031 bool leafIdentityIsValid(const schemaPath_& location, const ModuleNodePair& node, const ModuleValuePair& value) const override;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020032 bool listHasKey(const schemaPath_& location, const ModuleNodePair& node, const std::string& key) const override;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020033 const std::set<std::string> listKeys(const schemaPath_& location, const ModuleNodePair& node) const override;
34 yang::LeafDataTypes leafType(const schemaPath_& location, const ModuleNodePair& node) const override;
Václav Kubernát989b5de2019-02-20 16:28:35 +010035 const std::set<std::string> enumValues(const schemaPath_& location, const ModuleNodePair& node) const override;
Václav Kubernáteeb38842019-03-20 19:46:05 +010036 const std::set<std::string> validIdentities(const schemaPath_& location, const ModuleNodePair& node, const Prefixes prefixes) const override;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020037 std::set<std::string> childNodes(const schemaPath_& path, const Recursion) const override;
Václav Kubernátbddbb172018-06-13 16:27:39 +020038
39 void addContainer(const std::string& location, const std::string& name, yang::ContainerTraits isPresence = yang::ContainerTraits::None);
40 void addLeaf(const std::string& location, const std::string& name, const yang::LeafDataTypes& type);
41 void addLeafEnum(const std::string& location, const std::string& name, std::set<std::string> enumValues);
Václav Kubernáteeb38842019-03-20 19:46:05 +010042 void addLeafIdentityRef(const std::string& location, const std::string& name, const ModuleValuePair& base);
Václav Kubernátbddbb172018-06-13 16:27:39 +020043 void addList(const std::string& location, const std::string& name, const std::set<std::string>& keys);
Václav Kubernát744f57f2018-06-29 22:46:26 +020044 void addModule(const std::string& name);
Václav Kubernáteeb38842019-03-20 19:46:05 +010045 void addIdentity(const std::optional<ModuleValuePair>& base, const ModuleValuePair& name);
Václav Kubernátbddbb172018-06-13 16:27:39 +020046
47private:
48 const std::unordered_map<std::string, NodeType>& children(const std::string& name) const;
Václav Kubernáteeb38842019-03-20 19:46:05 +010049 void getIdentSet(const ModuleValuePair& ident, std::set<ModuleValuePair>& res) const;
Václav Kubernát9d799ac2019-04-11 12:59:07 +020050 bool nodeExists(const std::string& location, const std::string& node) const;
Václav Kubernátbddbb172018-06-13 16:27:39 +020051
52 std::unordered_map<std::string, std::unordered_map<std::string, NodeType>> m_nodes;
Václav Kubernát744f57f2018-06-29 22:46:26 +020053 std::set<std::string> m_modules;
Václav Kubernáteeb38842019-03-20 19:46:05 +010054 std::map<ModuleValuePair, std::set<ModuleValuePair>> m_identities;
Václav Kubernátbddbb172018-06-13 16:27:39 +020055};