2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-01-29 14:50:51 +01:00
|
|
|
|
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-01-29 14:50:51 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Checkable::RemoveAllDowntimes()
|
2015-08-21 15:50:40 +02:00
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Downtime::Ptr& downtime : GetDowntimes()) {
|
2021-07-22 17:43:03 +02:00
|
|
|
Downtime::RemoveDowntime(downtime->GetName(), true, true, true);
|
2015-08-21 15:50:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Checkable::TriggerDowntimes()
|
2013-01-31 13:57:14 +01:00
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Downtime::Ptr& downtime : GetDowntimes()) {
|
2015-08-20 17:18:48 +02:00
|
|
|
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
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool Checkable::IsInDowntime() const
|
2013-02-09 17:27:32 +01:00
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Downtime::Ptr& downtime : GetDowntimes()) {
|
2016-05-02 15:32:46 +02:00
|
|
|
if (downtime->IsInEffect())
|
2013-02-09 17:27:32 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-07-05 09:35:49 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int Checkable::GetDowntimeDepth() const
|
2013-07-05 09:35:49 +02:00
|
|
|
{
|
|
|
|
int downtime_depth = 0;
|
2013-11-30 17:42:50 +01:00
|
|
|
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Downtime::Ptr& downtime : GetDowntimes()) {
|
2016-05-02 15:32:46 +02:00
|
|
|
if (downtime->IsInEffect())
|
2013-07-05 09:35:49 +02:00
|
|
|
downtime_depth++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return downtime_depth;
|
|
|
|
}
|
2013-11-13 14:56:31 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
std::set<Downtime::Ptr> Checkable::GetDowntimes() const
|
2015-08-20 17:18:48 +02:00
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_DowntimeMutex);
|
2015-08-20 17:18:48 +02:00
|
|
|
return m_Downtimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Checkable::RegisterDowntime(const Downtime::Ptr& downtime)
|
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_DowntimeMutex);
|
2015-08-20 17:18:48 +02:00
|
|
|
m_Downtimes.insert(downtime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Checkable::UnregisterDowntime(const Downtime::Ptr& downtime)
|
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_DowntimeMutex);
|
2015-08-20 17:18:48 +02:00
|
|
|
m_Downtimes.erase(downtime);
|
|
|
|
}
|