2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 12:06:41 +02:00
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#ifndef APPLICATION_H
|
|
|
|
#define APPLICATION_H
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "base/application-ti.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2018-08-09 15:37:23 +02:00
|
|
|
#include "base/configuration.hpp"
|
2018-01-04 18:24:45 +01:00
|
|
|
#include <iosfwd>
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2018-01-04 18:24:45 +01:00
|
|
|
class ThreadPool;
|
|
|
|
|
2012-05-15 10:58:14 +02:00
|
|
|
/**
|
|
|
|
* Abstract base class for applications.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
2012-05-15 10:58:14 +02:00
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class Application : public ObjectImpl<Application> {
|
2012-05-21 12:53:38 +02:00
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(Application);
|
2012-05-21 12:53:38 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static boost::signals2::signal<void ()> OnReopenLogs;
|
2014-05-22 11:22:30 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
~Application() override;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void InitializeBase();
|
|
|
|
static void UninitializeBase();
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static Application::Ptr GetInstance();
|
2012-05-21 12:53:38 +02:00
|
|
|
|
2014-08-04 16:43:34 +02:00
|
|
|
static void Exit(int rc);
|
2014-08-04 16:26:17 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int Run();
|
2012-05-15 10:58:14 +02:00
|
|
|
|
2012-09-17 14:47:43 +02:00
|
|
|
/**
|
|
|
|
* Starts the application.
|
|
|
|
*
|
|
|
|
* @returns The exit code of the application.
|
|
|
|
*/
|
2018-01-04 04:25:35 +01:00
|
|
|
virtual int Main() = 0;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void SetResourceLimits();
|
2013-12-05 11:04:47 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static int GetArgC();
|
2013-02-14 16:18:58 +01:00
|
|
|
static void SetArgC(int argc);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static char **GetArgV();
|
2013-02-14 16:18:58 +01:00
|
|
|
static void SetArgV(char **argv);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void InstallExceptionHandlers();
|
2013-01-30 11:51:15 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void RequestShutdown();
|
|
|
|
static void RequestRestart();
|
|
|
|
static void RequestReopenLogs();
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2019-07-15 13:59:17 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
static void SetUmbrellaProcess(pid_t pid);
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static bool IsShuttingDown();
|
2019-05-03 12:44:29 +02:00
|
|
|
static bool IsRestarting();
|
2016-08-17 19:24:22 +02:00
|
|
|
|
2014-05-23 11:56:30 +02:00
|
|
|
static void SetDebuggingSeverity(LogSeverity severity);
|
2018-01-04 04:25:35 +01:00
|
|
|
static LogSeverity GetDebuggingSeverity();
|
2014-05-23 11:56:30 +02:00
|
|
|
|
2018-01-04 18:24:45 +01:00
|
|
|
void UpdatePidFile(const String& filename);
|
|
|
|
void UpdatePidFile(const String& filename, pid_t pid);
|
2014-05-18 16:23:16 +02:00
|
|
|
void ClosePidFile(bool unlink);
|
2014-04-14 00:16:48 +02:00
|
|
|
static pid_t ReadPidFile(const String& filename);
|
2012-07-12 17:03:34 +02:00
|
|
|
|
2012-08-14 12:51:51 +02:00
|
|
|
static String GetExePath(const String& argv0);
|
|
|
|
|
2017-08-22 10:26:23 +02:00
|
|
|
#ifdef _WIN32
|
2018-01-04 04:25:35 +01:00
|
|
|
static bool IsProcessElevated();
|
2017-08-22 10:26:23 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static int GetDefaultRLimitFiles();
|
|
|
|
static int GetDefaultRLimitProcesses();
|
|
|
|
static int GetDefaultRLimitStack();
|
2017-06-21 11:36:14 +02:00
|
|
|
|
2019-04-15 16:56:30 +02:00
|
|
|
static double GetReloadTimeout();
|
2018-01-16 12:58:45 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static ThreadPool& GetTP();
|
2013-02-15 06:47:26 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static String GetAppVersion();
|
|
|
|
static String GetAppSpecVersion();
|
2013-10-09 08:46:10 +02:00
|
|
|
|
2018-08-10 10:15:41 +02:00
|
|
|
static String GetAppEnvironment();
|
|
|
|
static void SetAppEnvironment(const String& name);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static double GetStartTime();
|
2013-10-26 09:41:45 +02:00
|
|
|
static void SetStartTime(double ts);
|
|
|
|
|
2020-01-31 16:49:49 +01:00
|
|
|
static double GetUptime();
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static bool GetScriptDebuggerEnabled();
|
2015-11-05 14:29:45 +01:00
|
|
|
static void SetScriptDebuggerEnabled(bool enabled);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static double GetLastReloadFailed();
|
2016-05-11 16:07:28 +02:00
|
|
|
static void SetLastReloadFailed(double ts);
|
|
|
|
|
2014-12-20 15:29:04 +01:00
|
|
|
static void DisplayInfoMessage(std::ostream& os, bool skipVersion = false);
|
2014-07-23 09:30:56 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnConfigLoaded() override;
|
|
|
|
void Stop(bool runtimeRemoved) override;
|
2013-08-20 11:06:04 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void RunEventLoop();
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
pid_t StartReloadProcess();
|
2014-04-27 21:47:25 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
virtual void OnShutdown();
|
2014-08-04 16:26:17 +02:00
|
|
|
|
2018-01-11 07:08:09 +01:00
|
|
|
void ValidateName(const Lazy<String>& lvalue, const ValidationUtils& utils) final;
|
2015-09-22 18:18:29 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2014-11-08 21:17:16 +01:00
|
|
|
static Application::Ptr m_Instance; /**< The application instance. */
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2017-12-19 15:50:05 +01:00
|
|
|
static bool m_ShuttingDown; /**< Whether the application is in the process of shutting down. */
|
2014-05-17 23:07:10 +02:00
|
|
|
static bool m_RequestRestart; /**< A restart was requested through SIGHUP */
|
2017-12-19 15:50:05 +01:00
|
|
|
static pid_t m_ReloadProcess; /**< The PID of a subprocess doing a reload, only valid when l_Restarting==true */
|
2014-05-22 11:22:30 +02:00
|
|
|
static bool m_RequestReopenLogs; /**< Whether we should re-open log files. */
|
2014-05-17 23:07:10 +02:00
|
|
|
|
2019-07-15 13:59:17 +02:00
|
|
|
#ifndef _WIN32
|
2019-07-16 11:11:10 +02:00
|
|
|
static pid_t m_UmbrellaProcess; /**< The PID of the Icinga umbrella process */
|
2019-07-15 13:59:17 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2013-02-14 16:18:58 +01:00
|
|
|
static int m_ArgC; /**< The number of command-line arguments. */
|
|
|
|
static char **m_ArgV; /**< Command-line arguments. */
|
2019-07-15 16:08:08 +02:00
|
|
|
FILE *m_PidFile = nullptr; /**< The PID file */
|
2012-06-05 15:05:15 +02:00
|
|
|
static bool m_Debugging; /**< Whether debugging is enabled. */
|
2014-05-23 11:56:30 +02:00
|
|
|
static LogSeverity m_DebuggingSeverity; /**< Whether debugging severity is set. */
|
2013-10-26 09:41:45 +02:00
|
|
|
static double m_StartTime;
|
2016-05-11 12:50:08 +02:00
|
|
|
static double m_MainTime;
|
2015-11-05 14:29:45 +01:00
|
|
|
static bool m_ScriptDebuggerEnabled;
|
2016-05-11 16:07:28 +02:00
|
|
|
static double m_LastReloadFailed;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2019-07-12 13:45:54 +02:00
|
|
|
#ifdef _WIN32
|
2012-05-21 23:42:54 +02:00
|
|
|
static BOOL WINAPI CtrlHandler(DWORD type);
|
2013-03-07 15:00:26 +01:00
|
|
|
static LONG WINAPI SEHUnhandledExceptionFilter(PEXCEPTION_POINTERS exi);
|
2012-05-21 23:42:54 +02:00
|
|
|
#endif /* _WIN32 */
|
2012-09-25 15:24:14 +02:00
|
|
|
|
2014-12-20 15:29:04 +01:00
|
|
|
static void DisplayBugMessage(std::ostream& os);
|
2013-02-01 19:11:15 +01:00
|
|
|
|
2013-03-07 15:00:26 +01:00
|
|
|
static void SigAbrtHandler(int signum);
|
2014-05-22 11:22:30 +02:00
|
|
|
static void SigUsr1Handler(int signum);
|
2018-01-04 04:25:35 +01:00
|
|
|
static void ExceptionHandler();
|
2014-12-20 15:29:04 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static String GetCrashReportFilename();
|
2015-03-03 13:53:11 +01:00
|
|
|
|
2015-08-08 09:40:16 +02:00
|
|
|
static void AttachDebugger(const String& filename, bool interactive);
|
2012-03-28 13:24:49 +02:00
|
|
|
};
|
|
|
|
|
2012-04-22 16:45:31 +02:00
|
|
|
}
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* APPLICATION_H */
|