icinga2/lib/icinga/checkable.cpp

126 lines
4.2 KiB
C++
Raw Normal View History

2014-04-03 15:36:13 +02:00
/******************************************************************************
* Icinga 2 *
2016-01-12 08:29:59 +01:00
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
2014-04-03 15:36:13 +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 *
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
2014-05-25 16:23:35 +02:00
#include "icinga/checkable.hpp"
#include "icinga/checkable.tcpp"
#include "icinga/host.hpp"
#include "icinga/service.hpp"
2014-05-25 16:23:35 +02:00
#include "base/objectlock.hpp"
#include "base/utility.hpp"
2014-12-18 15:43:01 +01:00
#include "base/exception.hpp"
2014-04-03 15:36:13 +02:00
#include <boost/foreach.hpp>
#include <boost/bind/apply.hpp>
using namespace icinga;
REGISTER_TYPE(Checkable);
boost::signals2::signal<void (const Checkable::Ptr&, const String&, const String&, AcknowledgementType, bool, double, const MessageOrigin::Ptr&)> Checkable::OnAcknowledgementSet;
boost::signals2::signal<void (const Checkable::Ptr&, const MessageOrigin::Ptr&)> Checkable::OnAcknowledgementCleared;
2014-04-03 15:36:13 +02:00
Checkable::Checkable(void)
: m_CheckRunning(false)
{
SetSchedulingOffset(Utility::Random());
}
2014-04-03 15:36:13 +02:00
void Checkable::Start(bool runtimeCreated)
2014-04-03 15:36:13 +02:00
{
double now = Utility::GetTime();
if (GetNextCheck() < now + 300)
UpdateNextCheck();
ObjectImpl<Checkable>::Start(runtimeCreated);
2014-04-03 15:36:13 +02:00
}
void Checkable::AddGroup(const String& name)
{
boost::mutex::scoped_lock lock(m_CheckableMutex);
Array::Ptr groups;
Host *host = dynamic_cast<Host *>(this);
if (host)
groups = host->GetGroups();
else
groups = static_cast<Service *>(this)->GetGroups();
2014-05-02 00:38:46 +02:00
if (groups && groups->Contains(name))
return;
if (!groups)
groups = new Array();
groups->Add(name);
}
2014-04-03 15:36:13 +02:00
AcknowledgementType Checkable::GetAcknowledgement(void)
{
AcknowledgementType avalue = static_cast<AcknowledgementType>(GetAcknowledgementRaw());
if (avalue != AcknowledgementNone) {
double expiry = GetAcknowledgementExpiry();
if (expiry != 0 && expiry < Utility::GetTime()) {
avalue = AcknowledgementNone;
ClearAcknowledgement();
}
}
return avalue;
}
bool Checkable::IsAcknowledged(void)
{
return GetAcknowledgement() != AcknowledgementNone;
}
void Checkable::AcknowledgeProblem(const String& author, const String& comment, AcknowledgementType type, bool notify, double expiry, const MessageOrigin::Ptr& origin)
2014-04-03 15:36:13 +02:00
{
SetAcknowledgementRaw(type);
SetAcknowledgementExpiry(expiry);
2014-04-03 15:36:13 +02:00
if (notify && !IsPaused())
OnNotificationsRequested(this, NotificationAcknowledgement, GetLastCheckResult(), author, comment, MessageOrigin::Ptr());
2014-04-03 15:36:13 +02:00
OnAcknowledgementSet(this, author, comment, type, notify, expiry, origin);
2014-04-03 15:36:13 +02:00
}
void Checkable::ClearAcknowledgement(const MessageOrigin::Ptr& origin)
2014-04-03 15:36:13 +02:00
{
SetAcknowledgementRaw(AcknowledgementNone);
SetAcknowledgementExpiry(0);
OnAcknowledgementCleared(this, origin);
2014-04-03 15:36:13 +02:00
}
Endpoint::Ptr Checkable::GetCommandEndpoint(void) const
{
return Endpoint::GetByName(GetCommandEndpointRaw());
}
void Checkable::ValidateCheckInterval(double value, const ValidationUtils& utils)
{
ObjectImpl<Checkable>::ValidateCheckInterval(value, utils);
if (value <= 0)
BOOST_THROW_EXCEPTION(ValidationError(this, boost::assign::list_of("check_interval"), "Interval must be greater than 0."));
}