Kea  1.5.0
adaptor_pool.h
Go to the documentation of this file.
1 // Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef ISC_ADAPTOR_POOL_H
8 #define ISC_ADAPTOR_POOL_H 1
9 
10 #include <yang/adaptor.h>
11 #include <list>
12 
13 namespace isc {
14 namespace yang {
15 
28 class AdaptorPool {
29 public:
30 
32  AdaptorPool();
33 
35  virtual ~AdaptorPool();
36 
41  static void canonizePool(isc::data::ElementPtr pool);
42 
53  static void fromSubnet(const std::string& model,
56 
71  static void toSubnet(const std::string& model,
72  isc::data::ElementPtr subnet,
74 
75 protected:
84 
91  static void toSubnetIetf6(isc::data::ElementPtr subnet,
93 };
94 
95 }; // end of namespace isc::yang
96 }; // end of namespace isc
97 
98 #endif // ISC_ADAPTOR_POOL_H
isc::yang::AdaptorPool
JSON adaptor for pools between canonical Kea and YANG models.
Definition: adaptor_pool.h:28
isc::yang::AdaptorPool::toSubnetIetf6
static void toSubnetIetf6(isc::data::ElementPtr subnet, isc::data::ConstElementPtr pools)
To subnet for ietf-dhcpv6-server.
Definition: adaptor_pool.cc:77
adaptor.h
isc
Defines the logger used by the top-level component of kea-dhcp-ddns.
Definition: agent_parser.cc:144
isc::yang::AdaptorPool::AdaptorPool
AdaptorPool()
Constructor.
Definition: adaptor_pool.cc:16
isc::yang::AdaptorPool::canonizePool
static void canonizePool(isc::data::ElementPtr pool)
Canonize pool.
Definition: adaptor_pool.cc:23
isc::yang::AdaptorPool::toSubnet
static void toSubnet(const std::string &model, isc::data::ElementPtr subnet, isc::data::ConstElementPtr pools)
Move parameters from pools to the subnet.
Definition: adaptor_pool.cc:65
isc::yang::AdaptorPool::fromSubnet
static void fromSubnet(const std::string &model, isc::data::ConstElementPtr subnet, isc::data::ConstElementPtr pools)
Moves parameters from subnets to pools.
Definition: adaptor_pool.cc:45
isc::data::ElementPtr
boost::shared_ptr< Element > ElementPtr
Definition: data.h:20
isc::yang::AdaptorPool::~AdaptorPool
virtual ~AdaptorPool()
Destructor.
Definition: adaptor_pool.cc:19
isc::yang::AdaptorPool::fromSubnetIetf6
static void fromSubnetIetf6(isc::data::ConstElementPtr subnet, isc::data::ConstElementPtr pools)
From subnets for ietf-dhcpv6-server.
Definition: adaptor_pool.cc:57
isc::data::ConstElementPtr
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:23