icinga2/lib/icinga/checkable-downtime.cpp

83 lines
2.7 KiB
C++
Raw Normal View History

2013-01-29 14:50:51 +01:00
/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
2013-01-29 14:50:51 +01: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/service.hpp"
#include "base/configtype.hpp"
2014-05-25 16:23:35 +02:00
#include "base/objectlock.hpp"
2014-10-19 14:21:12 +02:00
#include "base/logger.hpp"
2014-05-25 16:23:35 +02:00
#include "base/utility.hpp"
#include "base/convert.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/foreach.hpp>
2013-01-29 14:50:51 +01:00
using namespace icinga;
void Checkable::RemoveAllDowntimes(void)
{
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
Downtime::RemoveDowntime(downtime->GetName(), true, true);
}
}
2014-04-03 15:36:13 +02:00
void Checkable::TriggerDowntimes(void)
{
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
downtime->TriggerDowntime();
2013-01-30 14:28:13 +01:00
}
2013-01-29 14:50:51 +01:00
}
2014-04-03 15:36:13 +02:00
bool Checkable::IsInDowntime(void) const
{
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
if (downtime->IsActive())
return true;
}
return false;
}
2014-04-03 15:36:13 +02:00
int Checkable::GetDowntimeDepth(void) const
{
int downtime_depth = 0;
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
if (downtime->IsActive())
downtime_depth++;
}
return downtime_depth;
}
std::set<Downtime::Ptr> Checkable::GetDowntimes(void) const
{
boost::mutex::scoped_lock lock(m_DowntimeMutex);
return m_Downtimes;
}
void Checkable::RegisterDowntime(const Downtime::Ptr& downtime)
{
boost::mutex::scoped_lock lock(m_DowntimeMutex);
m_Downtimes.insert(downtime);
}
void Checkable::UnregisterDowntime(const Downtime::Ptr& downtime)
{
boost::mutex::scoped_lock lock(m_DowntimeMutex);
m_Downtimes.erase(downtime);
}