2012-04-06 08:56:52 +02:00
|
|
|
#ifndef ENDPOINTMANAGER_H
|
|
|
|
#define ENDPOINTMANAGER_H
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-04-19 11:29:36 +02:00
|
|
|
struct I2_ICINGA_API NewEndpointEventArgs : public EventArgs
|
|
|
|
{
|
2012-04-19 12:20:03 +02:00
|
|
|
icinga::Endpoint::Ptr Endpoint;
|
2012-04-19 11:29:36 +02:00
|
|
|
};
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
class I2_ICINGA_API EndpointManager : public Object
|
2012-03-28 13:24:49 +02:00
|
|
|
{
|
2012-04-24 14:02:15 +02:00
|
|
|
shared_ptr<SSL_CTX> m_SSLContext;
|
2012-04-02 20:50:35 +02:00
|
|
|
list<JsonRpcServer::Ptr> m_Servers;
|
2012-04-06 08:56:52 +02:00
|
|
|
list<Endpoint::Ptr> m_Endpoints;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 20:50:35 +02:00
|
|
|
void RegisterServer(JsonRpcServer::Ptr server);
|
|
|
|
void UnregisterServer(JsonRpcServer::Ptr server);
|
2012-04-06 08:56:52 +02:00
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
int NewClientHandler(const NewClientEventArgs& ncea);
|
|
|
|
|
|
|
|
int NewMethodSinkHandler(const NewMethodEventArgs& ea);
|
|
|
|
int NewMethodSourceHandler(const NewMethodEventArgs& ea);
|
|
|
|
|
2012-04-04 12:22:46 +02:00
|
|
|
public:
|
2012-04-06 08:56:52 +02:00
|
|
|
typedef shared_ptr<EndpointManager> Ptr;
|
|
|
|
typedef weak_ptr<EndpointManager> WeakPtr;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
EndpointManager(shared_ptr<SSL_CTX> sslContext);
|
|
|
|
|
2012-04-04 12:22:46 +02:00
|
|
|
void AddListener(unsigned short port);
|
2012-04-18 15:22:25 +02:00
|
|
|
void AddConnection(string host, unsigned short port);
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
void RegisterEndpoint(Endpoint::Ptr endpoint);
|
|
|
|
void UnregisterEndpoint(Endpoint::Ptr endpoint);
|
2012-03-31 16:01:31 +02:00
|
|
|
|
2012-04-23 16:48:40 +02:00
|
|
|
void SendUnicastRequest(Endpoint::Ptr sender, Endpoint::Ptr recipient, const JsonRpcRequest& request, bool fromLocal = true);
|
2012-04-18 15:22:25 +02:00
|
|
|
void SendAnycastRequest(Endpoint::Ptr sender, const JsonRpcRequest& request, bool fromLocal = true);
|
|
|
|
void SendMulticastRequest(Endpoint::Ptr sender, const JsonRpcRequest& request, bool fromLocal = true);
|
|
|
|
|
2012-04-19 11:29:36 +02:00
|
|
|
void ForeachEndpoint(function<int (const NewEndpointEventArgs&)> callback);
|
|
|
|
|
|
|
|
Event<NewEndpointEventArgs> OnNewEndpoint;
|
2012-03-28 13:24:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
#endif /* ENDPOINTMANAGER_H */
|