#ifndef I2_APPLICATION_H #define I2_APPLICATION_H #include namespace icinga { using std::vector; using std::map; using std::string; class Component; class Application : public Object { private: bool m_ShuttingDown; ConfigHive::RefType m_ConfigHive; map< string, shared_ptr > m_Components; public: typedef shared_ptr RefType; typedef weak_ptr WeakRefType; static Application::RefType Instance; Application(void); ~Application(void); virtual int Main(const vector& args) = 0; void RunEventLoop(void); bool Daemonize(void); void Shutdown(void); void Log(const char *format, ...); ConfigHive::RefType GetConfigHive(void); shared_ptr LoadComponent(string name); void UnloadComponent(string name); shared_ptr GetComponent(string name); }; template int i2_main(int argc, char **argv) { int result; Application::Instance = new_object(); vector 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(argc, argv); \ } } #endif /* I2_APPLICATION_H */