Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/ |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 3 | * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/ |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 4 | * |
| 5 | * Written by Václav Kubernát <kubervac@fit.cvut.cz> |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | #pragma once |
| 10 | |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 11 | #include <boost/variant.hpp> |
| 12 | #include <set> |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 13 | #include <stdexcept> |
| 14 | #include <unordered_map> |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 15 | |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 16 | namespace schema { |
| 17 | struct container { |
| 18 | }; |
| 19 | struct list { |
| 20 | std::set<std::string> m_keys; |
| 21 | }; |
| 22 | } |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 23 | |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 24 | |
| 25 | using NodeType = boost::variant<schema::container, schema::list>; |
| 26 | |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 27 | |
| 28 | class InvalidNodeException : public std::invalid_argument { |
| 29 | public: |
| 30 | using std::invalid_argument::invalid_argument; |
| 31 | ~InvalidNodeException() override; |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | /*! \class CTree |
| 35 | * \brief The class representing the tree, that the user traverses. |
| 36 | * |
| 37 | * This class holds the current position in the tree and handles changing the position, |
| 38 | * including checking what nodes are available. |
| 39 | * */ |
| 40 | class CTree { |
| 41 | public: |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 42 | CTree(); |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 43 | bool nodeExists(const std::string& location, const std::string& name) const; |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 44 | |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 45 | bool isContainer(const std::string& location, const std::string& name) const; |
| 46 | void addContainer(const std::string& location, const std::string& name); |
| 47 | const std::set<std::string>& listKeys(const std::string& location, const std::string& name) const; |
| 48 | bool listHasKey(const std::string& location, const std::string& name, const std::string& key) const; |
| 49 | bool isList(const std::string& location, const std::string& name) const; |
| 50 | void addList(const std::string& location, const std::string& name, const std::set<std::string>& keys); |
| 51 | void changeNode(const std::string& name); |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 52 | std::string currentNode() const; |
| 53 | |
| 54 | private: |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 55 | const std::unordered_map<std::string, NodeType>& children(const std::string& name) const; |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 56 | |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame^] | 57 | std::unordered_map<std::string, std::unordered_map<std::string, NodeType>> m_nodes; |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 58 | std::string m_curDir; |
| 59 | }; |