2014-05-09 11:32:24 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012-2014 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "remote/zone.hpp"
|
|
|
|
#include "remote/apilistener.hpp"
|
|
|
|
#include "base/dynamictype.hpp"
|
|
|
|
#include "base/utility.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
#include "base/timer.hpp"
|
2014-05-11 17:14:35 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2014-05-09 11:32:24 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
static Timer::Ptr l_AuthorityTimer;
|
|
|
|
|
|
|
|
static bool ObjectNameLessComparer(const DynamicObject::Ptr& a, const DynamicObject::Ptr& b)
|
|
|
|
{
|
|
|
|
return a->GetName() < b->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void AuthorityTimerHandler(void)
|
|
|
|
{
|
|
|
|
ApiListener::Ptr listener = ApiListener::GetInstance();
|
|
|
|
|
|
|
|
if (!listener || !listener->IsActive())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Zone::Ptr my_zone = Zone::GetLocalZone();
|
2014-08-04 16:34:17 +02:00
|
|
|
if (!my_zone)
|
|
|
|
return;
|
|
|
|
|
2014-05-09 11:32:24 +02:00
|
|
|
Endpoint::Ptr my_endpoint = Endpoint::GetLocalEndpoint();
|
|
|
|
|
|
|
|
std::vector<Endpoint::Ptr> endpoints;
|
|
|
|
BOOST_FOREACH(const Endpoint::Ptr& endpoint, my_zone->GetEndpoints()) {
|
|
|
|
if (!endpoint->IsConnected() && endpoint != my_endpoint)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
endpoints.push_back(endpoint);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(endpoints.begin(), endpoints.end(), ObjectNameLessComparer);
|
|
|
|
|
|
|
|
BOOST_FOREACH(const DynamicType::Ptr& type, DynamicType::GetTypes()) {
|
|
|
|
BOOST_FOREACH(const DynamicObject::Ptr& object, type->GetObjects()) {
|
|
|
|
Endpoint::Ptr endpoint = endpoints[Utility::SDBM(object->GetName()) % endpoints.size()];
|
|
|
|
|
2014-08-13 20:30:28 +02:00
|
|
|
if (object->GetHAMode() == HARunOnce)
|
|
|
|
object->SetAuthority(endpoint == my_endpoint);
|
2014-05-09 11:32:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void StaticInitialize(void)
|
|
|
|
{
|
|
|
|
l_AuthorityTimer = make_shared<Timer>();
|
|
|
|
l_AuthorityTimer->OnTimerExpired.connect(boost::bind(&AuthorityTimerHandler));
|
|
|
|
l_AuthorityTimer->SetInterval(30);
|
|
|
|
l_AuthorityTimer->Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
INITIALIZE_ONCE(StaticInitialize);
|