2013-01-29 14:50:51 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://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"
|
2015-08-15 20:28:05 +02:00
|
|
|
#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;
|
|
|
|
|
2015-08-21 15:50:40 +02:00
|
|
|
void Checkable::RemoveAllDowntimes(void)
|
|
|
|
{
|
2015-08-20 17:18:48 +02:00
|
|
|
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
|
|
|
|
Downtime::RemoveDowntime(downtime->GetName(), true, true);
|
2015-08-21 15:50:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
void Checkable::TriggerDowntimes(void)
|
2013-01-31 13:57:14 +01:00
|
|
|
{
|
2015-08-20 17:18:48 +02:00
|
|
|
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
|
|
|
}
|
2013-02-09 17:27:32 +01:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
bool Checkable::IsInDowntime(void) const
|
2013-02-09 17:27:32 +01:00
|
|
|
{
|
2015-08-20 17:18:48 +02:00
|
|
|
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
|
2013-11-09 22:16:53 +01:00
|
|
|
if (downtime->IsActive())
|
2013-02-09 17:27:32 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-05 09:35:49 +02:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
int Checkable::GetDowntimeDepth(void) const
|
2013-07-05 09:35:49 +02:00
|
|
|
{
|
|
|
|
int downtime_depth = 0;
|
2013-11-30 17:42:50 +01:00
|
|
|
|
2015-08-20 17:18:48 +02:00
|
|
|
BOOST_FOREACH(const Downtime::Ptr& downtime, GetDowntimes()) {
|
2013-11-09 22:16:53 +01:00
|
|
|
if (downtime->IsActive())
|
2013-07-05 09:35:49 +02:00
|
|
|
downtime_depth++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return downtime_depth;
|
|
|
|
}
|
2013-11-13 14:56:31 +01:00
|
|
|
|
2015-08-20 17:18:48 +02:00
|
|
|
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);
|
|
|
|
}
|