2012-05-10 06:06:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2017-01-10 09:54:22 -05:00
|
|
|
* Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/) *
|
2012-05-10 06:06:41 -04: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 07:33:57 -04:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 06:06:41 -04:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#ifndef APPLICATION_H
|
|
|
|
|
#define APPLICATION_H
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/application.thpp"
|
|
|
|
|
#include "base/threadpool.hpp"
|
|
|
|
|
#include "base/utility.hpp"
|
2014-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2014-12-20 09:29:04 -05:00
|
|
|
#include <ostream>
|
2013-03-16 16:18:53 -04:00
|
|
|
|
2014-05-03 14:02:22 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2012-05-15 04:58:14 -04:00
|
|
|
/**
|
|
|
|
|
* Abstract base class for applications.
|
2012-05-18 16:21:28 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-05-15 04:58:14 -04:00
|
|
|
*/
|
2013-11-04 17:14:34 -05:00
|
|
|
class I2_BASE_API Application : public ObjectImpl<Application> {
|
2012-05-21 06:53:38 -04:00
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(Application);
|
2012-05-21 06:53:38 -04:00
|
|
|
|
2014-05-22 05:22:30 -04:00
|
|
|
static boost::signals2::signal<void (void)> OnReopenLogs;
|
|
|
|
|
|
2012-03-28 07:24:49 -04:00
|
|
|
~Application(void);
|
|
|
|
|
|
2014-05-03 14:02:22 -04:00
|
|
|
static void InitializeBase(void);
|
2014-12-04 15:45:15 -05:00
|
|
|
static void UninitializeBase(void);
|
2014-05-03 14:02:22 -04:00
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
static Application::Ptr GetInstance(void);
|
2012-05-21 06:53:38 -04:00
|
|
|
|
2014-08-04 10:43:34 -04:00
|
|
|
static void Exit(int rc);
|
2014-08-04 10:26:17 -04:00
|
|
|
|
2013-02-02 17:22:27 -05:00
|
|
|
int Run(void);
|
2012-05-15 04:58:14 -04:00
|
|
|
|
2012-09-17 08:47:43 -04:00
|
|
|
/**
|
|
|
|
|
* Starts the application.
|
|
|
|
|
*
|
|
|
|
|
* @returns The exit code of the application.
|
|
|
|
|
*/
|
2013-02-02 17:22:27 -05:00
|
|
|
virtual int Main(void) = 0;
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2013-12-05 05:04:47 -05:00
|
|
|
static void SetResourceLimits(void);
|
|
|
|
|
|
2013-02-14 10:18:58 -05:00
|
|
|
static int GetArgC(void);
|
|
|
|
|
static void SetArgC(int argc);
|
|
|
|
|
|
|
|
|
|
static char **GetArgV(void);
|
|
|
|
|
static void SetArgV(char **argv);
|
|
|
|
|
|
2013-01-30 05:51:15 -05:00
|
|
|
static void InstallExceptionHandlers(void);
|
|
|
|
|
|
2015-03-12 06:43:04 -04:00
|
|
|
static void RequestShutdown(void);
|
2013-08-30 08:27:24 -04:00
|
|
|
static void RequestRestart(void);
|
2014-05-22 05:22:30 -04:00
|
|
|
static void RequestReopenLogs(void);
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2016-08-17 13:24:22 -04:00
|
|
|
static bool IsShuttingDown(void);
|
|
|
|
|
|
2014-05-23 05:56:30 -04:00
|
|
|
static void SetDebuggingSeverity(LogSeverity severity);
|
|
|
|
|
static LogSeverity GetDebuggingSeverity(void);
|
|
|
|
|
|
2014-05-17 17:07:10 -04:00
|
|
|
void UpdatePidFile(const String& filename, pid_t pid = Utility::GetPid());
|
2014-05-18 10:23:16 -04:00
|
|
|
void ClosePidFile(bool unlink);
|
2014-04-13 18:16:48 -04:00
|
|
|
static pid_t ReadPidFile(const String& filename);
|
2012-07-12 11:03:34 -04:00
|
|
|
|
2012-08-14 06:51:51 -04:00
|
|
|
static String GetExePath(const String& argv0);
|
|
|
|
|
|
2012-09-28 07:16:08 -04:00
|
|
|
static String GetPrefixDir(void);
|
2013-11-03 07:45:26 -05:00
|
|
|
static void DeclarePrefixDir(const String& path);
|
2012-09-28 07:16:08 -04:00
|
|
|
|
2013-11-27 03:23:30 -05:00
|
|
|
static String GetSysconfDir(void);
|
|
|
|
|
static void DeclareSysconfDir(const String& path);
|
|
|
|
|
|
2014-05-13 07:18:27 -04:00
|
|
|
static String GetZonesDir(void);
|
|
|
|
|
static void DeclareZonesDir(const String& path);
|
|
|
|
|
|
2014-07-22 07:18:41 -04:00
|
|
|
static String GetRunDir(void);
|
|
|
|
|
static void DeclareRunDir(const String& path);
|
|
|
|
|
|
2012-09-28 07:16:08 -04:00
|
|
|
static String GetLocalStateDir(void);
|
2013-11-03 07:45:26 -05:00
|
|
|
static void DeclareLocalStateDir(const String& path);
|
2012-10-02 03:26:17 -04:00
|
|
|
|
2013-02-01 16:44:58 -05:00
|
|
|
static String GetPkgDataDir(void);
|
2013-11-03 07:45:26 -05:00
|
|
|
static void DeclarePkgDataDir(const String& path);
|
2013-02-01 16:44:58 -05:00
|
|
|
|
2014-05-10 12:23:08 -04:00
|
|
|
static String GetIncludeConfDir(void);
|
|
|
|
|
static void DeclareIncludeConfDir(const String& path);
|
|
|
|
|
|
2013-08-29 04:17:12 -04:00
|
|
|
static String GetStatePath(void);
|
2013-11-03 07:45:26 -05:00
|
|
|
static void DeclareStatePath(const String& path);
|
2013-08-29 04:17:12 -04:00
|
|
|
|
2015-08-12 03:52:29 -04:00
|
|
|
static String GetModAttrPath(void);
|
|
|
|
|
static void DeclareModAttrPath(const String& path);
|
|
|
|
|
|
2014-08-12 07:46:54 -04:00
|
|
|
static String GetObjectsPath(void);
|
|
|
|
|
static void DeclareObjectsPath(const String& path);
|
|
|
|
|
|
2014-10-20 15:14:00 -04:00
|
|
|
static String GetVarsPath(void);
|
|
|
|
|
static void DeclareVarsPath(const String& path);
|
|
|
|
|
|
2013-09-10 10:03:36 -04:00
|
|
|
static String GetPidPath(void);
|
2013-11-03 07:45:26 -05:00
|
|
|
static void DeclarePidPath(const String& path);
|
2013-09-10 10:03:36 -04:00
|
|
|
|
2014-10-13 07:43:05 -04:00
|
|
|
static String GetRunAsUser(void);
|
|
|
|
|
static void DeclareRunAsUser(const String& user);
|
|
|
|
|
|
|
|
|
|
static String GetRunAsGroup(void);
|
|
|
|
|
static void DeclareRunAsGroup(const String& group);
|
|
|
|
|
|
2017-08-22 04:26:23 -04:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
static bool IsProcessElevated(void);
|
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
2017-06-21 05:36:14 -04: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 07:14:42 -05:00
|
|
|
static int GetConcurrency(void);
|
|
|
|
|
static void DeclareConcurrency(int ncpus);
|
|
|
|
|
|
2013-03-25 13:36:15 -04:00
|
|
|
static ThreadPool& GetTP(void);
|
2013-02-15 00:47:26 -05:00
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
static String GetAppVersion(void);
|
2016-08-25 11:32:20 -04:00
|
|
|
static String GetAppSpecVersion(void);
|
2013-10-09 02:46:10 -04:00
|
|
|
|
2013-10-26 03:41:45 -04:00
|
|
|
static double GetStartTime(void);
|
|
|
|
|
static void SetStartTime(double ts);
|
|
|
|
|
|
2016-05-11 06:50:08 -04:00
|
|
|
static double GetMainTime(void);
|
|
|
|
|
static void SetMainTime(double ts);
|
|
|
|
|
|
2015-11-05 08:29:45 -05:00
|
|
|
static bool GetScriptDebuggerEnabled(void);
|
|
|
|
|
static void SetScriptDebuggerEnabled(bool enabled);
|
|
|
|
|
|
2016-05-11 10:07:28 -04:00
|
|
|
static double GetLastReloadFailed(void);
|
|
|
|
|
static void SetLastReloadFailed(double ts);
|
|
|
|
|
|
2014-12-20 09:29:04 -05:00
|
|
|
static void DisplayInfoMessage(std::ostream& os, bool skipVersion = false);
|
2014-07-23 03:30:56 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
protected:
|
2015-08-18 01:46:04 -04:00
|
|
|
virtual void OnConfigLoaded(void) override;
|
2015-08-20 11:18:48 -04:00
|
|
|
virtual void Stop(bool runtimeRemoved) override;
|
2013-08-20 05:06:04 -04:00
|
|
|
|
2014-05-17 17:07:10 -04:00
|
|
|
void RunEventLoop(void);
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2014-05-17 17:07:10 -04:00
|
|
|
pid_t StartReloadProcess(void);
|
2014-04-27 15:47:25 -04:00
|
|
|
|
2013-11-04 09:57:46 -05:00
|
|
|
virtual void OnShutdown(void);
|
2014-08-04 10:26:17 -04:00
|
|
|
|
2015-09-22 12:18:29 -04:00
|
|
|
virtual void ValidateName(const String& value, const ValidationUtils& utils) override;
|
|
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2014-11-08 15:17:16 -05:00
|
|
|
static Application::Ptr m_Instance; /**< The application instance. */
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2012-05-25 16:04:03 -04:00
|
|
|
static bool m_ShuttingDown; /**< Whether the application is in the process of
|
2012-05-21 17:42:54 -04:00
|
|
|
shutting down. */
|
2014-05-17 17:07:10 -04: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 05:22:30 -04:00
|
|
|
static bool m_RequestReopenLogs; /**< Whether we should re-open log files. */
|
2014-05-17 17:07:10 -04:00
|
|
|
|
2013-02-14 10:18:58 -05:00
|
|
|
static int m_ArgC; /**< The number of command-line arguments. */
|
|
|
|
|
static char **m_ArgV; /**< Command-line arguments. */
|
2012-07-12 11:03:34 -04:00
|
|
|
FILE *m_PidFile; /**< The PID file */
|
2012-06-05 09:05:15 -04:00
|
|
|
static bool m_Debugging; /**< Whether debugging is enabled. */
|
2014-05-23 05:56:30 -04:00
|
|
|
static LogSeverity m_DebuggingSeverity; /**< Whether debugging severity is set. */
|
2013-10-26 03:41:45 -04:00
|
|
|
static double m_StartTime;
|
2016-05-11 06:50:08 -04:00
|
|
|
static double m_MainTime;
|
2015-11-05 08:29:45 -05:00
|
|
|
static bool m_ScriptDebuggerEnabled;
|
2016-05-11 10:07:28 -04:00
|
|
|
static double m_LastReloadFailed;
|
2012-05-21 17:42:54 -04:00
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
2013-11-17 13:58:32 -05:00
|
|
|
static void SigIntTermHandler(int signum);
|
2012-05-21 17:42:54 -04:00
|
|
|
#else /* _WIN32 */
|
|
|
|
|
static BOOL WINAPI CtrlHandler(DWORD type);
|
2013-03-07 09:00:26 -05:00
|
|
|
static LONG WINAPI SEHUnhandledExceptionFilter(PEXCEPTION_POINTERS exi);
|
2012-05-21 17:42:54 -04:00
|
|
|
#endif /* _WIN32 */
|
2012-09-25 09:24:14 -04:00
|
|
|
|
2014-12-20 09:29:04 -05:00
|
|
|
static void DisplayBugMessage(std::ostream& os);
|
2013-02-01 13:11:15 -05:00
|
|
|
|
2013-03-07 09:00:26 -05:00
|
|
|
static void SigAbrtHandler(int signum);
|
2014-05-22 05:22:30 -04:00
|
|
|
static void SigUsr1Handler(int signum);
|
2013-01-30 05:51:15 -05:00
|
|
|
static void ExceptionHandler(void);
|
2014-12-20 09:29:04 -05:00
|
|
|
|
|
|
|
|
static String GetCrashReportFilename(void);
|
2015-03-03 07:53:11 -05:00
|
|
|
|
2015-08-08 03:40:16 -04:00
|
|
|
static void AttachDebugger(const String& filename, bool interactive);
|
2012-03-28 07:24:49 -04:00
|
|
|
};
|
|
|
|
|
|
2012-04-22 10:45:31 -04:00
|
|
|
}
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#endif /* APPLICATION_H */
|