blob: 1a84e23ee11c66fd11f1e2c5091c702b28121d03 [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
11#include <boost/variant.hpp>
12#include <set>
13#include <stdexcept>
14#include <unordered_map>
15#include "ast_path.hpp"
16#include "schema.hpp"
17
18
19/*! \class StaticSchema
20 * \brief Static schema, used mainly for testing
21 * */
Václav Kubernát744f57f2018-06-29 22:46:26 +020022using ModuleNodePair = std::pair<boost::optional<std::string>, std::string>;
Václav Kubernátbddbb172018-06-13 16:27:39 +020023
24class StaticSchema : public Schema {
25public:
26 StaticSchema();
27
Václav Kubernát744f57f2018-06-29 22:46:26 +020028 bool isContainer(const path_& location, const ModuleNodePair& node) const override;
29 bool isModule(const path_& location, const std::string& name) const override;
30 bool isLeaf(const path_& location, const ModuleNodePair& node) const override;
31 bool isList(const path_& location, const ModuleNodePair& node) const override;
32 bool isPresenceContainer(const path_& location, const ModuleNodePair& node) const override;
33 bool leafEnumHasValue(const path_& location, const ModuleNodePair& node, const std::string& value) const override;
34 bool listHasKey(const path_& location, const ModuleNodePair& node, const std::string& key) const override;
35 bool nodeExists(const std::string& location, const std::string& node) const override;
36 const std::set<std::string>& listKeys(const path_& location, const ModuleNodePair& node) const override;
37 yang::LeafDataTypes leafType(const path_& location, const ModuleNodePair& node) const override;
38 std::set<std::string> childNodes(const path_& path) const override;
Václav Kubernátbddbb172018-06-13 16:27:39 +020039
40 void addContainer(const std::string& location, const std::string& name, yang::ContainerTraits isPresence = yang::ContainerTraits::None);
41 void addLeaf(const std::string& location, const std::string& name, const yang::LeafDataTypes& type);
42 void addLeafEnum(const std::string& location, const std::string& name, std::set<std::string> enumValues);
43 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átbddbb172018-06-13 16:27:39 +020045
46private:
47 const std::unordered_map<std::string, NodeType>& children(const std::string& name) const;
48
49 std::unordered_map<std::string, std::unordered_map<std::string, NodeType>> m_nodes;
Václav Kubernát744f57f2018-06-29 22:46:26 +020050 std::set<std::string> m_modules;
Václav Kubernátbddbb172018-06-13 16:27:39 +020051};