1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
// Copyright (C) 2018-2023 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <config.h>
#include <yang/translator_option_data.h>
#include <yang/yang_models.h>
#include <sstream>
using namespace std;
using namespace isc::data;
using namespace libyang;
using namespace sysrepo;
namespace isc {
namespace yang {
TranslatorOptionData::TranslatorOptionData(Session session,
const string& model)
: Translator(session, model) {
}
ElementPtr
TranslatorOptionData::getOptionData(DataNode const& data_node) {
try {
if ((model_ == KEA_DHCP4_SERVER) ||
(model_ == KEA_DHCP6_SERVER)) {
return (getOptionDataKea(data_node));
}
} catch (Error const& ex) {
isc_throw(NetconfError,
"getting option data:"
<< ex.what());
}
isc_throw(NotImplemented,
"getOptionData not implemented for the model: " << model_);
}
ElementPtr
TranslatorOptionData::getOptionDataFromAbsoluteXpath(string const& xpath) {
try {
return getOptionData(findXPath(xpath));
} catch (NetconfError const&) {
return ElementPtr();
}
}
ElementPtr
TranslatorOptionData::getOptionDataKea(DataNode const& data_node) {
ElementPtr result = Element::createMap();
getMandatoryLeaf(result, data_node, "code");
getMandatoryLeaf(result, data_node, "space");
checkAndGetLeaf(result, data_node, "always-send");
checkAndGetLeaf(result, data_node, "csv-format");
checkAndGetLeaf(result, data_node, "data");
checkAndGetLeaf(result, data_node, "name");
checkAndGetLeaf(result, data_node, "never-send");
checkAndGetAndJsonifyLeaf(result, data_node, "user-context");
return (result->empty() ? ElementPtr() : result);
}
void
TranslatorOptionData::setOptionData(string const& xpath,
ConstElementPtr elem) {
try {
if ((model_ == KEA_DHCP4_SERVER) ||
(model_ == KEA_DHCP6_SERVER)) {
setOptionDataKea(xpath, elem);
} else {
isc_throw(NotImplemented,
"setOptionData not implemented for the model: "
<< model_);
}
} catch (Error const& ex) {
isc_throw(NetconfError,
"setting option data '" << elem->str()
<< "' : " << ex.what());
}
}
void
TranslatorOptionData::setOptionDataKea(string const& xpath,
ConstElementPtr elem) {
// Skip keys "code" and "space".
checkAndSetLeaf(elem, xpath, "always-send", LeafBaseType::Bool);
checkAndSetLeaf(elem, xpath, "csv-format", LeafBaseType::Bool);
checkAndSetLeaf(elem, xpath, "data", LeafBaseType::String);
checkAndSetLeaf(elem, xpath, "name", LeafBaseType::String);
checkAndSetLeaf(elem, xpath, "never-send", LeafBaseType::Bool);
checkAndSetUserContext(elem, xpath);
}
TranslatorOptionDataList::TranslatorOptionDataList(Session session,
const string& model)
: Translator(session, model),
TranslatorOptionData(session, model) {
}
ConstElementPtr
TranslatorOptionDataList::getOptionDataList(DataNode const& data_node) {
try {
if ((model_ == KEA_DHCP4_SERVER) ||
(model_ == KEA_DHCP6_SERVER)) {
return (getOptionDataListKea(data_node));
}
} catch (Error const& ex) {
isc_throw(NetconfError,
"getting option data list:"
<< ex.what());
}
isc_throw(NotImplemented,
"getOptionDataList not implemented for the model: " << model_);
}
ConstElementPtr
TranslatorOptionDataList::getOptionDataListFromAbsoluteXpath(string const& xpath) {
try {
return getOptionDataList(findXPath(xpath));
} catch (NetconfError const&) {
return ElementPtr();
}
}
ConstElementPtr
TranslatorOptionDataList::getOptionDataListKea(DataNode const& data_node) {
return getList<TranslatorOptionData>(data_node, "option-data", *this,
&TranslatorOptionData::getOptionData);
}
void
TranslatorOptionDataList::setOptionDataList(string const& xpath,
ConstElementPtr elem) {
try {
if ((model_ == KEA_DHCP4_SERVER) ||
(model_ == KEA_DHCP6_SERVER)) {
setOptionDataListKea(xpath, elem);
} else {
isc_throw(NotImplemented,
"setOptionDataList not implemented for the model: "
<< model_);
}
} catch (Error const& ex) {
isc_throw(NetconfError,
"setting option data list '" << elem->str()
<< "' : " << ex.what());
}
}
void
TranslatorOptionDataList::setOptionDataListKea(string const& xpath,
ConstElementPtr elem) {
for (size_t i = 0; i < elem->size(); ++i) {
ElementPtr option = elem->getNonConst(i);
if (!option->contains("code")) {
isc_throw(BadValue, "option data without code: " << option->str());
}
unsigned code = static_cast<unsigned>(option->get("code")->intValue());
if (!option->contains("space")) {
isc_throw(BadValue, "option data without space: " <<option->str());
}
string space = option->get("space")->stringValue();
ostringstream keys;
keys << xpath << "/option-data[code='" << code
<< "'][space='" << space << "']";
setOptionData(keys.str(), option);
}
}
} // namespace yang
} // namespace isc
|