icinga2/icinga/endpointmanager.h

50 lines
1.3 KiB
C
Raw Normal View History

#ifndef ENDPOINTMANAGER_H
#define ENDPOINTMANAGER_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
struct I2_ICINGA_API NewEndpointEventArgs : public EventArgs
{
Endpoint::Ptr Endpoint;
};
class I2_ICINGA_API EndpointManager : public Object
2012-03-28 13:24:49 +02:00
{
list<JsonRpcServer::Ptr> m_Servers;
list<Endpoint::Ptr> m_Endpoints;
string m_Identity;
2012-03-28 13:24:49 +02:00
void RegisterServer(JsonRpcServer::Ptr server);
void UnregisterServer(JsonRpcServer::Ptr server);
2012-04-18 15:22:25 +02:00
int NewClientHandler(const NewClientEventArgs& ncea);
int NewMethodSinkHandler(const NewMethodEventArgs& ea);
int NewMethodSourceHandler(const NewMethodEventArgs& ea);
public:
typedef shared_ptr<EndpointManager> Ptr;
typedef weak_ptr<EndpointManager> WeakPtr;
2012-03-28 13:24:49 +02:00
void SetIdentity(string identity);
string GetIdentity(void) const;
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
void RegisterEndpoint(Endpoint::Ptr endpoint);
void UnregisterEndpoint(Endpoint::Ptr endpoint);
2012-03-31 16:01:31 +02:00
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);
void ForeachEndpoint(function<int (const NewEndpointEventArgs&)> callback);
Event<NewEndpointEventArgs> OnNewEndpoint;
2012-03-28 13:24:49 +02:00
};
}
#endif /* ENDPOINTMANAGER_H */