2012-03-28 13:24:49 +02:00
|
|
|
#ifndef I2_APPLICATION_H
|
|
|
|
#define I2_APPLICATION_H
|
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
#include <map>
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
namespace icinga {
|
|
|
|
|
|
|
|
using std::vector;
|
2012-03-31 15:18:09 +02:00
|
|
|
using std::map;
|
2012-03-28 13:24:49 +02:00
|
|
|
using std::string;
|
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
class Component;
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
class Application : public Object {
|
|
|
|
private:
|
|
|
|
bool m_ShuttingDown;
|
2012-03-31 15:18:09 +02:00
|
|
|
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);
|
2012-03-30 10:24:42 +02:00
|
|
|
bool Daemonize(void);
|
2012-03-28 13:24:49 +02:00
|
|
|
void Shutdown(void);
|
2012-03-31 15:18:09 +02:00
|
|
|
|
|
|
|
ConfigHive::RefType GetConfigHive(void);
|
|
|
|
|
|
|
|
shared_ptr<Component> LoadComponent(string name);
|
|
|
|
void UnloadComponent(string name);
|
|
|
|
shared_ptr<Component> GetComponent(string name);
|
2012-03-28 13:24:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
int i2_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
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 i2_main<klass>(argc, argv); \
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* I2_APPLICATION_H */
|