icinga2/base/application.h

84 lines
3.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
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 Object {
public:
typedef shared_ptr<Application> Ptr;
typedef weak_ptr<Application> WeakPtr;
2012-03-28 13:24:49 +02:00
Application(void);
~Application(void);
static Application::Ptr GetInstance(void);
int Run(int argc, char **argv);
2012-03-28 13:24:49 +02:00
virtual int Main(const vector<string>& args) = 0;
2012-05-25 22:04:03 +02:00
static void Shutdown(void);
2012-04-22 16:45:31 +02:00
shared_ptr<Component> LoadComponent(const string& path,
const ConfigObject::Ptr& componentConfig);
void RegisterComponent(const shared_ptr<Component>& component);
void UnregisterComponent(const shared_ptr<Component>& component);
2012-05-18 22:53:35 +02:00
shared_ptr<Component> GetComponent(const string& name) const;
2012-04-03 11:39:26 +02:00
void AddComponentSearchDir(const string& componentDirectory);
2012-04-02 13:09:33 +02:00
static bool IsDebugging(void);
2012-07-10 12:21:19 +02:00
static bool IsMainThread(void);
protected:
void RunEventLoop(void);
2012-07-10 13:31:17 +02:00
string GetExePath(void) const;
private:
2012-05-25 22:04:03 +02:00
static Application::Ptr 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. */
map< string, shared_ptr<Component> > m_Components; /**< Components that
were loaded by the application. */
vector<string> m_Arguments; /**< Command-line arguments */
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. */
#ifndef _WIN32
static void SigIntHandler(int signum);
#else /* _WIN32 */
static BOOL WINAPI CtrlHandler(DWORD type);
#endif /* _WIN32 */
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 */