2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
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-05-15 16:24:04 +02:00
|
|
|
/**
|
|
|
|
* Forwards messages between endpoints.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
2012-09-17 13:35:55 +02:00
|
|
|
* @ingroup remoting
|
2012-05-15 16:24:04 +02:00
|
|
|
*/
|
2012-09-10 14:07:32 +02:00
|
|
|
class I2_REMOTING_API EndpointManager : public Object
|
2012-03-28 13:24:49 +02:00
|
|
|
{
|
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-06-21 12:51:50 +02:00
|
|
|
EndpointManager(void);
|
2012-06-14 11:18:20 +02:00
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
static EndpointManager::Ptr GetInstance(void);
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
void SetIdentity(const String& identity);
|
|
|
|
String GetIdentity(void) const;
|
2012-04-24 14:02:15 +02:00
|
|
|
|
2012-07-18 11:43:41 +02:00
|
|
|
void SetSSLContext(const shared_ptr<SSL_CTX>& sslContext);
|
2012-04-27 13:12:06 +02:00
|
|
|
shared_ptr<SSL_CTX> GetSSLContext(void) const;
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
void AddListener(const String& service);
|
|
|
|
void AddConnection(const String& node, const String& service);
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2013-01-22 10:14:52 +01:00
|
|
|
void SendUnicastMessage(const Endpoint::Ptr& recipient, const MessagePart& message);
|
2012-07-18 11:43:41 +02:00
|
|
|
void SendUnicastMessage(const Endpoint::Ptr& sender, const Endpoint::Ptr& recipient, const MessagePart& message);
|
|
|
|
void SendAnycastMessage(const Endpoint::Ptr& sender, const RequestMessage& message);
|
2013-01-22 10:14:52 +01:00
|
|
|
void SendMulticastMessage(const RequestMessage& message);
|
2012-07-18 11:43:41 +02:00
|
|
|
void SendMulticastMessage(const Endpoint::Ptr& sender, const RequestMessage& message);
|
2012-04-18 15:22:25 +02:00
|
|
|
|
2012-09-21 09:43:06 +02:00
|
|
|
typedef function<void(const EndpointManager::Ptr&, const Endpoint::Ptr, const RequestMessage&, const ResponseMessage&, bool TimedOut)> APICallback;
|
|
|
|
|
2012-06-21 00:10:10 +02:00
|
|
|
void SendAPIMessage(const Endpoint::Ptr& sender, const Endpoint::Ptr& recipient, RequestMessage& message,
|
2012-09-21 09:43:06 +02:00
|
|
|
const APICallback& callback, double timeout = 30);
|
2012-06-14 11:18:20 +02:00
|
|
|
|
|
|
|
void ProcessResponseMessage(const Endpoint::Ptr& sender, const ResponseMessage& message);
|
|
|
|
|
2012-06-16 13:06:06 +02:00
|
|
|
boost::signal<void (const EndpointManager::Ptr&, const Endpoint::Ptr&)> OnNewEndpoint;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2012-08-02 09:38:08 +02:00
|
|
|
String m_Identity;
|
2012-09-03 10:28:14 +02:00
|
|
|
Endpoint::Ptr m_Endpoint;
|
|
|
|
|
2012-09-10 14:07:32 +02:00
|
|
|
shared_ptr<SSL_CTX> m_SSLContext;
|
|
|
|
|
2012-09-03 10:28:14 +02:00
|
|
|
Timer::Ptr m_SubscriptionTimer;
|
|
|
|
|
|
|
|
Timer::Ptr m_ReconnectTimer;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-11-22 12:04:32 +01:00
|
|
|
set<TcpSocket::Ptr> m_Servers;
|
|
|
|
set<TlsStream::Ptr> m_PendingClients;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-06-16 13:06:06 +02:00
|
|
|
/**
|
|
|
|
* Information about a pending API request.
|
|
|
|
*
|
2012-09-17 13:35:55 +02:00
|
|
|
* @ingroup remoting
|
2012-06-16 13:06:06 +02:00
|
|
|
*/
|
2012-09-10 14:07:32 +02:00
|
|
|
struct I2_REMOTING_API PendingRequest
|
2012-06-16 13:06:06 +02:00
|
|
|
{
|
2012-08-03 18:17:47 +02:00
|
|
|
double Timeout;
|
2012-06-16 13:06:06 +02:00
|
|
|
RequestMessage Request;
|
|
|
|
function<void(const EndpointManager::Ptr&, const Endpoint::Ptr, const RequestMessage&, const ResponseMessage&, bool TimedOut)> Callback;
|
|
|
|
|
|
|
|
bool HasTimedOut(void) const
|
|
|
|
{
|
2012-08-03 18:17:47 +02:00
|
|
|
return Utility::GetTime() > Timeout;
|
2012-06-16 13:06:06 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-06-14 11:18:20 +02:00
|
|
|
long m_NextMessageID;
|
2012-08-02 09:38:08 +02:00
|
|
|
map<String, PendingRequest> m_Requests;
|
2012-06-14 11:18:20 +02:00
|
|
|
Timer::Ptr m_RequestTimer;
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
static bool RequestTimeoutLessComparer(const pair<String, PendingRequest>& a, const pair<String, PendingRequest>& b);
|
2012-06-15 19:32:41 +02:00
|
|
|
void RequestTimerHandler(void);
|
2012-06-14 11:18:20 +02:00
|
|
|
|
2012-09-03 10:28:14 +02:00
|
|
|
void SubscriptionTimerHandler(void);
|
|
|
|
|
|
|
|
void ReconnectTimerHandler(void);
|
|
|
|
|
2012-11-22 12:04:32 +01:00
|
|
|
void NewClientHandler(const Socket::Ptr& client, TlsRole rol);
|
|
|
|
void ClientConnectedHandler(const Stream::Ptr& client, const String& peerAddress);
|
2012-12-04 08:42:24 +01:00
|
|
|
void ClientClosedHandler(const Stream::Ptr& client);
|
2012-05-24 19:36:37 +02:00
|
|
|
};
|
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
#endif /* ENDPOINTMANAGER_H */
|