icinga2/lib/base/application.h

126 lines
4.0 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* 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. *
******************************************************************************/
#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"
#include "base/eventqueue.h"
#include "base/dynamicobject.h"
2012-03-28 13:24:49 +02:00
namespace icinga {
class Component;
/**
* Abstract base class for applications.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
*/
class I2_BASE_API Application : public DynamicObject {
public:
typedef shared_ptr<Application> Ptr;
typedef weak_ptr<Application> WeakPtr;
2013-03-14 23:52:52 +01:00
explicit Application(const Dictionary::Ptr& serializedUpdate);
2012-03-28 13:24:49 +02:00
~Application(void);
2013-03-02 09:07:47 +01:00
static Application::Ptr GetInstance(void);
int Run(void);
2012-09-17 14:47:43 +02:00
/**
* Starts the application.
*
* @returns The exit code of the application.
*/
virtual int Main(void) = 0;
2012-03-28 13:24:49 +02:00
static int GetArgC(void);
static void SetArgC(int argc);
static char **GetArgV(void);
static void SetArgV(char **argv);
static void InstallExceptionHandlers(void);
static void RequestShutdown(void);
static void SetDebugging(bool debug);
static bool IsDebugging(void);
void UpdatePidFile(const String& filename);
void ClosePidFile(void);
static String GetExePath(const String& argv0);
static String GetPrefixDir(void);
static void SetPrefixDir(const String& path);
static String GetLocalStateDir(void);
static void SetLocalStateDir(const String& path);
static String GetPkgLibDir(void);
static void SetPkgLibDir(const String& path);
static String GetPkgDataDir(void);
static void SetPkgDataDir(const String& path);
2013-02-15 06:47:26 +01:00
static EventQueue& GetEQ(void);
protected:
void RunEventLoop(void) const;
2013-02-24 01:10:34 +01:00
virtual void OnShutdown(void) = 0;
private:
static Application *m_Instance; /**< The application instance. */
2012-05-25 22:04:03 +02:00
static bool m_ShuttingDown; /**< Whether the application is in the process of
shutting down. */
static int m_ArgC; /**< The number of command-line arguments. */
static char **m_ArgV; /**< Command-line arguments. */
FILE *m_PidFile; /**< The PID file */
static bool m_Debugging; /**< Whether debugging is enabled. */
static String m_PrefixDir; /**< The installation prefix. */
static String m_LocalStateDir; /**< The local state dir. */
static String m_PkgLibDir; /**< The package lib dir. */
static String m_PkgDataDir; /**< The package data dir. */
#ifndef _WIN32
static void SigIntHandler(int signum);
#else /* _WIN32 */
static BOOL WINAPI CtrlHandler(DWORD type);
static LONG WINAPI SEHUnhandledExceptionFilter(PEXCEPTION_POINTERS exi);
#endif /* _WIN32 */
static void DisplayBugMessage(void);
static void SigAbrtHandler(int signum);
static void ExceptionHandler(void);
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
#endif /* APPLICATION_H */