blob: fcbe0d076ff78f9100aaf79218b3450338b2c6db [file] [log] [blame]
Václav Kubernát94938b72018-05-04 15:12:24 +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*/
Václav Kubernát509ce652019-05-29 19:46:44 +02008#include <sstream>
Václav Kubernátcb3af402020-02-12 16:49:17 +01009#include "completion.hpp"
Václav Kubernát94938b72018-05-04 15:12:24 +020010#include "utils.hpp"
11
12std::string joinPaths(const std::string& prefix, const std::string& suffix)
13{
Václav Kubernáta44bdf22020-01-24 12:15:31 +010014 // These two if statements are essential for the algorithm:
15 // The first one solves joining nothing and a relative path - the algorithm
16 // down below adds a leading slash, turning it into an absolute path.
17 // The second one would always add a trailing slash to the path.
18 if (prefix.empty()) {
19 return suffix;
20 }
21
22 if (suffix.empty()) {
23 return prefix;
24 }
25
26 // Otherwise, strip slashes where the join is going to happen. This will
27 // also change "/" to "", but the return statement takes care of that and
28 // inserts the slash again.
29 auto prefixWithoutTrailingSlash = !prefix.empty() && prefix.back() == '/' ? prefix.substr(0, prefix.length() - 1) : prefix;
30 auto suffixWithoutLeadingSlash = !suffix.empty() && suffix.front() == '/' ? suffix.substr(1) : suffix;
31
32 // And join the result with a slash.
33 return prefixWithoutTrailingSlash + '/' + suffixWithoutLeadingSlash;
Václav Kubernát94938b72018-05-04 15:12:24 +020034}
Václav Kubernát60d6f292018-05-25 09:45:32 +020035
36std::string stripLastNodeFromPath(const std::string& path)
37{
38 std::string res = path;
39 auto pos = res.find_last_of('/');
Václav Kubernátefcac932020-01-10 15:26:32 +010040 if (pos == res.npos) { // path has no backslash - it's either empty, or is a relative path with one fragment
Václav Kubernát60d6f292018-05-25 09:45:32 +020041 res.clear();
Václav Kubernátefcac932020-01-10 15:26:32 +010042 } else if (pos == 0) { // path has one backslash at the start - it's either "/" or "/one-path-fragment"
43 return "/";
44 } else {
Václav Kubernát60d6f292018-05-25 09:45:32 +020045 res.erase(pos);
Václav Kubernátefcac932020-01-10 15:26:32 +010046 }
Václav Kubernát60d6f292018-05-25 09:45:32 +020047 return res;
48}
Václav Kubernátebca2552018-06-08 19:06:02 +020049
Václav Kubernát2eaceb82018-10-08 19:56:30 +020050schemaPath_ pathWithoutLastNode(const schemaPath_& path)
Václav Kubernátebca2552018-06-08 19:06:02 +020051{
Václav Kubernát2eaceb82018-10-08 19:56:30 +020052 return schemaPath_{path.m_scope, decltype(schemaPath_::m_nodes)(path.m_nodes.begin(), path.m_nodes.end() - 1)};
Václav Kubernátebca2552018-06-08 19:06:02 +020053}
Václav Kubernát0b0272f2018-06-13 14:13:08 +020054
55std::string leafDataTypeToString(yang::LeafDataTypes type)
56{
57 switch (type) {
58 case yang::LeafDataTypes::String:
59 return "a string";
60 case yang::LeafDataTypes::Decimal:
61 return "a decimal";
62 case yang::LeafDataTypes::Bool:
63 return "a boolean";
Ivona Oboňová88c78ca2019-07-02 18:40:07 +020064 case yang::LeafDataTypes::Int8:
65 return "an 8-bit integer";
66 case yang::LeafDataTypes::Uint8:
67 return "an 8-bit unsigned integer";
68 case yang::LeafDataTypes::Int16:
69 return "a 16-bit integer";
70 case yang::LeafDataTypes::Uint16:
71 return "a 16-bit unsigned integer";
72 case yang::LeafDataTypes::Int32:
73 return "a 32-bit integer";
74 case yang::LeafDataTypes::Uint32:
75 return "a 32-bit unsigned integer";
76 case yang::LeafDataTypes::Int64:
77 return "a 64-bit integer";
78 case yang::LeafDataTypes::Uint64:
79 return "a 64-bit unsigned integer";
Václav Kubernát0b0272f2018-06-13 14:13:08 +020080 case yang::LeafDataTypes::Enum:
81 return "an enum";
Václav Kubernáteeb38842019-03-20 19:46:05 +010082 case yang::LeafDataTypes::IdentityRef:
83 return "an identity";
Václav Kubernát6a8d1d92019-04-24 20:30:36 +020084 case yang::LeafDataTypes::LeafRef:
85 return "a leafref";
Václav Kubernát1bbac7c2020-01-15 17:45:41 +010086 case yang::LeafDataTypes::Binary:
87 return "a base64-encoded binary value";
Václav Kubernát0b0272f2018-06-13 14:13:08 +020088 default:
Václav Kubernáteeb38842019-03-20 19:46:05 +010089 throw std::runtime_error("leafDataTypeToString: unsupported leaf data type");
Václav Kubernát0b0272f2018-06-13 14:13:08 +020090 }
91}
Václav Kubernát744f57f2018-06-29 22:46:26 +020092
Václav Kubernát2eaceb82018-10-08 19:56:30 +020093std::string fullNodeName(const schemaPath_& location, const ModuleNodePair& pair)
Václav Kubernát744f57f2018-06-29 22:46:26 +020094{
95 if (!pair.first) {
96 return location.m_nodes.at(0).m_prefix.value().m_name + ":" + pair.second;
97 } else {
98 return pair.first.value() + ":" + pair.second;
99 }
100}
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200101
102std::string fullNodeName(const dataPath_& location, const ModuleNodePair& pair)
103{
104 return fullNodeName(dataPathToSchemaPath(location), pair);
105}
Václav Kubernát4108e0d2018-10-29 13:32:22 +0100106
Václav Kubernát9b725992019-05-29 16:39:47 +0200107struct leafDataToStringVisitor : boost::static_visitor<std::string> {
108 std::string operator()(const enum_& data) const
109 {
110 return data.m_value;
111 }
112
113 std::string operator()(const binary_& data) const
114 {
115 return data.m_value;
116 }
117
118 std::string operator()(const identityRef_& data) const
119 {
Václav Kubernátc31bd602019-03-07 11:44:48 +0100120 return data.m_prefix.value().m_name + ":" + data.m_value;
Václav Kubernát9b725992019-05-29 16:39:47 +0200121 }
122
Václav Kubernát144729d2020-01-08 15:20:35 +0100123 std::string operator()(const special_& data) const
124 {
125 return specialValueToString(data);
126 }
127
Jan Kundrátc43acf72019-07-02 19:28:22 +0200128 std::string operator()(const std::string& data) const
129 {
130 return data;
131 }
132
Václav Kubernát8e121ff2019-10-15 15:47:45 +0200133 std::string operator()(const bool& data) const
134 {
135 if (data)
136 return "true";
137 else
138 return "false";
139 }
140
Václav Kubernát9b725992019-05-29 16:39:47 +0200141 template <typename T>
142 std::string operator()(const T& data) const
143 {
Jan Kundrátc43acf72019-07-02 19:28:22 +0200144 return std::to_string(data);
Václav Kubernát9b725992019-05-29 16:39:47 +0200145 }
146};
147
148std::string leafDataToString(const leaf_data_ value)
149{
150 return boost::apply_visitor(leafDataToStringVisitor(), value);
151}