![]() |
Kea 2.2.0
|
Prefix delegation pool translation between YANG and JSON. More...
#include <translator_pd_pool.h>
Public Member Functions | |
TranslatorPdPool (sysrepo::S_Session session, const std::string &model) | |
Constructor. More... | |
virtual | ~TranslatorPdPool () |
Destructor. More... | |
isc::data::ElementPtr | getPdPool (const std::string &xpath) |
Get and translate a pd-pool from YANG to JSON. More... | |
void | setPdPool (const std::string &xpath, isc::data::ConstElementPtr elem) |
Translate and set pd-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 | getPdPoolIetf6 (const std::string &xpath) |
getPdPool for ietf-dhcpv6-server. More... | |
isc::data::ElementPtr | getPdPoolKea (const std::string &xpath) |
getPdPool for kea-dhcp6-server. More... | |
void | setPdPoolIetf6 (const std::string &xpath, isc::data::ConstElementPtr elem) |
setPdPool for ietf-dhcpv6-server. More... | |
void | setPdPoolKea (const std::string &xpath, isc::data::ConstElementPtr elem) |
setPdPool for kea-dhcp6-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 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... | |
Prefix delegation pool translation between YANG and JSON.
JSON syntax for kea-dhcp6-server is:
YANG syntax for ietf-dhcpv6-server is with pool-id as the key.
YANG syntax for kea-dhcp6-server is with prefix as the key.
An example in JSON and YANG formats:
A translator class for converting a pd-pool between YANG and JSON.
Currently supported models:
Definition at line 117 of file translator_pd_pool.h.
isc::yang::TranslatorPdPool::TranslatorPdPool | ( | sysrepo::S_Session | session, |
const std::string & | model | ||
) |
Constructor.
session | Sysrepo session. |
model | Model name. |
Definition at line 22 of file translator_pd_pool.cc.
|
virtual |
Destructor.
Definition at line 28 of file translator_pd_pool.cc.
ElementPtr isc::yang::TranslatorPdPool::getPdPool | ( | const std::string & | xpath | ) |
Get and translate a pd-pool from YANG to JSON.
xpath | The xpath of the pd-pool. |
SysrepoError | when sysrepo raises an error. |
BadValue | on pd-pool without well formed prefix. |
Definition at line 32 of file translator_pd_pool.cc.
References getPdPoolIetf6(), getPdPoolKea(), isc_throw, isc::yang::TranslatorBasic::model_, and isc::Exception::what().
Referenced by isc::yang::TranslatorPdPools::getPdPoolsCommon().
|
protected |
getPdPool for ietf-dhcpv6-server.
xpath | The xpath of the pd-pool. |
SysrepoError | when sysrepo raises an error. |
Definition at line 49 of file translator_pd_pool.cc.
References isc::yang::TranslatorBasic::getItem(), and isc_throw.
Referenced by getPdPool().
|
protected |
getPdPool for kea-dhcp6-server.
xpath | The xpath of the pd-pool. |
SysrepoError | when sysrepo raises an error. |
Definition at line 102 of file translator_pd_pool.cc.
References isc::yang::TranslatorBasic::getItem(), isc::yang::TranslatorBasic::getItems(), isc::yang::TranslatorOptionDataList::getOptionDataList(), and isc_throw.
Referenced by getPdPool().
void isc::yang::TranslatorPdPool::setPdPool | ( | const std::string & | xpath, |
isc::data::ConstElementPtr | elem | ||
) |
Translate and set pd-pool from JSON to YANG.
xpath | The xpath of the pd-pool. |
elem | The JSON element. |
Definition at line 181 of file translator_pd_pool.cc.
References isc_throw, isc::yang::TranslatorBasic::model_, setPdPoolIetf6(), setPdPoolKea(), and isc::Exception::what().
Referenced by isc::yang::TranslatorPdPools::setPdPoolsId(), and isc::yang::TranslatorPdPools::setPdPoolsPrefix().
|
protected |
setPdPool for ietf-dhcpv6-server.
xpath | The xpath of the pd-pool. |
elem | The JSON element. |
BadValue | on pd-pool without prefix or prefix length. |
Definition at line 199 of file translator_pd_pool.cc.
References isc_throw, and isc::yang::TranslatorBasic::setItem().
Referenced by setPdPool().
|
protected |
setPdPool for kea-dhcp6-server.
xpath | The xpath of the pd-pool. |
elem | The JSON element. |
Definition at line 241 of file translator_pd_pool.cc.
References isc::yang::Adaptor::getContext(), isc::yang::TranslatorBasic::setItem(), and isc::yang::TranslatorOptionDataList::setOptionDataList().
Referenced by setPdPool().