24 const std::list<std::string>& names =
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);
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)) {
83 "option definition must not be NULL");
85 const std::string& option_space = def->getOptionSpaceName();
88 if (
get(option_space, def->getCode())) {
90 << def->getCode() <<
"' already exists in option"
91 " space '" << option_space <<
"'");
92 }
else if (
get(option_space, def->getName())) {
94 << def->getName() <<
"' already exists in option"
95 " space '" << option_space <<
"'");
100 << def->getCode() <<
"' in standard option space '"
101 << option_space <<
"'");
104 << def->getName() <<
"' in standard option space '"
105 << option_space <<
"'");
108 option_definitions_.
addItem(def);
114 return (option_definitions_.
getItems(option_space));
119 const uint16_t option_code)
const {
125 if (defs && !defs->empty()) {
131 if (std::distance(range.first, range.second) > 0) {
132 return (*range.first);
141 const std::string& option_name)
const {
147 if (defs && !defs->empty()) {
153 if (std::distance(range.first, range.second) > 0) {
154 return (*range.first);
176 const std::list<std::string>& names =
178 for (std::list<std::string>::const_iterator name = names.begin();
179 name != names.end(); ++name) {
181 for (OptionDefContainer::const_iterator def = defs->begin();
182 def != defs->end(); ++def) {
186 (*def)->contextToElement(map);
192 std::string data_type =
196 bool array_type = (*def)->getArrayType();
199 std::string encapsulates = (*def)->getEncapsulatedSpace();
203 (*def)->getRecordFields();
204 if (!fields.empty()) {
205 std::ostringstream oss;
206 for (OptionDefinition::RecordFieldsCollection::const_iterator
207 field = fields.begin();
208 field != fields.end(); ++field) {
209 if (field != fields.begin()) {
220 if (include_metadata) {
221 map->set(
"metadata", (*def)->getMetadata());
244 for (
auto my_def : *(
getAll(space))) {
245 if ((other.
get(space, my_def->getName())) ||
246 (other.
get(space, my_def->getCode()))) {
A generic exception that is thrown if a parameter given to a method is considered invalid in that con...
static ElementPtr create(const Position &pos=ZERO_POSITION())
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.
Represents option definitions used by the DHCP server.
void add(const OptionDefinitionPtr &def)
Add new option definition.
virtual isc::data::ElementPtr toElement() const
Unparse a configuration object.
isc::data::ElementPtr toElementWithMetadata(const bool include_metadata) const
Unparse a configuration object with optionally including the metadata.
uint64_t del(const uint64_t id)
Deletes all option definitions having a given database id.
const OptionDefSpaceContainer & getContainer() const
Returns reference to container holding option definitions.
OptionDefContainerPtr getAll(const std::string &option_space) const
Return option definitions for particular option space.
bool equals(const CfgOptionDef &other) const
Check if configuration is equal to other configuration.
void merge(CfgOptionDef &other)
Merges specified option definitions from a configuration into this configuration.
OptionDefinitionPtr get(const std::string &option_space, const uint16_t option_code) const
Return option definition for a particular option space and code.
void copyTo(CfgOptionDef &new_config) const
Copies this configuration to a new configuration.
Exception to be thrown when the particular option definition duplicates existing option definition.
static OptionDefinitionPtr getOptionDef(const std::string &space, const uint16_t code)
Return the first option definition matching a particular option code.
static const std::string & getDataTypeName(const OptionDataType data_type)
Return option data type name from the data type enumerator.
void addItem(const OptionDefinitionPtr &def)
Adds a new option definition to the container.
Base class representing a DHCP option definition.
std::vector< OptionDataType > RecordFieldsCollection
List of fields within the record.
uint64_t deleteItems(const uint64_t id)
Remove all options or option definitions with a given database identifier.
void clearItems()
Remove all items from the container.
std::list< Selector > getOptionSpaceNames() const
Get a list of existing option spaces.
ItemsContainerPtr getItems(const Selector &option_space) const
Get all items for the particular option space.
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
boost::shared_ptr< Element > ElementPtr
boost::shared_ptr< OptionDefinition > OptionDefinitionPtr
Pointer to option definition object.
std::pair< OptionDefContainerNameIndex::const_iterator, OptionDefContainerNameIndex::const_iterator > OptionDefContainerNameRange
Pair of iterators to represent the range of options definitions having the same option name.
OptionDefContainer::nth_index< 2 >::type OptionDefContainerNameIndex
Type of the index #2 - option name.
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.
OptionDefContainer::nth_index< 1 >::type OptionDefContainerTypeIndex
Type of the index #1 - option type.
boost::shared_ptr< OptionDefContainer > OptionDefContainerPtr
Pointer to an option definition container.
Defines the logger used by the top-level component of kea-lfc.