2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* 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
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "remote/endpoint.hpp"
|
|
|
|
#include "remote/apilistener.hpp"
|
|
|
|
#include "remote/apiclient.hpp"
|
|
|
|
#include "remote/zone.hpp"
|
|
|
|
#include "base/dynamictype.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/exception.hpp"
|
2014-05-11 17:14:35 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2012-04-06 08:56:52 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
REGISTER_TYPE(Endpoint);
|
2012-09-03 10:28:14 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
boost::signals2::signal<void(const Endpoint::Ptr&, const ApiClient::Ptr&)> Endpoint::OnConnected;
|
|
|
|
boost::signals2::signal<void(const Endpoint::Ptr&, const ApiClient::Ptr&)> Endpoint::OnDisconnected;
|
2012-09-03 10:28:14 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
void Endpoint::OnConfigLoaded(void)
|
2012-04-18 15:22:25 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
DynamicObject::OnConfigLoaded();
|
2012-04-18 15:22:25 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
BOOST_FOREACH(const Zone::Ptr& zone, DynamicType::GetObjects<Zone>()) {
|
|
|
|
const std::set<Endpoint::Ptr> members = zone->GetEndpoints();
|
2014-04-25 14:33:45 +02:00
|
|
|
|
2014-06-06 13:30:06 +02:00
|
|
|
if (members.empty())
|
|
|
|
continue;
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
if (members.find(GetSelf()) != members.end()) {
|
|
|
|
if (m_Zone)
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Endpoint '" + GetName() + "' is in more than one zone."));
|
|
|
|
|
|
|
|
m_Zone = zone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!m_Zone)
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Endpoint '" + GetName() + "' does not belong to a zone."));
|
2012-09-03 10:28:14 +02:00
|
|
|
}
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
void Endpoint::AddClient(const ApiClient::Ptr& client)
|
2012-09-03 10:28:14 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
bool was_master = ApiListener::GetInstance()->IsMaster();
|
2014-04-25 14:33:45 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_ClientsLock);
|
|
|
|
m_Clients.insert(client);
|
|
|
|
}
|
2013-10-17 10:56:42 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
bool is_master = ApiListener::GetInstance()->IsMaster();
|
2013-03-02 09:07:47 +01:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
if (was_master != is_master)
|
|
|
|
ApiListener::OnMasterChanged(is_master);
|
2013-04-04 16:08:02 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
OnConnected(GetSelf(), client);
|
2012-04-18 15:22:25 +02:00
|
|
|
}
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
void Endpoint::RemoveClient(const ApiClient::Ptr& client)
|
2012-05-08 10:13:15 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
bool was_master = ApiListener::GetInstance()->IsMaster();
|
2013-09-02 15:12:20 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_ClientsLock);
|
|
|
|
m_Clients.erase(client);
|
|
|
|
}
|
2012-09-03 10:28:14 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
bool is_master = ApiListener::GetInstance()->IsMaster();
|
2012-09-03 10:28:14 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
if (was_master != is_master)
|
|
|
|
ApiListener::OnMasterChanged(is_master);
|
2014-02-21 14:12:34 +01:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
OnDisconnected(GetSelf(), client);
|
2012-09-03 10:28:14 +02:00
|
|
|
}
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
std::set<ApiClient::Ptr> Endpoint::GetClients(void) const
|
2012-09-03 10:28:14 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
boost::mutex::scoped_lock lock(m_ClientsLock);
|
|
|
|
return m_Clients;
|
|
|
|
}
|
2014-02-21 14:12:34 +01:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
Zone::Ptr Endpoint::GetZone(void) const
|
|
|
|
{
|
|
|
|
return m_Zone;
|
|
|
|
}
|
2013-04-04 16:08:02 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
bool Endpoint::IsConnected(void) const
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_ClientsLock);
|
|
|
|
return !m_Clients.empty();
|
2012-09-03 10:28:14 +02:00
|
|
|
}
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
Endpoint::Ptr Endpoint::GetLocalEndpoint(void)
|
2013-09-12 10:03:48 +02:00
|
|
|
{
|
2014-05-03 20:02:22 +02:00
|
|
|
ApiListener::Ptr listener = ApiListener::GetInstance();
|
2013-09-12 10:03:48 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
if (!listener)
|
|
|
|
return Endpoint::Ptr();
|
2013-09-12 10:03:48 +02:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
return Endpoint::GetByName(listener->GetIdentity());
|
2013-09-12 10:03:48 +02:00
|
|
|
}
|