Kea  1.9.9-git
bin/netconf/simple_parser.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 NETCONF_SIMPLE_PARSER_H
8 #define NETCONF_SIMPLE_PARSER_H
9 
10 #include <cc/simple_parser.h>
12 
13 namespace isc {
14 namespace netconf {
15 
24 public:
31  static size_t setAllDefaults(const isc::data::ElementPtr& global);
32 
39  static size_t deriveParameters(isc::data::ConstElementPtr global);
40 
48  static size_t setServerDefaults(const std::string name,
50 
58  void parse(const NetconfConfigPtr& ctx,
59  const isc::data::ConstElementPtr& config,
60  bool check_only);
61 
62  // see simple_parser.cc for comments for those parameters
70 };
71 
72 };
73 };
74 #endif
static size_t setAllDefaults(const isc::data::ElementPtr &global)
Sets all defaults for Netconf configuration.
static size_t setServerDefaults(const std::string name, isc::data::ConstElementPtr server)
Adds default values to a Managed server entry.
std::vector< SimpleDefault > SimpleDefaults
This specifies all default values in a given scope (e.g. a subnet).
static const isc::data::SimpleDefaults D2_DEFAULTS
Supplies defaults for d2 managed server.
boost::shared_ptr< Element > ElementPtr
Definition: data.h:20
static const isc::data::SimpleDefaults DHCP4_DEFAULTS
Supplies defaults for dhcp4 managed server.
void parse(const NetconfConfigPtr &ctx, const isc::data::ConstElementPtr &config, bool check_only)
Parses the netconf configuration.
static const isc::data::ParamsList INHERIT_TO_SERVERS
List of parameters that can be inherited to managed-servers scope.
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:23
static const isc::data::SimpleDefaults DHCP6_DEFAULTS
Supplies defaults for dhcp6 managed server.
Defines the logger used by the top-level component of kea-dhcp-ddns.
std::vector< std::string > ParamsList
This defines a list of all parameters that are derived (or inherited) between contexts.
static const isc::data::SimpleDefaults CTRL_SOCK_DEFAULTS
Supplies defaults for control-socket elements.
static const isc::data::SimpleDefaults NETCONF_DEFAULTS
This table defines default values for global options.
static const isc::data::SimpleDefaults CA_DEFAULTS
Supplies defaults for ca managed server.
static size_t deriveParameters(isc::data::ConstElementPtr global)
Derives (inherits) all parameters from global to more specific scopes.
boost::shared_ptr< NetconfConfig > NetconfConfigPtr
Pointer to a configuration context.