icinga2/icinga/endpointmanager.cpp

179 lines
5.4 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 *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
******************************************************************************/
#include "i2-icinga.h"
using namespace icinga;
2012-04-27 13:12:06 +02:00
void EndpointManager::SetIdentity(string identity)
2012-04-24 14:02:15 +02:00
{
m_Identity = identity;
2012-04-24 14:02:15 +02:00
}
string EndpointManager::GetIdentity(void) const
{
return m_Identity;
}
2012-04-27 13:12:06 +02:00
void EndpointManager::SetSSLContext(shared_ptr<SSL_CTX> sslContext)
{
m_SSLContext = sslContext;
}
shared_ptr<SSL_CTX> EndpointManager::GetSSLContext(void) const
{
return m_SSLContext;
}
2012-05-07 13:48:17 +02:00
void EndpointManager::AddListener(string service)
{
2012-04-26 21:33:23 +02:00
stringstream s;
2012-05-07 13:48:17 +02:00
s << "Adding new listener: port " << service;
2012-04-26 21:33:23 +02:00
Application::Log(s.str());
2012-04-24 14:02:15 +02:00
JsonRpcServer::Ptr server = make_shared<JsonRpcServer>(m_SSLContext);
RegisterServer(server);
2012-05-07 13:48:17 +02:00
server->Bind(service, AF_INET6);
server->Listen();
server->Start();
}
2012-05-07 13:48:17 +02:00
void EndpointManager::AddConnection(string node, string service)
{
stringstream s;
2012-05-07 13:48:17 +02:00
s << "Adding new endpoint: [" << node << "]:" << service;
Application::Log(s.str());
2012-04-18 15:22:25 +02:00
JsonRpcEndpoint::Ptr endpoint = make_shared<JsonRpcEndpoint>();
RegisterEndpoint(endpoint);
2012-05-07 13:48:17 +02:00
endpoint->Connect(node, service, m_SSLContext);
}
void EndpointManager::RegisterServer(JsonRpcServer::Ptr server)
{
m_Servers.push_front(server);
server->OnNewClient += bind_weak(&EndpointManager::NewClientHandler, shared_from_this());
}
2012-04-18 15:22:25 +02:00
int EndpointManager::NewClientHandler(const NewClientEventArgs& ncea)
{
string address = ncea.Client->GetPeerAddress();
Application::Log("Accepted new client from " + address);
2012-04-18 15:22:25 +02:00
JsonRpcEndpoint::Ptr endpoint = make_shared<JsonRpcEndpoint>();
endpoint->SetClient(static_pointer_cast<JsonRpcClient>(ncea.Client));
RegisterEndpoint(endpoint);
return 0;
}
2012-04-18 15:22:25 +02:00
void EndpointManager::UnregisterServer(JsonRpcServer::Ptr server)
{
2012-04-18 15:22:25 +02:00
m_Servers.remove(server);
// TODO: unbind event
}
void EndpointManager::RegisterEndpoint(Endpoint::Ptr endpoint)
{
2012-04-27 13:12:06 +02:00
if (!endpoint->IsLocal() && endpoint->GetIdentity() != "")
throw InvalidArgumentException("Identity must be empty.");
2012-04-18 15:22:25 +02:00
endpoint->SetEndpointManager(static_pointer_cast<EndpointManager>(shared_from_this()));
m_Endpoints.push_front(endpoint);
2012-04-18 15:22:25 +02:00
NewEndpointEventArgs neea;
neea.Source = shared_from_this();
neea.Endpoint = endpoint;
OnNewEndpoint(neea);
}
void EndpointManager::UnregisterEndpoint(Endpoint::Ptr endpoint)
{
m_Endpoints.remove(endpoint);
}
void EndpointManager::SendUnicastRequest(Endpoint::Ptr sender, Endpoint::Ptr recipient, const JsonRpcRequest& request, bool fromLocal)
{
if (sender == recipient)
return;
/* don't forward messages between non-local endpoints */
if (!fromLocal && !recipient->IsLocal())
return;
string method;
if (!request.GetMethod(&method))
throw InvalidArgumentException("Missing 'method' parameter.");
2012-05-07 13:48:17 +02:00
if (recipient->IsMethodSink(method)) {
Application::Log(sender->GetAddress() + " -> " + recipient->GetAddress() + ": " + method);
recipient->ProcessRequest(sender, request);
2012-05-07 13:48:17 +02:00
}
}
2012-04-18 15:22:25 +02:00
void EndpointManager::SendAnycastRequest(Endpoint::Ptr sender, const JsonRpcRequest& request, bool fromLocal)
{
2012-04-16 16:27:41 +02:00
throw NotImplementedException();
}
2012-04-18 15:22:25 +02:00
void EndpointManager::SendMulticastRequest(Endpoint::Ptr sender, const JsonRpcRequest& request, bool fromLocal)
2012-04-16 16:27:41 +02:00
{
#ifdef _DEBUG
string id;
2012-04-18 15:22:25 +02:00
if (request.GetID(&id))
2012-04-16 16:27:41 +02:00
throw InvalidArgumentException("Multicast requests must not have an ID.");
#endif /* _DEBUG */
string method;
2012-04-18 15:22:25 +02:00
if (!request.GetMethod(&method))
throw InvalidArgumentException("Message is missing the 'method' property.");
2012-04-16 16:27:41 +02:00
for (list<Endpoint::Ptr>::iterator i = m_Endpoints.begin(); i != m_Endpoints.end(); i++)
{
SendUnicastRequest(sender, *i, request, fromLocal);
2012-04-18 15:22:25 +02:00
}
}
2012-05-08 09:20:42 +02:00
void EndpointManager::ForEachEndpoint(function<int (const NewEndpointEventArgs&)> callback)
2012-04-18 15:22:25 +02:00
{
NewEndpointEventArgs neea;
neea.Source = shared_from_this();
list<Endpoint::Ptr>::iterator prev, i;
for (i = m_Endpoints.begin(); i != m_Endpoints.end(); ) {
prev = i;
i++;
neea.Endpoint = *prev;
callback(neea);
}
}
2012-05-07 13:48:17 +02:00
Endpoint::Ptr EndpointManager::GetEndpointByIdentity(string identity) const
2012-05-07 13:48:17 +02:00
{
list<Endpoint::Ptr>::const_iterator i;
for (i = m_Endpoints.begin(); i != m_Endpoints.end(); i++) {
if ((*i)->GetIdentity() == identity)
return *i;
2012-05-07 13:48:17 +02:00
}
return Endpoint::Ptr();
2012-05-07 13:48:17 +02:00
}