2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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. *
|
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
|
|
|
|
|
|
|
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:
|
|
|
|
typedef shared_ptr<Application> Ptr;
|
|
|
|
typedef weak_ptr<Application> WeakPtr;
|
|
|
|
|
2012-08-14 12:51:51 +02:00
|
|
|
Application(const Dictionary::Ptr& serializedUpdate);
|
2012-03-28 13:24:49 +02:00
|
|
|
~Application(void);
|
|
|
|
|
2012-05-21 12:53:38 +02:00
|
|
|
static Application::Ptr GetInstance(void);
|
|
|
|
|
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);
|
|
|
|
static void Terminate(int exitCode);
|
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-07-10 12:21:19 +02:00
|
|
|
static bool IsMainThread(void);
|
2012-08-14 12:51:51 +02:00
|
|
|
static void SetMainThread(void);
|
2012-07-10 12:21:19 +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-02-13 07:25:36 +01:00
|
|
|
static bool ProcessEvents(void);
|
2013-02-06 10:53:28 +01:00
|
|
|
|
2013-02-14 10:55:47 +01:00
|
|
|
static boost::mutex& GetMutex(void);
|
|
|
|
|
2013-02-15 06:47:26 +01:00
|
|
|
static EventQueue& GetEQ(void);
|
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
protected:
|
2013-02-06 10:53:28 +01:00
|
|
|
void RunEventLoop(void) const;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
|
|
|
private:
|
2013-02-14 10:55:47 +01:00
|
|
|
static boost::mutex m_Mutex; /**< The main thread mutex. */
|
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-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-07-10 12:21:19 +02:00
|
|
|
static boost::thread::id m_MainThreadID; /**< ID of the main thread. */
|
2012-09-28 13:16:08 +02:00
|
|
|
static String m_PrefixDir; /**< The installation prefix. */
|
|
|
|
static String m_LocalStateDir; /**< The local state dir. */
|
2012-10-02 09:26:17 +02:00
|
|
|
static String m_PkgLibDir; /**< The package lib dir. */
|
2013-02-01 22:44:58 +01:00
|
|
|
static String m_PkgDataDir; /**< The package data dir. */
|
2013-02-15 06:47:26 +01:00
|
|
|
static EventQueue m_EQ; /**< The main thread's event queue. */
|
2012-05-21 23:42:54 +02:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
static void SigIntHandler(int signum);
|
2013-01-30 11:51:15 +01:00
|
|
|
static void SigAbrtHandler(int signum);
|
2012-05-21 23:42:54 +02:00
|
|
|
#else /* _WIN32 */
|
|
|
|
static BOOL WINAPI CtrlHandler(DWORD type);
|
|
|
|
#endif /* _WIN32 */
|
2012-09-25 15:24:14 +02:00
|
|
|
|
2013-02-01 19:11:15 +01:00
|
|
|
static void DisplayBugMessage(void);
|
|
|
|
|
2013-01-30 11:51:15 +01:00
|
|
|
static void ExceptionHandler(void);
|
|
|
|
|
2012-09-25 15:24:14 +02:00
|
|
|
static void TimeWatchThreadProc(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 */
|