icinga2/base/application.h

67 lines
1.3 KiB
C
Raw Normal View History

#ifndef APPLICATION_H
#define APPLICATION_H
2012-03-28 13:24:49 +02:00
namespace icinga {
class Component;
2012-03-28 13:24:49 +02:00
class Application : public Object {
private:
bool m_ShuttingDown;
ConfigHive::RefType m_ConfigHive;
map< string, shared_ptr<Component> > m_Components;
2012-03-28 13:24:49 +02:00
public:
typedef shared_ptr<Application> RefType;
typedef weak_ptr<Application> WeakRefType;
static Application::RefType Instance;
Application(void);
~Application(void);
virtual int Main(const vector<string>& args) = 0;
void RunEventLoop(void);
bool Daemonize(void);
2012-03-28 13:24:49 +02:00
void Shutdown(void);
2012-04-01 09:30:08 +02:00
void Log(const char *format, ...);
ConfigHive::RefType GetConfigHive(void);
2012-04-01 19:32:41 +02:00
shared_ptr<Component> LoadComponent(string path, ConfigObject::RefType componentConfig);
void UnloadComponent(string name);
shared_ptr<Component> GetComponent(string name);
2012-03-28 13:24:49 +02:00
};
template<class T>
int application_main(int argc, char **argv)
2012-03-28 13:24:49 +02:00
{
int result;
Application::Instance = new_object<T>();
vector<string> args;
for (int i = 0; i < argc; i++)
args.push_back(string(argv[i]));
result = Application::Instance->Main(args);
Application::Instance.reset();
assert(Object::ActiveObjects == 0);
return result;
}
#define SET_START_CLASS(klass) \
int main(int argc, char **argv) { \
return application_main<klass>(argc, argv); \
2012-03-28 13:24:49 +02:00
}
}
#endif /* APPLICATION_H */