mirror of https://github.com/Icinga/icinga2.git
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
#ifndef ENDPOINTMANAGER_H
|
|
#define ENDPOINTMANAGER_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
struct I2_ICINGA_API NewEndpointEventArgs : public EventArgs
|
|
{
|
|
icinga::Endpoint::Ptr Endpoint;
|
|
};
|
|
|
|
class I2_ICINGA_API EndpointManager : public Object
|
|
{
|
|
list<JsonRpcServer::Ptr> m_Servers;
|
|
list<Endpoint::Ptr> m_Endpoints;
|
|
string m_Identity;
|
|
|
|
void RegisterServer(JsonRpcServer::Ptr server);
|
|
void UnregisterServer(JsonRpcServer::Ptr server);
|
|
|
|
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;
|
|
|
|
void SetIdentity(string identity);
|
|
string GetIdentity(void) const;
|
|
|
|
void AddListener(unsigned short port);
|
|
void AddConnection(string host, unsigned short port);
|
|
|
|
void RegisterEndpoint(Endpoint::Ptr endpoint);
|
|
void UnregisterEndpoint(Endpoint::Ptr endpoint);
|
|
|
|
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;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* ENDPOINTMANAGER_H */
|