![]() |
Kea 3.1.7
|
The Element class represents a piece of data, used by the command channel and configuration parts.
More...
#include <data.h>
Classes | |
| struct | Position |
| Represents the position of the data element within a configuration string. More... | |
Public Types | |
| enum | types : uint16_t { integer = 0 , real = 1 , boolean = 2 , null = 3 , string = 4 , bigint = 5 , list = 6 , map = 7 , any = 8 } |
| The types that an Element can hold. More... | |
Public Member Functions | |
| virtual | ~Element () |
| const Position & | getPosition () const |
| Returns position where the data element's value starts in a configuration string. | |
| types | getType () const |
| std::string | str () const |
| Returns a string representing the Element and all its child elements. | |
| std::string | toWire () const |
| Returns the wireformat for the Element and all its child elements. | |
| void | toWire (std::ostream &out) const |
| Appends the wireformat for the Element to the stream. | |
pure virtuals, every derived class must implement these. | |
| virtual bool | equals (const Element &other, unsigned level=MAX_NESTING_LEVEL) const=0 |
| Test equality. | |
| virtual void | toJSON (std::ostream &ss, unsigned level=MAX_NESTING_LEVEL) const=0 |
| Converts the Element to JSON format and appends it to the given output stream. | |
Type-specific getters | |
These functions only work on their corresponding Element type. For all other types, a TypeError is thrown. If you want an exception-safe getter method, use getValue() below | |
| virtual int64_t | intValue () const |
| Return the integer value. | |
| virtual isc::util::int128_t | bigIntValue () const |
| Return the big integer value. | |
| virtual double | doubleValue () const |
| Return the double value. | |
| virtual bool | boolValue () const |
| Return the boolean value. | |
| virtual std::string | stringValue () const |
| Return the string value. | |
| virtual const std::vector< ElementPtr > & | listValue () const |
| Return the list value. | |
| virtual const std::map< std::string, ConstElementPtr > & | mapValue () const |
| Return the map value. | |
Exception-safe getters | |
The getValue() functions return false if the given reference is of another type than the element contains By default it always returns false; the derived classes override the function for their type, copying their data to the given reference and returning true | |
| virtual bool | getValue (int64_t &t) const |
| Get the integer value. | |
| virtual bool | getValue (double &t) const |
| Get the double value. | |
| virtual bool | getValue (bool &t) const |
| Get the boolean value. | |
| virtual bool | getValue (std::string &t) const |
| Get the string value. | |
| virtual bool | getValue (std::vector< ElementPtr > &t) const |
| Get the list value. | |
| virtual bool | getValue (std::map< std::string, ConstElementPtr > &t) const |
| Get the map value. | |
Exception-safe setters. | |
Return false if the Element is not the right type. Set the value and return true if the Elements is of the correct type Notes: Read notes of IntElement definition about the use of long long int, long int and int. | |
| virtual bool | setValue (const long long int v) |
| Set the integer value. | |
| virtual bool | setValue (const isc::util::int128_t &v) |
| Set the big integer value. | |
| virtual bool | setValue (const double v) |
| Set the double value. | |
| virtual bool | setValue (const bool t) |
| Set the boolean value. | |
| virtual bool | setValue (const std::string &v) |
| Set the string value. | |
| virtual bool | setValue (const std::vector< ElementPtr > &v) |
| Set the list value. | |
| virtual bool | setValue (const std::map< std::string, ConstElementPtr > &v) |
| Set the map value. | |
| bool | setValue (const long int i) |
| Set the integer value (long int overload). | |
| bool | setValue (const int i) |
| Set the integer value (int overload). | |
ListElement functions. | |
If the Element on which these functions are called are not an instance of ListElement, a TypeError exception is thrown. | |
| virtual ConstElementPtr | get (const int i) const |
| Returns the ElementPtr at the given index. | |
| virtual ElementPtr | getNonConst (const int i) const |
| returns element as non-const pointer. | |
| virtual void | set (const size_t i, ElementPtr element) |
| Sets the ElementPtr at the given index. | |
| virtual void | add (ElementPtr element) |
| Adds an ElementPtr to the list. | |
| virtual void | remove (const int i) |
| Removes the element at the given position. | |
| virtual size_t | size () const |
| Returns the number of elements in the list. | |
| virtual bool | empty () const |
| Return true if there are no elements in the list. | |
MapElement functions | |
If the Element on which these functions are called are not an instance of MapElement, a TypeError exception is thrown. | |
| virtual ConstElementPtr | get (const std::string &name) const |
| Returns the ElementPtr at the given key. | |
| virtual void | set (const std::string &name, ConstElementPtr element) |
| Sets the ElementPtr at the given key. | |
| virtual void | remove (const std::string &name) |
| Remove the ElementPtr at the given key. | |
| virtual bool | contains (const std::string &name) const |
| Checks if there is data at the given key. | |
| virtual ConstElementPtr | find (const std::string &identifier) const |
| Recursively finds any data at the given identifier. | |
| virtual bool | find (const std::string &identifier, ConstElementPtr &t) const |
See Element::find() | |
Static Public Member Functions | |
| static const Position & | ZERO_POSITION () |
Returns Position object with line_ and pos_ set to 0, and with an empty file name. | |
Direct factory functions | |
These functions simply wrap the given data directly in an Element object, and return a reference to it, in the form of an These factory functions are exception-free (unless there is no memory available, in which case bad_alloc is raised by the underlying system). (Note that that is different from an NullElement, which represents an empty value, and is created with Element::create()) Notes: Read notes of IntElement definition about the use of long long int, long int and int. | |
| static ElementPtr | create (const Position &pos=ZERO_POSITION()) |
| Create a NullElement. | |
| static ElementPtr | create (const long long int i, const Position &pos=ZERO_POSITION()) |
| Create an IntElement. | |
| static ElementPtr | create (const int i, const Position &pos=ZERO_POSITION()) |
| Create an IntElement (int overload). | |
| static ElementPtr | create (const long int i, const Position &pos=ZERO_POSITION()) |
| Create an IntElement (long int overload). | |
| static ElementPtr | create (const uint32_t i, const Position &pos=ZERO_POSITION()) |
| Create an IntElement (int32_t overload). | |
| static ElementPtr | create (const isc::util::int128_t &i, const Position &pos=ZERO_POSITION()) |
| Create a BigIntElement. | |
| static ElementPtr | create (const double d, const Position &pos=ZERO_POSITION()) |
| Create a DoubleElement. | |
| static ElementPtr | create (const bool b, const Position &pos=ZERO_POSITION()) |
| Create a BoolElement. | |
| static ElementPtr | create (const std::string &s, const Position &pos=ZERO_POSITION()) |
| Create a StringElement. | |
| static ElementPtr | create (const char *s, const Position &pos=ZERO_POSITION()) |
| Create a StringElement (char* overload). | |
| static ElementPtr | createList (const Position &pos=ZERO_POSITION()) |
| Creates an empty ListElement type ElementPtr. | |
| static ElementPtr | createMap (const Position &pos=ZERO_POSITION()) |
| Creates an empty MapElement type ElementPtr. | |
Compound factory functions | |
| static ElementPtr | fromJSON (const std::string &in, bool preproc=false) |
| These functions will parse the given string (JSON) representation of a compound element. | |
| static ElementPtr | fromJSON (std::istream &in, bool preproc=false) |
| Creates an Element from the given input stream containing JSON formatted data. | |
| static ElementPtr | fromJSON (std::istream &in, const std::string &file_name, bool preproc=false) |
| Creates an Element from the given input stream containing JSON formatted data. | |
| static ElementPtr | fromJSON (std::istream &in, const std::string &file, int &line, int &pos, unsigned level=MAX_NESTING_LEVEL) |
| Creates an Element from the given input stream, where we keep track of the location in the stream for error reporting. | |
| static ElementPtr | fromJSONFile (const std::string &file_name, bool preproc=false) |
| Reads contents of specified file and interprets it as JSON. | |
Type name conversion functions. | |
| static std::string | typeToName (Element::types type) |
| Returns the name of the given type as a string. | |
| static Element::types | nameToType (const std::string &type_name) |
| Converts the string to the corresponding type Throws a TypeError if the name is unknown. | |
| static void | preprocess (std::istream &in, std::stringstream &out) |
| input text preprocessor. | |
Static Public Attributes | |
| static constexpr unsigned | MAX_NESTING_LEVEL = 100U |
| Maximum nesting level of Element objects. | |
Protected Member Functions | |
| Element (types t, const Position &pos=ZERO_POSITION()) | |
| Constructor. | |
Wire format factory functions | |
| static ElementPtr | fromWire (std::stringstream &in, int length) |
| These function parse the wireformat at the given stringstream (of the given length). | |
| static ElementPtr | fromWire (const std::string &s) |
| Creates an Element from the wire format in the given string. | |
| void | removeEmptyContainersRecursively (unsigned level=MAX_NESTING_LEVEL) |
| Remove all empty maps and lists from this Element and its descendants. | |
The Element class represents a piece of data, used by the command channel and configuration parts.
An Element can contain simple types (int, real, string, bool and None), and composite types (list and string->element maps)
Elements should in calling functions usually be referenced through an ElementPtr, which can be created using the factory functions Element::create() and Element::fromJSON()
Notes to developers: Element is a base class, implemented by a specific subclass for each type (IntElement, BoolElement, etc). Element does define all functions for all types, and defaults to raising a TypeError for functions that are not supported for the type in question.
| enum isc::data::Element::types : uint16_t |
The types that an Element can hold.
Some of these types need to match their associated integer from the parameter_data_type database table, so let the enums be explicitly mapped to integers, to reduce the chance of messing up.
any is a special type used in list specifications, specifying that the elements can be of any type.
| Enumerator | |
|---|---|
| integer | |
| real | |
| boolean | |
| null | |
| string | |
| bigint | |
| list | |
| map | |
| any | |
|
inlineprotected |
|
virtual |
Adds an ElementPtr to the list.
| element | The ElementPtr to add |
|
inlinevirtual |
|
inlinevirtual |
|
virtual |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Create a NullElement.
| pos | The position. |
Definition at line 299 of file data.cc.
Referenced by isc::config::HttpCommandConfig::HttpCommandConfig(), isc::subnet_cmds::SubnetCmdsImpl::addNetwork(), isc::subnet_cmds::SubnetCmdsImpl::addSubnet(), isc::stat_cmds::LeaseStatCmdsImpl::addValueRow4(), isc::stat_cmds::LeaseStatCmdsImpl::addValueRow6(), isc::yang::AdaptorSubnet::assignID(), isc::host_cache::HostCache::cacheSizeHandler(), isc::yang::AdaptorPool::canonizePool(), isc::yang::Translator::checkAndSetUserContext(), isc::yang::Translator::checkAndStringifyAndSetLeaf(), isc::config::combineCommandsLists(), isc::gss_tsig::GssTsigImpl::commandProcessed(), isc::ha::HAImpl::commandProcessed(), isc::process::DControllerBase::configGetHandler(), isc::process::DControllerBase::configHashGetHandler(), isc::process::DControllerBase::configWriteHandler(), isc::config::createAnswer(), isc::config::createCommand(), isc::ha::CommandCreator::createDHCPDisable(), isc::ha::CommandCreator::createDHCPEnable(), isc::lease_cmds::LeaseCmdsImpl::createFailedLeaseMap(), isc::ha::CommandCreator::createHAReset(), isc::ha::CommandCreator::createHeartbeat(), isc::ha::CommandCreator::createLease4Delete(), isc::ha::CommandCreator::createLease4GetPage(), isc::ha::CommandCreator::createLease4Update(), isc::ha::CommandCreator::createLease6BulkApply(), isc::ha::CommandCreator::createLease6BulkApply(), isc::ha::CommandCreator::createLease6Delete(), isc::ha::CommandCreator::createLease6GetPage(), isc::ha::CommandCreator::createLease6Update(), isc::ha::CommandCreator::createMaintenanceNotify(), isc::stat_cmds::LeaseStatCmdsImpl::createResultSet(), isc::ha::CommandCreator::createSyncCompleteNotify(), isc::subnet_cmds::SubnetCmdsImpl::delNetwork(), isc::lease_cmds::BindingVariableMgr::evaluateVariables(), isc::config::CmdResponseCreator::filterCommand(), isc::class_cmds::ClassCmdsImpl::getClassList(), isc::subnet_cmds::SubnetCmdsImpl::getNetworkList(), isc::yang::TranslatorPdPool::getPdPoolIetf6(), isc::yang::TranslatorPdPool::getPdPoolKea(), isc::yang::TranslatorPool::getPoolKea(), isc::ha::CommunicationState::getReport(), isc::agent::CtrlAgentCommandMgr::handleCommand(), isc::config::HookedCommandMgr::handleCommand(), handleLease6Cmds(), isc::yang::Translator::initializeDeserializer(), isc::lease_cmds::LeaseCmdsImpl::leaseGetPageHandler(), isc::gss_tsig::GssTsigImpl::listHandler(), isc::agent::AgentSimpleParser::parse(), isc::d2::D2CfgMgr::parse(), isc::http::PostHttpRequestJson::parseBodyAsJson(), isc::ha::HAService::processHeartbeat(), isc::ha::HAService::processMaintenanceNotify(), isc::ha::HAService::processStatusGet(), isc::yang::AdaptorHost::quoteIdentifier(), isc::host_cmds::HostCmdsImpl::reservationGetAllHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByAddressHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByHostnameHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByIdHandler(), isc::host_cmds::HostCmdsImpl::reservationGetHandler(), isc::host_cmds::HostCmdsImpl::reservationGetPageHandler(), isc::process::DControllerBase::serverTagGetHandler(), isc::yang::AdaptorOption::setCode(), isc::yang::TranslatorPdPool::setPdPoolIetf6(), isc::yang::TranslatorPdPool::setPdPoolKea(), isc::yang::TranslatorPool::setPoolIetf6(), isc::yang::AdaptorOption::setSpace(), isc::process::DControllerBase::statusGetHandler(), isc::subnet_cmds::SubnetCmdsImpl::subnetToElement(), isc::radius::RadiusAccess::terminate4Internal(), isc::radius::RadiusAccess::terminate6Internal(), isc::agent::CtrlAgentCfgContext::toElement(), isc::config::HttpCommandConfig::toElement(), isc::config::UnixCommandConfig::toElement(), isc::d2::D2CfgContext::toElement(), isc::d2::DdnsDomain::toElement(), isc::d2::DnsServerInfo::toElement(), isc::d2::TSIGKeyInfo::toElement(), isc::db::BackendSelector::toElement(), isc::db::Server::toElement(), isc::gss_tsig::DnsServer::toElement(), isc::gss_tsig::ManagedKey::toElement(), isc::hooks::HooksConfig::toElement(), isc::host_cache::toElement(), isc::http::BasicHttpAuthClient::toElement(), isc::http::BasicHttpAuthConfig::toElement(), isc::http::CfgHttpHeader::toElement(), isc::lease_cmds::BindingVariable::toElement(), isc::netconf::CfgControlSocket::toElement(), isc::netconf::CfgServer::toElement(), isc::process::ConfigBase::toElement(), isc::process::ConfigControlInfo::toElement(), isc::process::LoggingDestination::toElement(), isc::process::LoggingInfo::toElement(), isc::radius::AttrInt::toElement(), isc::radius::AttrIpAddr::toElement(), isc::radius::AttrIpv6Addr::toElement(), isc::radius::AttrIpv6Prefix::toElement(), isc::radius::AttrString::toElement(), isc::radius::AttrVsa::toElement(), isc::radius::CfgAttributes::toElement(), isc::radius::RadiusImpl::toElement(), isc::radius::RadiusService::toElement(), isc::radius::Server::toElement(), isc::class_cmds::ClassCmdsImpl::updateClass(), isc::subnet_cmds::SubnetCmdsImpl::updateSubnet(), isc::ha::HAService::verifyAsyncResponse(), and isc::process::DControllerBase::versionGetHandler().
|
static |
|
static |
|
static |
Creates an empty ListElement type ElementPtr.
| pos | A structure holding position of the data element value in the configuration string. It is used for error logging purposes. |
Definition at line 349 of file data.cc.
Referenced by isc::subnet_cmds::SubnetCmdsImpl::addNetwork(), isc::subnet_cmds::SubnetCmdsImpl::addSubnet(), isc::stat_cmds::LeaseStatCmdsImpl::addValueRow4(), isc::stat_cmds::LeaseStatCmdsImpl::addValueRow6(), isc::host_cache::HostCache::cacheGetByIdHandler(), isc::http::CfgHttpHeaderstoElement(), isc::config::combineCommandsLists(), isc::ha::HAImpl::commandProcessed(), isc::config::createCommand(), isc::ha::CommandCreator::createLease6BulkApply(), isc::ha::CommandCreator::createLease6BulkApply(), isc::stat_cmds::LeaseStatCmdsImpl::createResultSet(), isc::subnet_cmds::SubnetCmdsImpl::delNetwork(), isc::subnet_cmds::SubnetCmdsImpl::delSubnet(), isc::gss_tsig::GssTsigImpl::getAllHandler(), isc::class_cmds::ClassCmdsImpl::getClass(), isc::class_cmds::ClassCmdsImpl::getClassList(), isc::gss_tsig::GssTsigImpl::getHandler(), isc::yang::Translator::getItem(), isc::subnet_cmds::SubnetCmdsImpl::getNetwork(), isc::subnet_cmds::SubnetCmdsImpl::getNetworkList(), isc::ha::CommunicationState::getReport(), isc::subnet_cmds::SubnetCmdsImpl::getSubnet(), isc::subnet_cmds::SubnetCmdsImpl::getSubnetList(), isc::agent::CtrlAgentCommandMgr::handleCommand(), isc::config::HookedCommandMgr::handleCommand(), isc::lease_cmds::LeaseCmdsImpl::lease6BulkApplyHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetAllHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByClientIdHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByDuidHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByHostnameHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByHwAddressHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByStateHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetPageHandler(), isc::gss_tsig::GssTsigImpl::listHandler(), isc::d2::D2SimpleParser::parse(), isc::agent::CtrlAgentCommandMgr::processCommand(), isc::ha::HAService::processHeartbeat(), isc::ha::HAService::processStatusGet(), isc::host_cmds::HostCmdsImpl::reservationGetAllHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByAddressHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByHostnameHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByIdHandler(), isc::host_cmds::HostCmdsImpl::reservationGetPageHandler(), isc::yang::AdaptorConfig::sanitizeDatabase(), isc::d2::D2CfgContext::toElement(), isc::d2::DdnsDomain::toElement(), isc::d2::DdnsDomainListMgr::toElement(), isc::gss_tsig::DnsServer::toElement(), isc::hooks::HooksConfig::toElement(), isc::host_cache::HostCacheImpl::toElement(), isc::host_cache::toElement(), isc::http::BasicHttpAuthConfig::toElement(), isc::process::ConfigBase::toElement(), isc::process::ConfigControlInfo::toElement(), isc::process::LoggingInfo::toElement(), isc::radius::Attributes::toElement(), isc::radius::CfgAttributes::toElement(), isc::radius::RadiusImpl::toElement(), isc::radius::RadiusService::toElement(), isc::subnet_cmds::SubnetCmdsImpl::updateSubnet(), and isc::ha::HAService::verifyAsyncResponse().
|
static |
Creates an empty MapElement type ElementPtr.
| pos | A structure holding position of the data element value in the configuration string. It is used for error logging purposes. |
Definition at line 354 of file data.cc.
Referenced by addContext(), isc::subnet_cmds::SubnetCmdsImpl::addNetwork(), isc::subnet_cmds::SubnetCmdsImpl::addSubnet(), isc::host_cache::HostCache::cacheSizeHandler(), isc::ha::HAImpl::commandProcessed(), isc::process::DControllerBase::configHashGetHandler(), isc::process::DControllerBase::configWriteHandler(), isc::config::createAnswer(), isc::config::createCommand(), isc::ha::CommandCreator::createDHCPDisable(), isc::ha::CommandCreator::createDHCPEnable(), isc::lease_cmds::LeaseCmdsImpl::createFailedLeaseMap(), isc::ha::CommandCreator::createHAReset(), isc::ha::CommandCreator::createHeartbeat(), isc::ha::CommandCreator::createLease4GetPage(), isc::ha::CommandCreator::createLease6BulkApply(), isc::ha::CommandCreator::createLease6BulkApply(), isc::ha::CommandCreator::createLease6GetPage(), isc::ha::CommandCreator::createMaintenanceNotify(), isc::stat_cmds::LeaseStatCmdsImpl::createResultSet(), isc::ha::CommandCreator::createSyncCompleteNotify(), isc::subnet_cmds::SubnetCmdsImpl::delNetwork(), isc::subnet_cmds::SubnetCmdsImpl::delSubnet(), isc::lease_cmds::BindingVariableMgr::evaluateVariables(), isc::config::CmdResponseCreator::filterCommand(), isc::stats::StatContext::getAll(), isc::stats::StatContext::getAllGlobal(), isc::gss_tsig::GssTsigImpl::getAllHandler(), isc::class_cmds::ClassCmdsImpl::getClass(), isc::yang::TranslatorClass::getClassKea(), isc::class_cmds::ClassCmdsImpl::getClassList(), isc::yang::TranslatorConfig::getConfigControlKea(), isc::yang::TranslatorConfig::getConfigIetf6(), isc::yang::TranslatorConfig::getConfigKea4(), isc::yang::TranslatorConfig::getConfigKea6(), isc::yang::Adaptor::getContext(), isc::yang::TranslatorControlSocket::getControlSocketAuthenticationClient(), isc::yang::TranslatorControlSocket::getControlSocketHttpHeader(), isc::yang::TranslatorControlSocket::getControlSocketKea(), isc::yang::TranslatorDatabase::getDatabaseKea(), isc::yang::TranslatorConfig::getDdnsKea(), isc::yang::TranslatorConfig::getExpiredKea(), isc::yang::TranslatorConfig::getHook(), isc::yang::TranslatorHost::getHostKea(), isc::yang::TranslatorConfig::getInterfacesKea(), isc::yang::TranslatorLogger::getLoggerKea(), isc::subnet_cmds::SubnetCmdsImpl::getNetwork(), isc::subnet_cmds::SubnetCmdsImpl::getNetworkList(), isc::yang::TranslatorOptionData::getOptionDataKea(), isc::yang::TranslatorOptionDef::getOptionDefKea(), isc::yang::TranslatorLogger::getOutputOption(), isc::yang::TranslatorPdPool::getPdPoolIetf6(), isc::yang::TranslatorPdPool::getPdPoolKea(), isc::yang::TranslatorPool::getPoolIetf6(), isc::yang::TranslatorPool::getPoolKea(), isc::ha::CommunicationState::getReport(), isc::yang::TranslatorConfig::getServerKeaDhcp4(), isc::yang::TranslatorConfig::getServerKeaDhcp6(), isc::yang::TranslatorConfig::getServerKeaDhcpCommon(), isc::yang::TranslatorSharedNetwork::getSharedNetworkKea(), isc::subnet_cmds::SubnetCmdsImpl::getSubnet(), isc::yang::TranslatorSubnet::getSubnetIetf6(), isc::yang::TranslatorSubnet::getSubnetKea(), isc::subnet_cmds::SubnetCmdsImpl::getSubnetList(), isc::lease_cmds::LeaseCmdsImpl::lease6BulkApplyHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetAllHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByClientIdHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByDuidHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByHostnameHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByHwAddressHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetByStateHandler(), isc::lease_cmds::LeaseCmdsImpl::leaseGetPageHandler(), isc::gss_tsig::GssTsigImpl::listHandler(), isc::d2::D2CfgMgr::parse(), isc::host_cache::HCConfigParser::parse(), isc::lease_cmds::Lease4Parser::parse(), isc::lease_cmds::Lease6Parser::parse(), isc::ha::HAService::processHeartbeat(), isc::ha::HAService::processMaintenanceNotify(), isc::ha::HAService::processStatusGet(), isc::host_cmds::HostCmdsImpl::reservationGetAllHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByAddressHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByHostnameHandler(), isc::host_cmds::HostCmdsImpl::reservationGetByIdHandler(), isc::host_cmds::HostCmdsImpl::reservationGetPageHandler(), isc::process::DControllerBase::serverTagGetHandler(), isc::stat_cmds::LeaseStatCmdsImpl::statLease4GetHandler(), isc::stat_cmds::LeaseStatCmdsImpl::statLease6GetHandler(), isc::process::DControllerBase::statusGetHandler(), isc::subnet_cmds::SubnetCmdsImpl::subnetToElement(), isc::radius::RadiusAccess::terminate4Internal(), isc::radius::RadiusAccess::terminate6Internal(), isc::agent::CtrlAgentCfgContext::toElement(), isc::config::HttpCommandConfig::toElement(), isc::config::UnixCommandConfig::toElement(), isc::d2::D2CfgContext::toElement(), isc::d2::DdnsDomain::toElement(), isc::d2::DnsServerInfo::toElement(), isc::d2::TSIGKeyInfo::toElement(), isc::db::BackendSelector::toElement(), isc::db::Server::toElement(), isc::gss_tsig::DnsServer::toElement(), isc::gss_tsig::ManagedKey::toElement(), isc::hooks::HooksConfig::toElement(), isc::host_cache::toElement(), isc::http::BasicHttpAuthClient::toElement(), isc::http::BasicHttpAuthConfig::toElement(), isc::lease_cmds::BindingVariable::toElement(), isc::netconf::CfgControlSocket::toElement(), isc::netconf::CfgServer::toElement(), isc::netconf::NetconfConfig::toElement(), isc::process::ConfigBase::toElement(), isc::process::ConfigControlInfo::toElement(), isc::process::LoggingDestination::toElement(), isc::process::LoggingInfo::toElement(), isc::radius::AttrInt::toElement(), isc::radius::AttrIpAddr::toElement(), isc::radius::AttrIpv6Addr::toElement(), isc::radius::AttrIpv6Prefix::toElement(), isc::radius::AttrString::toElement(), isc::radius::AttrVsa::toElement(), isc::radius::CfgAttributes::toElement(), isc::radius::RadiusImpl::toElement(), isc::radius::RadiusService::toElement(), isc::radius::Server::toElement(), isc::subnet_cmds::SubnetCmdsImpl::updateSubnet(), isc::ha::HAService::verifyAsyncResponse(), and isc::process::DControllerBase::versionGetHandler().
|
inlinevirtual |
|
virtual |
|
pure virtual |
Test equality.
| other | The other element to compare with. |
| level | The maximum level of recursion. |
| BadValue | when nesting depth is more than level. |
|
virtual |
Recursively finds any data at the given identifier.
The identifier is a /-separated list of names of nested maps, with the last name being the leaf that is returned.
For instance, if you have a MapElement that contains another MapElement at the key "foo", and that second MapElement contains Another Element at key "bar", the identifier for that last element from the first is "foo/bar".
| identifier | The identifier of the element to find |
|
virtual |
See Element::find()
| identifier | The identifier of the element to find |
| t | Reference to store the resulting ElementPtr, if found. |
|
static |
These functions will parse the given string (JSON) representation of a compound element.
If there is a parse error, an exception of the type isc::data::JSONError is thrown.
Creates an Element from the given JSON string
| in | The string to parse the element from |
| preproc | specified whether preprocessing (e.g. comment removal) should be performed |
Definition at line 859 of file data.cc.
Referenced by isc::yang::Translator::checkAndGetAndJsonifyLeaf(), isc::db::PgSqlExchange::getColumnValue(), isc::db::MySqlBinding::getJSON(), isc::yang::Translator::initializeDeserializer(), isc::http::HttpResponseJson::parseBodyAsJson(), isc::http::PostHttpRequestJson::parseBodyAsJson(), and isc::test::runToElementTest().
|
static |
Creates an Element from the given input stream containing JSON formatted data.
| in | The string to parse the element from |
| preproc | specified whether preprocessing (e.g. comment removal) should be performed |
| JSONError |
|
static |
Creates an Element from the given input stream, where we keep track of the location in the stream for error reporting.
| in | The string to parse the element from. |
| file | The input file name. |
| line | A reference to the int where the function keeps track of the current line. |
| pos | A reference to the int where the function keeps track of the current position within the current line. |
| level | The maximum level of recursion. |
| JSONError |
|
static |
Creates an Element from the given input stream containing JSON formatted data.
| in | The string to parse the element from |
| file_name | specified input file name (used in error reporting) |
| preproc | specified whether preprocessing (e.g. comment removal) should be performed |
| JSONError |
| JSONError |
|
static |
Reads contents of specified file and interprets it as JSON.
| file_name | name of the file to read |
| preproc | specified whether preprocessing (e.g. comment removal) should be performed |
Definition at line 878 of file data.cc.
Referenced by isc::host_cache::HostCache::cacheLoadHandler(), and isc::process::DControllerBase::configFromFile().
|
static |
Creates an Element from the wire format in the given string.
| s | The input string. |
|
static |
These function parse the wireformat at the given stringstream (of the given length).
If there is a parse error an exception of the type isc::cc::DecodeError is raised.
Creates an Element from the wire format in the given stringstream of the given length.
| in | The input stringstream. |
| length | The length of the wireformat data in the stream. |
Definition at line 1061 of file data.cc.
Referenced by isc::config::JSONFeed::toElement().
|
virtual |
Returns the ElementPtr at the given index.
If the index is out of bounds, this function throws an std::out_of_range exception.
| i | The position of the ElementPtr to return |
|
virtual |
Returns the ElementPtr at the given key.
| name | The key of the Element to return |
|
virtual |
returns element as non-const pointer.
| i | The position of the ElementPtr to retrieve. |
|
inline |
|
inline |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
|
static |
|
static |
input text preprocessor.
This method performs preprocessing of the input stream (which is expected to contain a text version of to be parsed JSON). For now the sole supported operation is bash-style (line starting with #) comment removal, but it will be extended later to cover more cases (C, C++ style comments, file inclusions, maybe macro replacements?).
This method processes the whole input stream. It reads all contents of the input stream, filters the content and returns the result in a different stream.
| in | input stream to be preprocessed. |
| out | output stream (filtered content will be written here). |
|
virtual |
|
virtual |
Remove the ElementPtr at the given key.
| name | The key of the Element to remove |
| void isc::data::Element::removeEmptyContainersRecursively | ( | unsigned | level = MAX_NESTING_LEVEL | ) |
|
virtual |
Sets the ElementPtr at the given index.
If the index is out of bounds, this function throws an std::out_of_range exception.
| i | The position of the ElementPtr to set |
| element | The ElementPtr to set at the position |
|
virtual |
Sets the ElementPtr at the given key.
| name | The key of the Element to set |
| element | The ElementPtr to set at the given key. |
|
virtual |
|
virtual |
|
inline |
|
virtual |
|
inline |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
| std::string isc::data::Element::str | ( | ) | const |
Returns a string representing the Element and all its child elements.
The resulting string will contain the Element in JSON format. Based on toJSON.
|
inlinevirtual |
|
pure virtual |
Converts the Element to JSON format and appends it to the given output stream.
| ss | The output stream where to append the JSON format. |
| level | The maximum level of recursion. |
| BadValue | when nesting depth is more than level. |
| std::string isc::data::Element::toWire | ( | ) | const |
| void isc::data::Element::toWire | ( | std::ostream & | out | ) | const |
|
static |
Returns the name of the given type as a string.
| type | The type to return the name of. |
Definition at line 709 of file data.cc.
Referenced by isc::config::answerToText(), load(), isc::radius::RadiusServiceParser::parse(), isc::config::parseAnswer(), isc::config::parseAnswerText(), isc::config::parseCommand(), isc::config::parseCommandWithArgs(), and isc::host_cmds::HostCmdsImpl::reservationUpdateHandler().
|
inlinestatic |
Returns Position object with line_ and pos_ set to 0, and with an empty file name.
The object containing two zeros is a default for most of the methods creating Element objects. The returned value is static so as it is not created every time the function with the default position argument is called.
|
staticconstexpr |
Maximum nesting level of Element objects.
Many methods and functions perform a recursive walk on an element containing lists or/and maps. This recursion is limited to using an allowed level of nesting argument which is decremented at each recursive call until it reaches 0. This was extended to recursive parsing of a JSON text as stack overflows were reported with excessive recursion on specially crafted input. This constant is the default allowed level of nesting, its value is arbitrary (but enough for all realistic cases) and used before limiting recursion in all recursive methods/functions.