#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 m_Servers; list 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 Ptr; typedef weak_ptr 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 SendUnicastRequest(Endpoint::Ptr sender, Endpoint::Ptr recipient, const JsonRpcRequest& request, bool fromLocal = true); 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 callback); Event OnNewEndpoint; }; } #endif /* ENDPOINTMANAGER_H */