blob: 280f0dab54fd6800c4a4663173f2b17ae3576bdc [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#include "static_schema.hpp"
10#include "utils.hpp"
11
12InvalidNodeException::~InvalidNodeException() = default;
13
14StaticSchema::StaticSchema()
15{
16 m_nodes.emplace("", std::unordered_map<std::string, NodeType>());
17}
18
19const std::unordered_map<std::string, NodeType>& StaticSchema::children(const std::string& name) const
20{
21 return m_nodes.at(name);
22}
23
Václav Kubernát744f57f2018-06-29 22:46:26 +020024bool StaticSchema::nodeExists(const std::string& location, const std::string& node) const
Václav Kubernátbddbb172018-06-13 16:27:39 +020025{
Václav Kubernát744f57f2018-06-29 22:46:26 +020026 if (node.empty())
Václav Kubernátbddbb172018-06-13 16:27:39 +020027 return true;
28 const auto& childrenRef = children(location);
29
Václav Kubernát744f57f2018-06-29 22:46:26 +020030 return childrenRef.find(node) != childrenRef.end();
Václav Kubernátbddbb172018-06-13 16:27:39 +020031}
32
Václav Kubernát2eaceb82018-10-08 19:56:30 +020033bool StaticSchema::isModule(const schemaPath_&, const std::string& name) const
Václav Kubernátbddbb172018-06-13 16:27:39 +020034{
Václav Kubernát744f57f2018-06-29 22:46:26 +020035 return m_modules.find(name) != m_modules.end();
36}
37
Václav Kubernát2eaceb82018-10-08 19:56:30 +020038bool StaticSchema::isContainer(const schemaPath_& location, const ModuleNodePair& node) const
Václav Kubernát744f57f2018-06-29 22:46:26 +020039{
40 std::string locationString = pathToAbsoluteSchemaString(location);
41 auto fullName = fullNodeName(location, node);
42 if (!nodeExists(locationString, fullName))
Václav Kubernátbddbb172018-06-13 16:27:39 +020043 return false;
44
Václav Kubernát744f57f2018-06-29 22:46:26 +020045 return children(locationString).at(fullName).type() == typeid(yang::container);
Václav Kubernátbddbb172018-06-13 16:27:39 +020046}
47
48void StaticSchema::addContainer(const std::string& location, const std::string& name, yang::ContainerTraits isPresence)
49{
50 m_nodes.at(location).emplace(name, yang::container{isPresence});
51
52 //create a new set of children for the new node
53 std::string key = joinPaths(location, name);
54 m_nodes.emplace(key, std::unordered_map<std::string, NodeType>());
55}
56
Václav Kubernát2eaceb82018-10-08 19:56:30 +020057bool StaticSchema::listHasKey(const schemaPath_& location, const ModuleNodePair& node, const std::string& key) const
Václav Kubernátbddbb172018-06-13 16:27:39 +020058{
Václav Kubernát744f57f2018-06-29 22:46:26 +020059 std::string locationString = pathToAbsoluteSchemaString(location);
60 assert(isList(location, node));
Václav Kubernátbddbb172018-06-13 16:27:39 +020061
Václav Kubernát744f57f2018-06-29 22:46:26 +020062 const auto& child = children(locationString).at(fullNodeName(location, node));
Václav Kubernátbddbb172018-06-13 16:27:39 +020063 const auto& list = boost::get<yang::list>(child);
64 return list.m_keys.find(key) != list.m_keys.end();
65}
66
Václav Kubernát2eaceb82018-10-08 19:56:30 +020067const std::set<std::string> StaticSchema::listKeys(const schemaPath_& location, const ModuleNodePair& node) const
Václav Kubernátbddbb172018-06-13 16:27:39 +020068{
Václav Kubernát744f57f2018-06-29 22:46:26 +020069 std::string locationString = pathToAbsoluteSchemaString(location);
70 assert(isList(location, node));
Václav Kubernátbddbb172018-06-13 16:27:39 +020071
Václav Kubernát744f57f2018-06-29 22:46:26 +020072 const auto& child = children(locationString).at(fullNodeName(location, node));
Václav Kubernátbddbb172018-06-13 16:27:39 +020073 const auto& list = boost::get<yang::list>(child);
74 return list.m_keys;
75}
76
Václav Kubernát2eaceb82018-10-08 19:56:30 +020077bool StaticSchema::isList(const schemaPath_& location, const ModuleNodePair& node) const
Václav Kubernátbddbb172018-06-13 16:27:39 +020078{
Václav Kubernát744f57f2018-06-29 22:46:26 +020079 std::string locationString = pathToAbsoluteSchemaString(location);
80 auto fullName = fullNodeName(location, node);
81 if (!nodeExists(locationString, fullName))
Václav Kubernátbddbb172018-06-13 16:27:39 +020082 return false;
Václav Kubernát744f57f2018-06-29 22:46:26 +020083 const auto& child = children(locationString).at(fullName);
Václav Kubernátbddbb172018-06-13 16:27:39 +020084 if (child.type() != typeid(yang::list))
85 return false;
86
87 return true;
88}
89
90void StaticSchema::addList(const std::string& location, const std::string& name, const std::set<std::string>& keys)
91{
92 m_nodes.at(location).emplace(name, yang::list{keys});
93
Václav Kubernát1446fe12019-10-02 19:32:51 +020094 std::string key = joinPaths(location, name);
95 m_nodes.emplace(key, std::unordered_map<std::string, NodeType>());
Václav Kubernátbddbb172018-06-13 16:27:39 +020096}
97
Václav Kubernát2eaceb82018-10-08 19:56:30 +020098bool StaticSchema::isPresenceContainer(const schemaPath_& location, const ModuleNodePair& node) const
Václav Kubernátbddbb172018-06-13 16:27:39 +020099{
Václav Kubernát744f57f2018-06-29 22:46:26 +0200100 if (!isContainer(location, node))
Václav Kubernátbddbb172018-06-13 16:27:39 +0200101 return false;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200102 std::string locationString = pathToAbsoluteSchemaString(location);
103 return boost::get<yang::container>(children(locationString).at(fullNodeName(location, node))).m_presence == yang::ContainerTraits::Presence;
Václav Kubernátbddbb172018-06-13 16:27:39 +0200104}
105
106void StaticSchema::addLeaf(const std::string& location, const std::string& name, const yang::LeafDataTypes& type)
107{
Václav Kubernáteeb38842019-03-20 19:46:05 +0100108 m_nodes.at(location).emplace(name, yang::leaf{type, {}, {}});
Václav Kubernátbddbb172018-06-13 16:27:39 +0200109}
110
111void StaticSchema::addLeafEnum(const std::string& location, const std::string& name, std::set<std::string> enumValues)
112{
Václav Kubernáteeb38842019-03-20 19:46:05 +0100113 yang::leaf toAdd;
114 toAdd.m_type = yang::LeafDataTypes::Enum;
115 toAdd.m_enumValues = enumValues;
116 m_nodes.at(location).emplace(name, toAdd);
117}
118
119void StaticSchema::addLeafIdentityRef(const std::string& location, const std::string& name, const ModuleValuePair& base)
120{
121 assert(base.first); // base identity cannot have an empty module
122 yang::leaf toAdd;
123 toAdd.m_type = yang::LeafDataTypes::IdentityRef;
124 toAdd.m_identBase = base;
125 m_nodes.at(location).emplace(name, toAdd);
Václav Kubernátbddbb172018-06-13 16:27:39 +0200126}
127
Václav Kubernát744f57f2018-06-29 22:46:26 +0200128void StaticSchema::addModule(const std::string& name)
Václav Kubernátbddbb172018-06-13 16:27:39 +0200129{
Václav Kubernát744f57f2018-06-29 22:46:26 +0200130 m_modules.emplace(name);
131}
Václav Kubernátbddbb172018-06-13 16:27:39 +0200132
Václav Kubernáteeb38842019-03-20 19:46:05 +0100133void StaticSchema::addIdentity(const std::optional<ModuleValuePair>& base, const ModuleValuePair& name)
134{
135 if (base)
136 m_identities.at(base.value()).emplace(name);
137
138 m_identities.emplace(name, std::set<ModuleValuePair>());
139}
Václav Kubernát744f57f2018-06-29 22:46:26 +0200140
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200141bool StaticSchema::leafEnumHasValue(const schemaPath_& location, const ModuleNodePair& node, const std::string& value) const
Václav Kubernát744f57f2018-06-29 22:46:26 +0200142{
Václav Kubernát989b5de2019-02-20 16:28:35 +0100143 auto enums = enumValues(location, node);
144 return enums.find(value) != enums.end();
Václav Kubernátbddbb172018-06-13 16:27:39 +0200145}
146
Václav Kubernáteeb38842019-03-20 19:46:05 +0100147void StaticSchema::getIdentSet(const ModuleValuePair& ident, std::set<ModuleValuePair>& res) const
148{
149 res.insert(ident);
150 auto derivedIdentities = m_identities.at(ident);
151 for (auto it : derivedIdentities) {
152 getIdentSet(it, res);
153 }
154}
155
156const std::set<std::string> StaticSchema::validIdentities(const schemaPath_& location, const ModuleNodePair& node, const Prefixes prefixes) const
157{
158 std::string locationString = pathToAbsoluteSchemaString(location);
159 assert(isLeaf(location, node));
160
161 const auto& child = children(locationString).at(fullNodeName(location, node));
162 const auto& leaf = boost::get<yang::leaf>(child);
163
164 std::set<ModuleValuePair> identSet;
165 getIdentSet(leaf.m_identBase, identSet);
166
167 std::set<std::string> res;
168 std::transform(identSet.begin(), identSet.end(), std::inserter(res, res.end()), [location, node, prefixes](const auto& it) {
169 auto topLevelModule = location.m_nodes.empty() ? node.first.get() : location.m_nodes.front().m_prefix.get().m_name;
170 std::string stringIdent;
171 if (prefixes == Prefixes::Always || (it.first && it.first.value() != topLevelModule)) {
172 stringIdent += it.first ? it.first.value() : topLevelModule;
173 stringIdent += ":";
174 }
175 stringIdent += it.second;
176 return stringIdent;
177 });
178
179 return res;
180}
181
182bool StaticSchema::leafIdentityIsValid(const schemaPath_& location, const ModuleNodePair& node, const ModuleValuePair& value) const
183{
184 auto identities = validIdentities(location, node, Prefixes::Always);
185
186 auto topLevelModule = location.m_nodes.empty() ? node.first.get() : location.m_nodes.front().m_prefix.get().m_name;
187 auto identModule = value.first ? value.first.value() : topLevelModule;
Václav Kubernát1bf704e2019-04-12 13:30:50 +0200188 return std::any_of(identities.begin(), identities.end(), [toFind = identModule + ":" + value.second](const auto& x) { return x == toFind; });
Václav Kubernáteeb38842019-03-20 19:46:05 +0100189}
190
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200191bool StaticSchema::isLeaf(const schemaPath_& location, const ModuleNodePair& node) const
Václav Kubernátbddbb172018-06-13 16:27:39 +0200192{
Václav Kubernát744f57f2018-06-29 22:46:26 +0200193 std::string locationString = pathToAbsoluteSchemaString(location);
194 auto fullName = fullNodeName(location, node);
195 if (!nodeExists(locationString, fullName))
Václav Kubernátbddbb172018-06-13 16:27:39 +0200196 return false;
197
Václav Kubernát744f57f2018-06-29 22:46:26 +0200198 return children(locationString).at(fullName).type() == typeid(yang::leaf);
Václav Kubernátbddbb172018-06-13 16:27:39 +0200199}
200
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200201yang::LeafDataTypes StaticSchema::leafType(const schemaPath_& location, const ModuleNodePair& node) const
Václav Kubernátbddbb172018-06-13 16:27:39 +0200202{
Václav Kubernát744f57f2018-06-29 22:46:26 +0200203 std::string locationString = pathToAbsoluteSchemaString(location);
204 return boost::get<yang::leaf>(children(locationString).at(fullNodeName(location, node))).m_type;
205}
206
Václav Kubernát989b5de2019-02-20 16:28:35 +0100207const std::set<std::string> StaticSchema::enumValues(const schemaPath_& location, const ModuleNodePair& node) const
208{
209 std::string locationString = pathToAbsoluteSchemaString(location);
210 assert(isLeaf(location, node));
211
212 const auto& child = children(locationString).at(fullNodeName(location, node));
213 const auto& leaf = boost::get<yang::leaf>(child);
214 return leaf.m_enumValues;
215}
216
Václav Kubernáte7d4aea2018-09-11 18:15:48 +0200217// We do not test StaticSchema, so we don't need to implement recursive childNodes
218// for this class.
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200219std::set<std::string> StaticSchema::childNodes(const schemaPath_& path, const Recursion) const
Václav Kubernát744f57f2018-06-29 22:46:26 +0200220{
221 std::string locationString = pathToAbsoluteSchemaString(path);
222 std::set<std::string> res;
223
224 auto childrenRef = children(locationString);
225
226 std::transform(childrenRef.begin(), childrenRef.end(),
227 std::inserter(res, res.end()),
228 [] (auto it) { return it.first; });
229 return res;
Václav Kubernátbddbb172018-06-13 16:27:39 +0200230}