2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2017-01-10 15:54:22 +01:00
|
|
|
* Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
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"
|
|
|
|
#include "base/application.thpp"
|
|
|
|
#include "base/threadpool.hpp"
|
|
|
|
#include "base/utility.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-12-20 15:29:04 +01:00
|
|
|
#include <ostream>
|
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
|
|
|
|
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
|
|
|
*/
|
2013-11-04 23:14:34 +01:00
|
|
|
class I2_BASE_API 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
|
|
|
|
2014-05-22 11:22:30 +02:00
|
|
|
static boost::signals2::signal<void (void)> OnReopenLogs;
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
~Application(void);
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
static void InitializeBase(void);
|
2014-12-04 21:45:15 +01:00
|
|
|
static void UninitializeBase(void);
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2013-03-02 09:07:47 +01:00
|
|
|
static Application::Ptr GetInstance(void);
|
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
|
|
|
|
2013-02-02 23:22:27 +01:00
|
|
|
int Run(void);
|
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.
|
|
|
|
*/
|
2013-02-02 23:22:27 +01:00
|
|
|
virtual int Main(void) = 0;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2013-12-05 11:04:47 +01:00
|
|
|
static void SetResourceLimits(void);
|
|
|
|
|
2013-02-14 16:18:58 +01:00
|
|
|
static int GetArgC(void);
|
|
|
|
static void SetArgC(int argc);
|
|
|
|
|
|
|
|
static char **GetArgV(void);
|
|
|
|
static void SetArgV(char **argv);
|
|
|
|
|
2013-01-30 11:51:15 +01:00
|
|
|
static void InstallExceptionHandlers(void);
|
|
|
|
|
2015-03-12 11:43:04 +01:00
|
|
|
static void RequestShutdown(void);
|
2013-08-30 14:27:24 +02:00
|
|
|
static void RequestRestart(void);
|
2014-05-22 11:22:30 +02:00
|
|
|
static void RequestReopenLogs(void);
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2016-08-17 19:24:22 +02:00
|
|
|
static bool IsShuttingDown(void);
|
|
|
|
|
2014-05-23 11:56:30 +02:00
|
|
|
static void SetDebuggingSeverity(LogSeverity severity);
|
|
|
|
static LogSeverity GetDebuggingSeverity(void);
|
|
|
|
|
2014-05-17 23:07:10 +02:00
|
|
|
void UpdatePidFile(const String& filename, pid_t pid = Utility::GetPid());
|
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);
|
|
|
|
|
2012-09-28 13:16:08 +02:00
|
|
|
static String GetPrefixDir(void);
|
2013-11-03 13:45:26 +01:00
|
|
|
static void DeclarePrefixDir(const String& path);
|
2012-09-28 13:16:08 +02:00
|
|
|
|
2013-11-27 09:23:30 +01:00
|
|
|
static String GetSysconfDir(void);
|
|
|
|
static void DeclareSysconfDir(const String& path);
|
|
|
|
|
2014-05-13 13:18:27 +02:00
|
|
|
static String GetZonesDir(void);
|
|
|
|
static void DeclareZonesDir(const String& path);
|
|
|
|
|
2014-07-22 13:18:41 +02:00
|
|
|
static String GetRunDir(void);
|
|
|
|
static void DeclareRunDir(const String& path);
|
|
|
|
|
2012-09-28 13:16:08 +02:00
|
|
|
static String GetLocalStateDir(void);
|
2013-11-03 13:45:26 +01:00
|
|
|
static void DeclareLocalStateDir(const String& path);
|
2012-10-02 09:26:17 +02:00
|
|
|
|
2013-02-01 22:44:58 +01:00
|
|
|
static String GetPkgDataDir(void);
|
2013-11-03 13:45:26 +01:00
|
|
|
static void DeclarePkgDataDir(const String& path);
|
2013-02-01 22:44:58 +01:00
|
|
|
|
2014-05-10 18:23:08 +02:00
|
|
|
static String GetIncludeConfDir(void);
|
|
|
|
static void DeclareIncludeConfDir(const String& path);
|
|
|
|
|
2013-08-29 10:17:12 +02:00
|
|
|
static String GetStatePath(void);
|
2013-11-03 13:45:26 +01:00
|
|
|
static void DeclareStatePath(const String& path);
|
2013-08-29 10:17:12 +02:00
|
|
|
|
2015-08-12 09:52:29 +02:00
|
|
|
static String GetModAttrPath(void);
|
|
|
|
static void DeclareModAttrPath(const String& path);
|
|
|
|
|
2014-08-12 13:46:54 +02:00
|
|
|
static String GetObjectsPath(void);
|
|
|
|
static void DeclareObjectsPath(const String& path);
|
|
|
|
|
2014-10-20 21:14:00 +02:00
|
|
|
static String GetVarsPath(void);
|
|
|
|
static void DeclareVarsPath(const String& path);
|
|
|
|
|
2013-09-10 16:03:36 +02:00
|
|
|
static String GetPidPath(void);
|
2013-11-03 13:45:26 +01:00
|
|
|
static void DeclarePidPath(const String& path);
|
2013-09-10 16:03:36 +02:00
|
|
|
|
2014-10-13 13:43:05 +02:00
|
|
|
static String GetRunAsUser(void);
|
|
|
|
static void DeclareRunAsUser(const String& user);
|
|
|
|
|
|
|
|
static String GetRunAsGroup(void);
|
|
|
|
static void DeclareRunAsGroup(const String& group);
|
|
|
|
|
2017-08-22 10:26:23 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
static bool IsProcessElevated(void);
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2017-06-21 11:36:14 +02:00
|
|
|
static int GetRLimitFiles(void);
|
|
|
|
static int GetDefaultRLimitFiles(void);
|
|
|
|
static void DeclareRLimitFiles(int limit);
|
|
|
|
|
|
|
|
static int GetRLimitProcesses(void);
|
|
|
|
static int GetDefaultRLimitProcesses(void);
|
|
|
|
static void DeclareRLimitProcesses(int limit);
|
|
|
|
|
|
|
|
static int GetRLimitStack(void);
|
|
|
|
static int GetDefaultRLimitStack(void);
|
|
|
|
static void DeclareRLimitStack(int limit);
|
|
|
|
|
2014-11-16 13:14:42 +01:00
|
|
|
static int GetConcurrency(void);
|
|
|
|
static void DeclareConcurrency(int ncpus);
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
static ThreadPool& GetTP(void);
|
2013-02-15 06:47:26 +01:00
|
|
|
|
2015-08-20 16:43:03 +02:00
|
|
|
static String GetAppVersion(void);
|
2016-08-25 17:32:20 +02:00
|
|
|
static String GetAppSpecVersion(void);
|
2013-10-09 08:46:10 +02:00
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
static double GetStartTime(void);
|
|
|
|
static void SetStartTime(double ts);
|
|
|
|
|
2016-05-11 12:50:08 +02:00
|
|
|
static double GetMainTime(void);
|
|
|
|
static void SetMainTime(double ts);
|
|
|
|
|
2015-11-05 14:29:45 +01:00
|
|
|
static bool GetScriptDebuggerEnabled(void);
|
|
|
|
static void SetScriptDebuggerEnabled(bool enabled);
|
|
|
|
|
2016-05-11 16:07:28 +02:00
|
|
|
static double GetLastReloadFailed(void);
|
|
|
|
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:
|
2015-08-18 07:46:04 +02:00
|
|
|
virtual void OnConfigLoaded(void) override;
|
2015-08-20 17:18:48 +02:00
|
|
|
virtual void Stop(bool runtimeRemoved) override;
|
2013-08-20 11:06:04 +02:00
|
|
|
|
2014-05-17 23:07:10 +02:00
|
|
|
void RunEventLoop(void);
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2014-05-17 23:07:10 +02:00
|
|
|
pid_t StartReloadProcess(void);
|
2014-04-27 21:47:25 +02:00
|
|
|
|
2013-11-04 15:57:46 +01:00
|
|
|
virtual void OnShutdown(void);
|
2014-08-04 16:26:17 +02:00
|
|
|
|
2015-09-22 18:18:29 +02:00
|
|
|
virtual void ValidateName(const String& value, const ValidationUtils& utils) override;
|
|
|
|
|
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
|
|
|
|
2012-05-25 22:04:03 +02:00
|
|
|
static bool m_ShuttingDown; /**< Whether the application is in the process of
|
2012-05-21 23:42:54 +02:00
|
|
|
shutting down. */
|
2014-05-17 23:07:10 +02:00
|
|
|
static bool m_RequestRestart; /**< A restart was requested through SIGHUP */
|
|
|
|
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
|
|
|
|
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. */
|
2012-07-12 17:03:34 +02:00
|
|
|
FILE *m_PidFile; /**< 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
|
|
|
|
|
|
|
#ifndef _WIN32
|
2013-11-17 19:58:32 +01:00
|
|
|
static void SigIntTermHandler(int signum);
|
2012-05-21 23:42:54 +02:00
|
|
|
#else /* _WIN32 */
|
|
|
|
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);
|
2013-01-30 11:51:15 +01:00
|
|
|
static void ExceptionHandler(void);
|
2014-12-20 15:29:04 +01:00
|
|
|
|
|
|
|
static String GetCrashReportFilename(void);
|
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 */
|