blob: f768461b12d0071b60f124b137d5d296fffb9fc1 [file] [log] [blame]
Václav Kubernát24df80e2018-06-06 15:18:03 +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#pragma once
9
Václav Kubernát24df80e2018-06-06 15:18:03 +020010#include <boost/fusion/adapted/struct/adapt_struct.hpp>
11#include <boost/fusion/include/adapt_struct.hpp>
12#include <boost/fusion/include/std_pair.hpp>
Václav Kubernát509ce652019-05-29 19:46:44 +020013#include <boost/variant/variant.hpp>
Václav Kubernát24df80e2018-06-06 15:18:03 +020014#include <map>
15#include <vector>
16
Václav Kubernáteeb38842019-03-20 19:46:05 +010017#include "ast_values.hpp"
18
Václav Kubernátefcac932020-01-10 15:26:32 +010019enum class Prefixes {
20 Always,
21 WhenNeeded
22};
23
Václav Kubernát24df80e2018-06-06 15:18:03 +020024struct nodeup_ {
25 bool operator==(const nodeup_&) const
26 {
27 return true;
28 }
29};
30
31struct container_ {
32 container_() = default;
33 container_(const std::string& name);
34
35 bool operator==(const container_& b) const;
36
37 std::string m_name;
38};
39
40struct leaf_ {
41 leaf_() = default;
42 leaf_(const std::string& name);
43
44 bool operator==(const leaf_& b) const;
45
46 std::string m_name;
47};
48
Václav Kubernát5b8a8f32020-05-20 00:57:22 +020049struct leafList_ {
50 leafList_();
51 leafList_(const std::string& name);
52
53 bool operator==(const leafList_& b) const;
54
55 std::string m_name;
56};
57
58struct leafListElement_ {
59 bool operator==(const leafListElement_& b) const;
60
61 std::string m_name;
62 leaf_data_ m_value;
63};
64
Václav Kubernát24df80e2018-06-06 15:18:03 +020065struct listElement_ {
66 listElement_() {}
Václav Kubernát7707cae2020-01-16 12:04:53 +010067 listElement_(const std::string& listName, const std::map<std::string, leaf_data_>& keys);
Václav Kubernát24df80e2018-06-06 15:18:03 +020068
69 bool operator==(const listElement_& b) const;
70
71 std::string m_name;
Václav Kubernát7707cae2020-01-16 12:04:53 +010072 std::map<std::string, leaf_data_> m_keys;
Václav Kubernát24df80e2018-06-06 15:18:03 +020073};
74
Václav Kubernát2eaceb82018-10-08 19:56:30 +020075struct list_ {
76 list_() {}
77 list_(const std::string& listName);
78
79 bool operator==(const list_& b) const;
80
81 std::string m_name;
82};
83
Václav Kubernát2eaceb82018-10-08 19:56:30 +020084struct schemaNode_ {
85 boost::optional<module_> m_prefix;
Václav Kubernát5b8a8f32020-05-20 00:57:22 +020086 boost::variant<container_, list_, nodeup_, leaf_, leafList_> m_suffix;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020087
88 schemaNode_();
89 schemaNode_(decltype(m_suffix) node);
90 schemaNode_(module_ module, decltype(m_suffix) node);
91 bool operator==(const schemaNode_& b) const;
92};
93
94struct dataNode_ {
Václav Kubernát744f57f2018-06-29 22:46:26 +020095 boost::optional<module_> m_prefix;
Václav Kubernát5b8a8f32020-05-20 00:57:22 +020096 boost::variant<container_, listElement_, nodeup_, leaf_, leafListElement_, leafList_, list_> m_suffix;
Václav Kubernát24df80e2018-06-06 15:18:03 +020097
Václav Kubernát2eaceb82018-10-08 19:56:30 +020098 dataNode_();
99 dataNode_(decltype(m_suffix) node);
100 dataNode_(module_ module, decltype(m_suffix) node);
101 bool operator==(const dataNode_& b) const;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200102};
103
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100104enum class TrailingSlash {
105 Present,
106 NonPresent
107};
108
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200109enum class Scope {
Václav Kubernát37171a12018-08-31 17:01:48 +0200110 Absolute,
111 Relative
112};
113
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200114struct schemaPath_ {
115 bool operator==(const schemaPath_& b) const;
Václav Kubernát37171a12018-08-31 17:01:48 +0200116 Scope m_scope = Scope::Relative;
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200117 std::vector<schemaNode_> m_nodes;
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100118 TrailingSlash m_trailingSlash = TrailingSlash::NonPresent;
Václav Kubernát744f57f2018-06-29 22:46:26 +0200119};
120
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200121struct dataPath_ {
122 bool operator==(const dataPath_& b) const;
123 Scope m_scope = Scope::Relative;
124 std::vector<dataNode_> m_nodes;
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100125 TrailingSlash m_trailingSlash = TrailingSlash::NonPresent;
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200126};
Václav Kubernát744f57f2018-06-29 22:46:26 +0200127
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200128std::string nodeToSchemaString(decltype(dataPath_::m_nodes)::value_type node);
129
Václav Kubernátefcac932020-01-10 15:26:32 +0100130std::string pathToDataString(const dataPath_& path, Prefixes prefixes);
131std::string pathToSchemaString(const schemaPath_& path, Prefixes prefixes);
132std::string pathToSchemaString(const dataPath_& path, Prefixes prefixes);
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200133schemaNode_ dataNodeToSchemaNode(const dataNode_& node);
134schemaPath_ dataPathToSchemaPath(const dataPath_& path);
Václav Kubernátbbfd1fa2019-12-13 13:51:28 +0100135std::string escapeListKeyString(const std::string& what);
Václav Kubernát24df80e2018-06-06 15:18:03 +0200136
137BOOST_FUSION_ADAPT_STRUCT(container_, m_name)
138BOOST_FUSION_ADAPT_STRUCT(listElement_, m_name, m_keys)
Václav Kubernát5b8a8f32020-05-20 00:57:22 +0200139BOOST_FUSION_ADAPT_STRUCT(leafListElement_, m_name, m_value)
Václav Kubernát744f57f2018-06-29 22:46:26 +0200140BOOST_FUSION_ADAPT_STRUCT(module_, m_name)
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200141BOOST_FUSION_ADAPT_STRUCT(dataNode_, m_prefix, m_suffix)
142BOOST_FUSION_ADAPT_STRUCT(schemaNode_, m_prefix, m_suffix)
Václav Kubernátd6fd2492018-11-19 15:11:16 +0100143BOOST_FUSION_ADAPT_STRUCT(dataPath_, m_scope, m_nodes, m_trailingSlash)
144BOOST_FUSION_ADAPT_STRUCT(schemaPath_, m_scope, m_nodes, m_trailingSlash)