Kea 2.7.1
netconf_controller.h
Go to the documentation of this file.
1// Copyright (C) 2018-2024 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
12
13namespace isc {
14namespace netconf {
15
22public:
31
33 virtual ~NetconfController() = default;
34
37
40 static const char* netconf_app_name_;
41
44 static const char* netconf_bin_name_;
45
51 parseFile(const std::string& name) override final;
52
58 void processSignal(int signum) override final;
59
60private:
70 process::DProcessBase* createProcess() override final;
71
75}; // NetconfController
76
77// @Defines a shared pointer to NetconfController
78using NetconfControllerPtr = std::shared_ptr<NetconfController>;
79
80} // namespace netconf
81} // namespace isc
82
83#endif // NETCONF_CONTROLLER_H
Process Controller for Netconf Process.
static process::DControllerBasePtr & instance()
Static singleton instance method.
NetconfProcessPtr getNetconfProcess()
Returns pointer to an instance of the underlying process object.
static const char * netconf_app_name_
Defines the application name, this is passed into base class and appears in log statements.
void processSignal(int signum) override final
Redefined application-level signal processing method.
virtual ~NetconfController()=default
Destructor.
static const char * netconf_bin_name_
Defines the executable name.
isc::data::ConstElementPtr parseFile(const std::string &name) override final
Parses the configuration file using Netconf::ParserContext (bison)
Application Controller.
Application Process Interface.
Definition d_process.h:75
boost::shared_ptr< const Element > ConstElementPtr
Definition data.h:29
boost::shared_ptr< NetconfProcess > NetconfProcessPtr
Defines a shared pointer to NetconfProcess.
std::shared_ptr< NetconfController > NetconfControllerPtr
boost::shared_ptr< DControllerBase > DControllerBasePtr
Defines the logger used by the top-level component of kea-lfc.