2012-05-10 06:06:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2013-09-25 01:43:57 -04:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
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
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "base/i2-base.h"
|
2013-10-26 03:41:45 -04:00
|
|
|
#include "base/application.th"
|
2013-03-25 13:36:15 -04:00
|
|
|
#include "base/threadpool.h"
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
|
2012-03-28 07:24:49 -04:00
|
|
|
namespace icinga {
|
|
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
class Component;
|
|
|
|
|
|
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:
|
2013-07-09 02:42:08 -04:00
|
|
|
DECLARE_PTR_TYPEDEFS(Application);
|
2012-05-21 06:53:38 -04:00
|
|
|
|
2012-03-28 07:24:49 -04:00
|
|
|
~Application(void);
|
|
|
|
|
|
2013-03-02 03:07:47 -05:00
|
|
|
static Application::Ptr GetInstance(void);
|
2012-05-21 06:53:38 -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-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);
|
|
|
|
|
|
2012-09-27 03:58:16 -04:00
|
|
|
static void RequestShutdown(void);
|
2013-08-30 08:27:24 -04:00
|
|
|
static void RequestRestart(void);
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2013-02-02 17:22:27 -05:00
|
|
|
static void SetDebugging(bool debug);
|
2012-06-05 09:05:15 -04:00
|
|
|
static bool IsDebugging(void);
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
void UpdatePidFile(const String& filename);
|
2012-07-12 11:03:34 -04:00
|
|
|
void ClosePidFile(void);
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
|
|
|
static String GetApplicationType(void);
|
2013-11-03 07:45:26 -05:00
|
|
|
static void DeclareApplicationType(const String& type);
|
2013-09-10 10:03:36 -04:00
|
|
|
|
2013-03-25 13:36:15 -04:00
|
|
|
static ThreadPool& GetTP(void);
|
2013-02-15 00:47:26 -05:00
|
|
|
|
2013-10-09 02:46:10 -04:00
|
|
|
static String GetVersion(void);
|
|
|
|
|
|
2013-10-26 03:41:45 -04:00
|
|
|
static double GetStartTime(void);
|
|
|
|
|
static void SetStartTime(double ts);
|
|
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
protected:
|
2013-09-09 08:09:33 -04:00
|
|
|
virtual void OnConfigLoaded(void);
|
2013-08-20 05:06:04 -04:00
|
|
|
virtual void Stop(void);
|
|
|
|
|
|
2013-02-06 04:53:28 -05:00
|
|
|
void RunEventLoop(void) const;
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2013-11-04 09:57:46 -05:00
|
|
|
virtual void OnShutdown(void);
|
2013-02-23 19:10:34 -05:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2012-08-14 06:51:51 -04:00
|
|
|
static Application *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. */
|
2013-08-30 08:27:24 -04:00
|
|
|
static bool m_Restarting;
|
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. */
|
2013-10-26 03:41:45 -04:00
|
|
|
static double m_StartTime;
|
2012-05-21 17:42:54 -04:00
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
static void SigIntHandler(int signum);
|
|
|
|
|
#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
|
|
|
|
2013-02-01 13:11:15 -05:00
|
|
|
static void DisplayBugMessage(void);
|
|
|
|
|
|
2013-03-07 09:00:26 -05:00
|
|
|
static void SigAbrtHandler(int signum);
|
2013-01-30 05:51:15 -05:00
|
|
|
static void ExceptionHandler(void);
|
|
|
|
|
|
2012-09-25 09:24:14 -04:00
|
|
|
static void TimeWatchThreadProc(void);
|
2013-02-17 13:14:34 -05:00
|
|
|
static void NewTxTimerHandler(void);
|
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 */
|