24 const std::list<std::string>& names =
25 option_definitions_.getOptionSpaceNames();
26 for (std::list<std::string>::const_iterator name = names.begin();
27 name != names.end(); ++name) {
29 for (OptionDefContainer::const_iterator def = defs->begin();
30 def != defs->end(); ++def) {
33 new_config.
add(new_def, *name);
41 const std::list<std::string>& names = option_definitions_.getOptionSpaceNames();
43 const std::list<std::string>&
47 if (names.size() != other_names.size()) {
52 for (std::list<std::string>::const_iterator name = names.begin();
53 name != names.end(); ++name) {
59 if (defs->size() != defs->size()) {
63 for (OptionDefContainer::const_iterator def = defs->begin();
64 def != defs->end(); ++def) {
66 other_def = other.
get(*name, (*def)->getCode());
68 if (!other_def || (*other_def != **def)) {
80 const std::string& option_space) {
81 if (!OptionSpace::validateName(option_space)) {
83 << option_space <<
"'");
88 "option definition must not be NULL");
90 }
else if (get(option_space, def->getCode())) {
92 << def->getCode() <<
"' already exists in option" 93 " space '" << option_space <<
"'");
96 }
else if (LibDHCP::getOptionDef(option_space, def->getCode())) {
98 << def->getCode() <<
"' in standard option space '" 99 << option_space <<
"'");
102 option_definitions_.addItem(def, option_space);
106 CfgOptionDef::getAll(
const std::string& option_space)
const {
108 return (option_definitions_.getItems(option_space));
112 CfgOptionDef::get(
const std::string& option_space,
113 const uint16_t option_code)
const {
119 if (defs && !defs->empty()) {
125 if (std::distance(range.first, range.second) > 0) {
126 return (*range.first);
134 CfgOptionDef::get(
const std::string& option_space,
135 const std::string& option_name)
const {
141 if (defs && !defs->empty()) {
147 if (std::distance(range.first, range.second) > 0) {
148 return (*range.first);
156 CfgOptionDef::toElement()
const {
160 const std::list<std::string>& names =
161 option_definitions_.getOptionSpaceNames();
162 for (std::list<std::string>::const_iterator name = names.begin();
163 name != names.end(); ++name) {
165 for (OptionDefContainer::const_iterator def = defs->begin();
166 def != defs->end(); ++def) {
170 (*def)->contextToElement(map);
176 std::string data_type =
177 OptionDataTypeUtil::getDataTypeName((*def)->getType());
180 bool array_type = (*def)->getArrayType();
183 std::string encapsulates = (*def)->getEncapsulatedSpace();
187 (*def)->getRecordFields();
188 if (!fields.empty()) {
189 std::ostringstream oss;
190 for (OptionDefinition::RecordFieldsCollection::const_iterator
191 field = fields.begin();
192 field != fields.end(); ++field) {
193 if (field != fields.begin()) {
196 oss << OptionDataTypeUtil::getDataTypeName(*field);
OptionDefinitionPtr get(const std::string &option_space, const uint16_t option_code) const
Return option definition for a particular option space and code.
Base class representing a DHCP option definition.
std::vector< OptionDataType > RecordFieldsCollection
List of fields within the record.
std::list< Selector > getOptionSpaceNames() const
Get a list of existing option spaces.
OptionDefContainer::nth_index< 1 >::type OptionDefContainerTypeIndex
Type of the index #1 - option type.
boost::shared_ptr< Element > ElementPtr
static ElementPtr createMap(const Position &pos=ZERO_POSITION())
Creates an empty MapElement type ElementPtr.
static ElementPtr createList(const Position &pos=ZERO_POSITION())
Creates an empty ListElement type ElementPtr.
std::pair< OptionDefContainerTypeIndex::const_iterator, OptionDefContainerTypeIndex::const_iterator > OptionDefContainerTypeRange
Pair of iterators to represent the range of options definitions having the same option type value.
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
OptionDefContainerPtr getAll(const std::string &option_space) const
Return option definitions for particular option space.
Exception to be thrown when the particular option definition duplicates existing option definition.
Represents option definitions used by the DHCP server.
boost::shared_ptr< OptionDefContainer > OptionDefContainerPtr
Pointer to an option definition container.
void clearItems()
Remove all items from the container.
Defines the logger used by the top-level component of kea-dhcp-ddns.
static ElementPtr create(const Position &pos=ZERO_POSITION())
boost::shared_ptr< OptionDefinition > OptionDefinitionPtr
Pointer to option definition object.
void add(const OptionDefinitionPtr &def, const std::string &option_space)
Add new option definition.
OptionDefContainer::nth_index< 2 >::type OptionDefContainerNameIndex
Type of the index #2 - option name.
std::pair< OptionDefContainerNameIndex::const_iterator, OptionDefContainerNameIndex::const_iterator > OptionDefContainerNameRange
Pair of iterators to represent the range of options definitions having the same option name.