2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
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
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/i2-base.h"
|
2013-03-25 18:36:15 +01:00
|
|
|
#include "base/threadpool.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
namespace icinga {
|
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
class Component;
|
|
|
|
|
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
|
|
|
*/
|
2012-08-14 12:51:51 +02:00
|
|
|
class I2_BASE_API Application : public DynamicObject {
|
2012-05-21 12:53:38 +02:00
|
|
|
public:
|
2013-07-09 08:42:08 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(Application);
|
2012-05-21 12:53:38 +02:00
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
~Application(void);
|
|
|
|
|
2013-03-02 09:07:47 +01:00
|
|
|
static Application::Ptr GetInstance(void);
|
2012-05-21 12:53:38 +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-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);
|
|
|
|
|
2012-09-27 09:58:16 +02:00
|
|
|
static void RequestShutdown(void);
|
2013-08-30 14:27:24 +02:00
|
|
|
static void RequestRestart(void);
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2013-02-02 23:22:27 +01:00
|
|
|
static void SetDebugging(bool debug);
|
2012-06-05 15:05:15 +02:00
|
|
|
static bool IsDebugging(void);
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
void UpdatePidFile(const String& filename);
|
2012-07-12 17:03:34 +02:00
|
|
|
void ClosePidFile(void);
|
|
|
|
|
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);
|
|
|
|
static void SetPrefixDir(const String& path);
|
|
|
|
|
|
|
|
static String GetLocalStateDir(void);
|
|
|
|
static void SetLocalStateDir(const String& path);
|
|
|
|
|
2012-10-02 09:26:17 +02:00
|
|
|
static String GetPkgLibDir(void);
|
|
|
|
static void SetPkgLibDir(const String& path);
|
|
|
|
|
2013-02-01 22:44:58 +01:00
|
|
|
static String GetPkgDataDir(void);
|
|
|
|
static void SetPkgDataDir(const String& path);
|
|
|
|
|
2013-08-29 10:17:12 +02:00
|
|
|
static String GetStatePath(void);
|
2013-08-30 12:04:24 +02:00
|
|
|
static void SetStatePath(const String& path);
|
2013-08-29 10:17:12 +02:00
|
|
|
|
2013-09-10 16:03:36 +02:00
|
|
|
static String GetPidPath(void);
|
|
|
|
static void SetPidPath(const String& path);
|
|
|
|
|
|
|
|
static String GetApplicationType(void);
|
|
|
|
static void SetApplicationType(const String& type);
|
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
static ThreadPool& GetTP(void);
|
2013-02-15 06:47:26 +01:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
protected:
|
2013-09-09 14:09:33 +02:00
|
|
|
virtual void OnConfigLoaded(void);
|
2013-08-20 11:06:04 +02:00
|
|
|
virtual void Stop(void);
|
|
|
|
|
2013-02-06 10:53:28 +01:00
|
|
|
void RunEventLoop(void) const;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2013-02-24 01:10:34 +01:00
|
|
|
virtual void OnShutdown(void) = 0;
|
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2012-08-14 12:51:51 +02:00
|
|
|
static Application *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. */
|
2013-08-30 14:27:24 +02:00
|
|
|
static bool m_Restarting;
|
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. */
|
2012-05-21 23:42:54 +02:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
static void SigIntHandler(int signum);
|
|
|
|
#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
|
|
|
|
2013-02-01 19:11:15 +01:00
|
|
|
static void DisplayBugMessage(void);
|
|
|
|
|
2013-03-07 15:00:26 +01:00
|
|
|
static void SigAbrtHandler(int signum);
|
2013-01-30 11:51:15 +01:00
|
|
|
static void ExceptionHandler(void);
|
|
|
|
|
2012-09-25 15:24:14 +02:00
|
|
|
static void TimeWatchThreadProc(void);
|
2013-02-17 19:14:34 +01:00
|
|
|
static void NewTxTimerHandler(void);
|
|
|
|
static void ShutdownTimerHandler(void);
|
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 */
|