![]() |
Kea 2.2.0
|
A translator class for converting pools between YANG and JSON. More...
#include <translator_pool.h>
Public Member Functions | |
TranslatorPools (sysrepo::S_Session session, const std::string &model) | |
Constructor. More... | |
virtual | ~TranslatorPools () |
Destructor. More... | |
isc::data::ElementPtr | getPools (const std::string &xpath) |
Get and translate pools from YANG to JSON. More... | |
void | setPools (const std::string &xpath, isc::data::ConstElementPtr elem) |
Translate and set (address) pools from JSON to YANG. More... | |
![]() | |
TranslatorPool (sysrepo::S_Session session, const std::string &model) | |
Constructor. More... | |
virtual | ~TranslatorPool () |
Destructor. More... | |
isc::data::ElementPtr | getPool (const std::string &xpath) |
Get and translate a pool from YANG to JSON. More... | |
void | setPool (const std::string &xpath, isc::data::ConstElementPtr elem) |
Translate and set (address) pool from JSON to YANG. More... | |
![]() | |
TranslatorOptionDataList (sysrepo::S_Session session, const std::string &model) | |
Constructor. More... | |
virtual | ~TranslatorOptionDataList () |
Destructor. More... | |
isc::data::ConstElementPtr | getOptionDataList (const std::string &xpath) |
Get and translate option data list from YANG to JSON. More... | |
void | setOptionDataList (const std::string &xpath, isc::data::ConstElementPtr elem) |
Translate and set option data list from JSON to YANG. More... | |
![]() | |
TranslatorOptionData (sysrepo::S_Session session, const std::string &model) | |
Constructor. More... | |
virtual | ~TranslatorOptionData () |
Destructor. More... | |
isc::data::ElementPtr | getOptionData (const std::string &xpath) |
Get and translate an option data from YANG to JSON. More... | |
void | setOptionData (const std::string &xpath, isc::data::ConstElementPtr elem) |
Translate and set option data from JSON to YANG. More... | |
![]() | |
TranslatorBasic (sysrepo::S_Session session, const std::string &model) | |
Constructor. More... | |
virtual | ~TranslatorBasic () |
Destructor. More... | |
void | checkAndGetLeaf (isc::data::ElementPtr &storage, const std::string &xpath, const std::string &name) |
Retrieves an item and stores it in the specified storage. More... | |
void | checkAndSetLeaf (isc::data::ConstElementPtr const &from, std::string const &xpath, std::string const &name, sr_type_t const type) |
Get an element from given ElementPtr node and set it in sysrepo at given xpath. More... | |
void | delItem (const std::string &xpath) |
Delete basic value from YANG. More... | |
template<typename functor_t > | |
void | forAll (std::string const &xpath, functor_t f) |
Run a function for a node and all its children. More... | |
isc::data::ElementPtr | getItem (const std::string &xpath) |
Get and translate basic value from YANG to JSON. More... | |
isc::data::ElementPtr | getItems (const std::string &xpath) |
Get and translate a list of basic values from YANG to JSON. More... | |
template<typename T > | |
isc::data::ElementPtr | getList (std::string const &xpath, T &t, isc::data::ElementPtr(T::*f)(std::string const &xpath)) |
Retrieve a list as ElementPtr from sysrepo from a certain xpath. More... | |
sysrepo::S_Vals | getValuesFromItems (std::string const &xpath) |
Get the values of all siblings at a certain xpath. More... | |
void | setItem (const std::string &xpath, isc::data::ConstElementPtr elem, sr_type_t type) |
Translate and set basic value from JSON to YANG. More... | |
Protected Member Functions | |
isc::data::ElementPtr | getPoolsIetf (const std::string &xpath) |
getPools for ietf-dhcpv6-server. More... | |
isc::data::ElementPtr | getPoolsKea (const std::string &xpath) |
getPools for kea-dhcp[46]-server. More... | |
void | setPoolsByAddresses (const std::string &xpath, isc::data::ConstElementPtr elem) |
setPools using address pair. More... | |
void | setPoolsById (const std::string &xpath, isc::data::ConstElementPtr elem) |
setPools using pool-id. More... | |
![]() | |
isc::data::ElementPtr | getPoolIetf6 (const std::string &xpath) |
getPool for ietf-dhcpv6-server. More... | |
isc::data::ElementPtr | getPoolKea (const std::string &xpath) |
getPool for kea-dhcp[46]-server. More... | |
void | setPoolIetf6 (const std::string &xpath, isc::data::ConstElementPtr elem) |
setPool for ietf-dhcpv6-server. More... | |
void | setPoolKea (const std::string &xpath, isc::data::ConstElementPtr elem) |
setPool for kea-dhcp[46]-server. More... | |
![]() | |
isc::data::ConstElementPtr | getOptionDataListKea (const std::string &xpath) |
getOptionDataList for kea-dhcp[46]. More... | |
void | setOptionDataListKea (const std::string &xpath, isc::data::ConstElementPtr elem) |
setOptionDataList for kea-dhcp[46]. More... | |
![]() | |
isc::data::ElementPtr | getOptionDataKea (const std::string &xpath) |
getOptionData JSON for kea-dhcp[46]. More... | |
void | setOptionDataKea (const std::string &xpath, isc::data::ConstElementPtr elem) |
setOptionData for kea-dhcp[46]. More... | |
Additional Inherited Members | |
![]() | |
static void | getAddresses (const std::string &prefix, std::string &start_address, std::string &end_address) |
Get start and end addresses from prefix. More... | |
![]() | |
static sysrepo::S_Val | value (isc::data::ConstElementPtr elem, sr_type_t type) |
Translate basic value from JSON to YANG. More... | |
static isc::data::ElementPtr | value (sysrepo::S_Val s_val) |
Translate basic value from YANG to JSON. More... | |
![]() | |
std::string | model_ |
The model. More... | |
sysrepo::S_Session | session_ |
The sysrepo session. More... | |
A translator class for converting pools between YANG and JSON.
Currently supports on kea-dhcp[46]-server and partially ietf-dhcpv6-server.
Definition at line 195 of file translator_pool.h.
isc::yang::TranslatorPools::TranslatorPools | ( | sysrepo::S_Session | session, |
const std::string & | model | ||
) |
Constructor.
session | Sysrepo session. |
model | Model name. |
Definition at line 269 of file translator_pool.cc.
|
virtual |
Destructor.
Definition at line 276 of file translator_pool.cc.
ElementPtr isc::yang::TranslatorPools::getPools | ( | const std::string & | xpath | ) |
Get and translate pools from YANG to JSON.
xpath | The xpath of the pool list. |
SysrepoError | when sysrepo raises an error. |
Definition at line 280 of file translator_pool.cc.
References getPoolsIetf(), getPoolsKea(), isc_throw, isc::yang::TranslatorBasic::model_, and isc::Exception::what().
Referenced by isc::yang::TranslatorSubnet::getSubnetIetf6(), and isc::yang::TranslatorSubnet::getSubnetKea().
|
protected |
getPools for ietf-dhcpv6-server.
xpath | The xpath of the pool list. |
Definition at line 298 of file translator_pool.cc.
References isc::yang::TranslatorPool::getPool().
Referenced by getPools().
|
protected |
getPools for kea-dhcp[46]-server.
xpath | The xpath of the pool list. |
Definition at line 304 of file translator_pool.cc.
References isc::yang::TranslatorPool::getPool().
Referenced by getPools().
void isc::yang::TranslatorPools::setPools | ( | const std::string & | xpath, |
isc::data::ConstElementPtr | elem | ||
) |
Translate and set (address) pools from JSON to YANG.
xpath | The xpath of the pool list. |
elem | The JSON element. |
Definition at line 310 of file translator_pool.cc.
References isc_throw, isc::yang::TranslatorBasic::model_, setPoolsByAddresses(), setPoolsById(), and isc::Exception::what().
Referenced by isc::yang::TranslatorSubnet::setSubnetIetf6().
|
protected |
setPools using address pair.
xpath | The xpath of the pool list. |
elem | The JSON element. |
BadValue | on a pool without a prefix. |
Definition at line 339 of file translator_pool.cc.
References isc::yang::TranslatorPool::getAddresses(), isc_throw, and isc::yang::TranslatorPool::setPool().
Referenced by setPools().
|
protected |
setPools using pool-id.
xpath | The xpath of the pool list. |
elem | The JSON element. |
Definition at line 329 of file translator_pool.cc.
References isc::yang::TranslatorPool::setPool().
Referenced by setPools().