Kea  1.5.0
netconf_controller.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_CONTROLLER_H
8 #define NETCONF_CONTROLLER_H
9 
11 #include <process/d_controller.h>
12 
13 namespace isc {
14 namespace netconf {
15 
22 public:
23 
32 
34  virtual ~NetconfController();
35 
38 
41  static const char* netconf_app_name_;
42 
45  static const char* netconf_bin_name_;
46 
52  parseFile(const std::string& name);
53 
59  virtual void processSignal(int signum);
60 
61 private:
62 
72  virtual process::DProcessBase* createProcess();
73 
77 };
78 
79 // @Defines a shared pointer to NetconfController
80 typedef boost::shared_ptr<NetconfController> NetconfControllerPtr;
81 
82 } // namespace isc::netconf
83 } // namespace isc
84 
85 #endif // NETCONF_CONTROLLER_H
isc::netconf::NetconfProcessPtr
boost::shared_ptr< NetconfProcess > NetconfProcessPtr
Defines a shared pointer to NetconfProcess.
Definition: netconf_process.h:103
isc::process::DControllerBase
Application Controller.
Definition: d_controller.h:104
isc::netconf::NetconfController::getNetconfProcess
NetconfProcessPtr getNetconfProcess()
Returns pointer to an instance of the underlying process object.
Definition: netconf_controller.cc:67
netconf_process.h
isc::netconf::NetconfController::netconf_app_name_
static const char * netconf_app_name_
Defines the application name, this is passed into base class and appears in log statements.
Definition: netconf_controller.h:41
isc::netconf::NetconfController::parseFile
isc::data::ConstElementPtr parseFile(const std::string &name)
Parses the configuration file using Netconf::ParserContext (bison)
Definition: netconf_controller.cc:54
isc
Defines the logger used by the top-level component of kea-dhcp-ddns.
Definition: agent_parser.cc:144
isc::netconf::NetconfController::netconf_bin_name_
static const char * netconf_bin_name_
Defines the executable name.
Definition: netconf_controller.h:45
isc::process::DControllerBasePtr
boost::shared_ptr< DControllerBase > DControllerBasePtr
Definition: d_controller.h:78
isc::netconf::NetconfControllerPtr
boost::shared_ptr< NetconfController > NetconfControllerPtr
Definition: netconf_controller.h:80
isc::netconf::NetconfController::processSignal
virtual void processSignal(int signum)
Redefined application-level signal processing method.
Definition: netconf_controller.cc:38
isc::process::DProcessBase
Application Process Interface.
Definition: d_process.h:67
isc::netconf::NetconfController::instance
static process::DControllerBasePtr & instance()
Static singleton instance method.
Definition: netconf_controller.cc:26
d_controller.h
isc::netconf::NetconfController
Process Controller for Netconf Process.
Definition: netconf_controller.h:21
isc::data::ConstElementPtr
boost::shared_ptr< const Element > ConstElementPtr
Definition: data.h:23
isc::netconf::NetconfController::~NetconfController
virtual ~NetconfController()
Destructor.
Definition: netconf_controller.cc:63