blob: 7d6e486af56d140ed4a9f65d2a41d69bc8a6229c [file] [log] [blame]
Václav Kubernát624a8872018-03-02 17:28:47 +01001/*
2 * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/
Václav Kubernátd6662962018-03-22 17:41:33 +01003 * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/
Václav Kubernát624a8872018-03-02 17:28:47 +01004 *
5 * Written by Václav Kubernát <kubervac@fit.cvut.cz>
6 *
7*/
8
9#pragma once
10
Václav Kubernátb96eef72018-05-04 19:10:22 +020011#include <boost/variant.hpp>
12#include <set>
Václav Kubernát624a8872018-03-02 17:28:47 +010013#include <stdexcept>
14#include <unordered_map>
Václav Kubernátff2c9f62018-05-16 20:26:31 +020015#include "ast.hpp"
Václav Kubernátd6662962018-03-22 17:41:33 +010016
Václav Kubernát48fc3832018-05-28 14:21:22 +020017namespace yang {
18struct container {
19};
20struct list {
21 std::set<std::string> m_keys;
22};
Václav Kubernátb96eef72018-05-04 19:10:22 +020023}
Václav Kubernátd6662962018-03-22 17:41:33 +010024
Václav Kubernátf2e463f2018-05-28 15:51:08 +020025
Václav Kubernátb96eef72018-05-04 19:10:22 +020026
Václav Kubernát48fc3832018-05-28 14:21:22 +020027using NodeType = boost::variant<yang::container, yang::list>;
Václav Kubernátb96eef72018-05-04 19:10:22 +020028
Václav Kubernát624a8872018-03-02 17:28:47 +010029
30class InvalidNodeException : public std::invalid_argument {
31public:
32 using std::invalid_argument::invalid_argument;
33 ~InvalidNodeException() override;
Václav Kubernát624a8872018-03-02 17:28:47 +010034};
35
Václav Kubernát48fc3832018-05-28 14:21:22 +020036/*! \class Schema
37 * \brief The class representing the schema, that the user traverses.
Václav Kubernát624a8872018-03-02 17:28:47 +010038 * */
Václav Kubernát48fc3832018-05-28 14:21:22 +020039class Schema {
Václav Kubernát624a8872018-03-02 17:28:47 +010040public:
Václav Kubernát48fc3832018-05-28 14:21:22 +020041 Schema();
Václav Kubernátb96eef72018-05-04 19:10:22 +020042 bool nodeExists(const std::string& location, const std::string& name) const;
Václav Kubernátd6662962018-03-22 17:41:33 +010043
Václav Kubernát814fa412018-05-25 19:47:18 +020044 bool isContainer(const path_& location, const std::string& name) const;
Václav Kubernátb96eef72018-05-04 19:10:22 +020045 void addContainer(const std::string& location, const std::string& name);
Václav Kubernát814fa412018-05-25 19:47:18 +020046 const std::set<std::string>& listKeys(const path_& location, const std::string& name) const;
47 bool listHasKey(const path_& location, const std::string& name, const std::string& key) const;
48 bool isList(const path_& location, const std::string& name) const;
Václav Kubernátb96eef72018-05-04 19:10:22 +020049 void addList(const std::string& location, const std::string& name, const std::set<std::string>& keys);
Václav Kubernát624a8872018-03-02 17:28:47 +010050
51private:
Václav Kubernátb96eef72018-05-04 19:10:22 +020052 const std::unordered_map<std::string, NodeType>& children(const std::string& name) const;
Václav Kubernát624a8872018-03-02 17:28:47 +010053
Václav Kubernátb96eef72018-05-04 19:10:22 +020054 std::unordered_map<std::string, std::unordered_map<std::string, NodeType>> m_nodes;
Václav Kubernát624a8872018-03-02 17:28:47 +010055};