icinga2/icinga/endpointmanager.h

74 lines
2.9 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef ENDPOINTMANAGER_H
#define ENDPOINTMANAGER_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
struct I2_ICINGA_API NewEndpointEventArgs : public EventArgs
{
2012-04-19 12:20:03 +02:00
icinga::Endpoint::Ptr Endpoint;
};
class I2_ICINGA_API EndpointManager : public Object
2012-03-28 13:24:49 +02:00
{
string m_Identity;
2012-04-24 14:02:15 +02:00
shared_ptr<SSL_CTX> m_SSLContext;
vector<JsonRpcServer::Ptr> m_Servers;
vector<Endpoint::Ptr> m_Endpoints;
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);
public:
typedef shared_ptr<EndpointManager> Ptr;
typedef weak_ptr<EndpointManager> WeakPtr;
2012-03-28 13:24:49 +02:00
2012-04-27 13:12:06 +02:00
void SetIdentity(string identity);
string GetIdentity(void) const;
2012-04-24 14:02:15 +02:00
2012-04-27 13:12:06 +02:00
void SetSSLContext(shared_ptr<SSL_CTX> sslContext);
shared_ptr<SSL_CTX> GetSSLContext(void) const;
2012-05-07 13:48:17 +02:00
void AddListener(string service);
void AddConnection(string node, string service);
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
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-05-08 09:20:42 +02:00
void ForEachEndpoint(function<int (const NewEndpointEventArgs&)> callback);
Endpoint::Ptr GetEndpointByIdentity(string identity) const;
2012-05-07 13:48:17 +02:00
Event<NewEndpointEventArgs> OnNewEndpoint;
2012-03-28 13:24:49 +02:00
};
}
#endif /* ENDPOINTMANAGER_H */