Kea 3.1.0
daemon.h
Go to the documentation of this file.
1// Copyright (C) 2014-2025 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 DAEMON_H
8#define DAEMON_H
9
10#include <cc/data.h>
11#include <process/config_base.h>
12#include <util/pid_file.h>
14
15#include <boost/noncopyable.hpp>
16#include <boost/date_time/posix_time/posix_time.hpp>
17
18#include <list>
19#include <string>
20
21namespace isc {
22namespace process {
23
25class DaemonPIDExists : public Exception {
26public:
27 DaemonPIDExists(const char* file, size_t line, const char* what) :
28 isc::Exception(file, line, what) { }
29};
30
48class Daemon : public boost::noncopyable {
49
50public:
55 Daemon();
56
61 virtual ~Daemon();
62
71 virtual void cleanup();
72
74 virtual void shutdown();
75
85 static void loggerInit(const char* log_name, bool verbose);
86
97 static void configureLogger(const isc::data::ConstElementPtr& log_config,
98 const isc::process::ConfigPtr& storage);
99
107 static void setVerbose(const bool verbose);
108
112 static bool getVerbose();
113
127 static std::string getVersion(bool extended);
128
131 std::string getConfigFile() const;
132
136 void setConfigFile(const std::string& config_file);
137
140 void checkConfigFile() const;
141
149 void checkWriteConfigFile(std::string& file);
150
166 virtual size_t
167 writeConfigFile(const std::string& config_file,
169
173 static std::string getProcName();
174
177 static void setProcName(const std::string& proc_name);
178
181 std::string getPIDFileDir() const;
182
186 void setPIDFileDir(const std::string& pid_file_dir);
187
190 std::string getPIDFileName() const;
191
200 void setPIDFileName(const std::string& pid_file_name);
201
213 void createPIDFile(int pid = 0);
214
216 static std::string getDefaultLoggerName() {
217 return (default_logger_name_);
218 }
219
224 static void setDefaultLoggerName(const std::string& logger) {
225 default_logger_name_ = logger;
226 }
227
230 return (exit_value_);
231 }
232
236 void setExitValue(int value) {
237 exit_value_ = value;
238 }
239
248 virtual std::list<std::list<std::string>> jsonPathsToRedact() const;
249
258
259protected:
260
267
269 std::string makePIDFileName() const;
270
272 boost::posix_time::ptime start_;
273
274private:
276 std::string config_file_;
277
279 static std::string proc_name_;
280
283 std::string pid_file_dir_;
284
286 isc::util::PIDFilePtr pid_file_;
287
289 static bool verbose_;
290
292 static std::string default_logger_name_;
293
295 bool am_file_author_;
296
299 int exit_value_;
300};
301
302} // namespace process
303} // namespace isc
304
305#endif
Exception(const char *file, size_t line, const char *what)
Constructor for a given type for exceptions with file name and file line number.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
DaemonPIDExists(const char *file, size_t line, const char *what)
Definition daemon.h:27
std::string getConfigFile() const
Returns config file name.
Definition daemon.cc:104
virtual size_t writeConfigFile(const std::string &config_file, isc::data::ConstElementPtr cfg=isc::data::ConstElementPtr()) const
Writes current configuration to specified file.
Definition daemon.cc:250
static std::string getVersion(bool extended)
returns Kea version on stdout and exits.
Definition daemon.cc:99
static void setVerbose(const bool verbose)
Sets or clears verbose mode.
Definition daemon.cc:79
std::string getPIDFileName() const
Returns the current PID file name.
Definition daemon.cc:171
virtual std::list< std::list< std::string > > jsonPathsToRedact() const
Return a list of all paths that contain passwords or secrets.
Definition daemon.cc:272
Daemon()
Default constructor.
Definition daemon.cc:41
virtual void shutdown()
Initiates shutdown procedure for the whole server.
Definition daemon.cc:63
std::string getPIDFileDir() const
Returns the directory used when forming default PID file name.
Definition daemon.cc:161
virtual ~Daemon()
Destructor.
Definition daemon.cc:54
isc::asiolink::IOSignalSetPtr signal_set_
A pointer to the object installing custom signal handlers.
Definition daemon.h:266
static void configureLogger(const isc::data::ConstElementPtr &log_config, const isc::process::ConfigPtr &storage)
Configures logger.
Definition daemon.cc:66
boost::posix_time::ptime start_
Timestamp of the start of the daemon.
Definition daemon.h:272
static bool getVerbose()
Returns if running in verbose mode.
Definition daemon.cc:84
static void loggerInit(const char *log_name, bool verbose)
Initializes logger.
Definition daemon.cc:88
void checkWriteConfigFile(std::string &file)
Checks the to-be-written configuration file name.
Definition daemon.cc:129
static std::string getProcName()
returns the process name This value is used as when forming the default PID file name
Definition daemon.cc:151
void setExitValue(int value)
Sets the exit value.
Definition daemon.h:236
virtual void cleanup()
Performs final deconfiguration.
Definition daemon.cc:60
isc::data::ConstElementPtr redactConfig(isc::data::ConstElementPtr const &config)
Redact a configuration.
Definition daemon.cc:278
void checkConfigFile() const
Checks the configuration file name.
Definition daemon.cc:114
static void setDefaultLoggerName(const std::string &logger)
Sets the default logger name.
Definition daemon.h:224
void setPIDFileName(const std::string &pid_file_name)
Sets PID file name.
Definition daemon.cc:180
static void setProcName(const std::string &proc_name)
Sets the process name.
Definition daemon.cc:156
int getExitValue()
Fetches the exit value.
Definition daemon.h:229
void createPIDFile(int pid=0)
Creates the PID file.
Definition daemon.cc:224
void setPIDFileDir(const std::string &pid_file_dir)
Sets the PID file directory.
Definition daemon.cc:166
static std::string getDefaultLoggerName()
Returns default logger name.
Definition daemon.h:216
std::string makePIDFileName() const
Manufacture the pid file name.
Definition daemon.cc:195
void setConfigFile(const std::string &config_file)
Sets the configuration file name.
Definition daemon.cc:109
boost::shared_ptr< const Element > ConstElementPtr
Definition data.h:29
boost::shared_ptr< ConfigBase > ConfigPtr
Non-const pointer to the ConfigBase.
boost::shared_ptr< PIDFile > PIDFilePtr
Defines a shared pointer to a PIDFile.
Definition pid_file.h:92
Defines the logger used by the top-level component of kea-lfc.