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
|
// Copyright (C) 2018-2022 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 <dhcp/docsis3_option_defs.h>
#include <dhcp/std_option_defs.h>
#include <yang/adaptor_option.h>
#include <yang/netconf_error.h>
using namespace std;
using namespace isc::data;
using namespace isc::dhcp;
namespace isc {
namespace yang {
void
AdaptorOption::setSpace(ElementPtr option, const string& space) {
if (!option->contains("space")) {
option->set("space", Element::create(space));
}
}
void
AdaptorOption::checkType(ConstElementPtr option) {
if (!option->contains("type")) {
isc_throw(MissingKey, "missing type in option definition "
<< option->str());
}
}
void
AdaptorOption::checkCode(ConstElementPtr option) {
if (!option->contains("code")) {
isc_throw(MissingKey, "missing code in option " << option->str());
}
}
void
AdaptorOption::collect(ConstElementPtr option, OptionCodes& codes) {
ConstElementPtr name = option->get("name");
if (name) {
ConstElementPtr space = option->get("space");
ConstElementPtr code = option->get("code");
string index = space->stringValue() + "@" + name->stringValue();
uint16_t val = static_cast<uint16_t>(code->intValue());
codes.insert(pair<string, uint16_t>(index, val));
}
}
void
AdaptorOption::setCode(ElementPtr option, const OptionCodes& codes) {
ConstElementPtr code = option->get("code");
if (!code) {
ConstElementPtr name = option->get("name");
if (!name) {
isc_throw(MissingKey, "missing name and code in option "
<< option->str());
}
ConstElementPtr space = option->get("space");
string index = space->stringValue() + "@" + name->stringValue();
OptionCodes::const_iterator it = codes.find(index);
if (it == codes.end()) {
isc_throw(MissingKey, "can't get code from option "
<< option->str());
}
option->set("code", Element::create(static_cast<int>(it->second)));
}
}
void
AdaptorOption::initCodes(OptionCodes& codes, const string& space) {
if (space == DHCP4_OPTION_SPACE) {
initCodesInternal(codes, space, STANDARD_V4_OPTION_DEFINITIONS,
STANDARD_V4_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, space, LAST_RESORT_V4_OPTION_DEFINITIONS,
LAST_RESORT_V4_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, "vendor-4491",
DOCSIS3_V4_OPTION_DEFINITIONS,
DOCSIS3_V4_OPTION_DEFINITIONS_SIZE);
} else if (space == DHCP6_OPTION_SPACE) {
initCodesInternal(codes, space, STANDARD_V6_OPTION_DEFINITIONS,
STANDARD_V6_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, "vendor-4491",
DOCSIS3_V6_OPTION_DEFINITIONS,
DOCSIS3_V6_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, MAPE_V6_OPTION_SPACE,
MAPE_V6_OPTION_DEFINITIONS,
MAPE_V6_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, MAPT_V6_OPTION_SPACE,
MAPT_V6_OPTION_DEFINITIONS,
MAPT_V6_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, LW_V6_OPTION_SPACE,
LW_V6_OPTION_DEFINITIONS,
LW_V6_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, V4V6_RULE_OPTION_SPACE,
V4V6_RULE_OPTION_DEFINITIONS,
V4V6_RULE_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, V4V6_BIND_OPTION_SPACE,
V4V6_BIND_OPTION_DEFINITIONS,
V4V6_BIND_OPTION_DEFINITIONS_SIZE);
initCodesInternal(codes, "vendor-2495",
ISC_V6_OPTION_DEFINITIONS,
ISC_V6_OPTION_DEFINITIONS_SIZE);
}
}
void
AdaptorOption::initCodesInternal(OptionCodes& codes, const string& space,
const OptionDefParams* params,
size_t params_size) {
for (size_t i = 0; i < params_size; ++i) {
string index = space + "@" + params[i].name;
codes.insert(pair<string, uint16_t>(index, params[i].code));
}
}
} // namespace yang
} // namespace isc
|