2012-04-02 08:56:30 +02:00
|
|
|
#ifndef ICINGAAPPLICATION_H
|
|
|
|
#define ICINGAAPPLICATION_H
|
2012-03-31 16:29:53 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
class I2_ICINGA_API IcingaApplication : public Application
|
2012-03-31 16:29:53 +02:00
|
|
|
{
|
|
|
|
private:
|
2012-04-06 08:56:52 +02:00
|
|
|
EndpointManager::Ptr m_EndpointManager;
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2012-04-20 13:49:04 +02:00
|
|
|
int NewComponentHandler(const EventArgs& ea);
|
|
|
|
int DeletedComponentHandler(const EventArgs& ea);
|
2012-04-04 10:04:38 +02:00
|
|
|
|
2012-04-20 13:49:04 +02:00
|
|
|
int NewRpcListenerHandler(const EventArgs& ea);
|
|
|
|
int DeletedRpcListenerHandler(const EventArgs& ea);
|
2012-04-01 09:30:38 +02:00
|
|
|
|
2012-04-20 13:49:04 +02:00
|
|
|
int NewRpcConnectionHandler(const EventArgs& ea);
|
|
|
|
int DeletedRpcConnectionHandler(const EventArgs& ea);
|
2012-04-04 12:22:46 +02:00
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
int TestTimerHandler(const TimerEventArgs& tea);
|
2012-03-31 16:29:53 +02:00
|
|
|
public:
|
2012-04-02 20:50:35 +02:00
|
|
|
typedef shared_ptr<IcingaApplication> Ptr;
|
|
|
|
typedef weak_ptr<IcingaApplication> WeakPtr;
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
int Main(const vector<string>& args);
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2012-04-02 13:09:33 +02:00
|
|
|
void PrintUsage(const string& programPath);
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
EndpointManager::Ptr GetEndpointManager(void);
|
2012-03-31 16:29:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* ICINGAAPPLICATION_H */
|