2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2015-08-25 13:53:43 +02:00
|
|
|
#impl_include "icinga/service.hpp"
|
2013-11-13 14:56:31 +01:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library icinga;
|
|
|
|
|
2013-11-13 14:56:31 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
2017-12-31 07:22:16 +01:00
|
|
|
class ScheduledDowntimeNameComposer : public NameComposer
|
2014-04-05 22:17:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-06 19:35:47 +01:00
|
|
|
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
|
2015-08-13 09:02:52 +02:00
|
|
|
virtual Dictionary::Ptr ParseName(const String& name) const;
|
2014-04-05 22:17:20 +02:00
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
class ScheduledDowntime : CustomVarObject < ScheduledDowntimeNameComposer
|
2013-11-13 14:56:31 +01:00
|
|
|
{
|
2018-06-08 10:54:06 +02:00
|
|
|
// Scheduled Downtimes have a dependency on Downtimes. This is to make sure ScheduledDowntimes are activated after
|
|
|
|
// the Downtimes (and other checkables)
|
|
|
|
activation_priority 20;
|
|
|
|
|
2015-02-25 12:43:03 +01:00
|
|
|
load_after Host;
|
|
|
|
load_after Service;
|
|
|
|
|
2015-09-22 09:42:30 +02:00
|
|
|
[config, protected, required, navigation(host)] name(Host) host_name {
|
|
|
|
navigate {{{
|
|
|
|
return Host::GetByName(GetHostName());
|
|
|
|
}}}
|
|
|
|
};
|
|
|
|
[config, protected, navigation(service)] String service_name {
|
2015-08-25 13:53:43 +02:00
|
|
|
track {{{
|
|
|
|
if (!oldValue.IsEmpty()) {
|
|
|
|
Service::Ptr service = Service::GetByNamePair(GetHostName(), oldValue);
|
|
|
|
DependencyGraph::RemoveDependency(this, service.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!newValue.IsEmpty()) {
|
|
|
|
Service::Ptr service = Service::GetByNamePair(GetHostName(), newValue);
|
2016-05-09 13:48:30 +02:00
|
|
|
DependencyGraph::AddDependency(this, service.get());
|
2015-08-25 13:53:43 +02:00
|
|
|
}
|
|
|
|
}}}
|
2015-09-22 09:42:30 +02:00
|
|
|
navigate {{{
|
|
|
|
if (GetServiceName().IsEmpty())
|
2017-11-30 08:36:35 +01:00
|
|
|
return nullptr;
|
2015-09-22 09:42:30 +02:00
|
|
|
|
|
|
|
Host::Ptr host = Host::GetByName(GetHostName());
|
|
|
|
return host->GetServiceByShortName(GetServiceName());
|
|
|
|
}}}
|
2015-08-25 13:53:43 +02:00
|
|
|
};
|
2013-11-13 14:56:31 +01:00
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
[config, required] String author;
|
|
|
|
[config, required] String comment;
|
2013-11-13 14:56:31 +01:00
|
|
|
|
|
|
|
[config] double duration;
|
|
|
|
[config] bool fixed {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
|
|
|
|
2018-08-08 14:42:18 +02:00
|
|
|
[config] Value child_options {
|
|
|
|
default {{{ return "DowntimeNoChildren"; }}}
|
|
|
|
};
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
[config, required] Dictionary::Ptr ranges;
|
|
|
|
};
|
|
|
|
|
|
|
|
validator ScheduledDowntime {
|
|
|
|
Dictionary ranges {
|
|
|
|
String "*";
|
|
|
|
};
|
2013-11-13 14:56:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|