]> granicus.if.org Git - icinga2/blob - lib/icinga/scheduleddowntime.ti
Fix ScheduledDowntimes replicating on restart
[icinga2] / lib / icinga / scheduleddowntime.ti
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "icinga/customvarobject.hpp"
21 #impl_include "icinga/service.hpp"
22
23 library icinga;
24
25 namespace icinga
26 {
27
28 code {{{
29 class ScheduledDowntimeNameComposer : public NameComposer
30 {
31 public:
32         virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
33         virtual Dictionary::Ptr ParseName(const String& name) const;
34 };
35 }}}
36
37 class ScheduledDowntime : CustomVarObject < ScheduledDowntimeNameComposer
38 {
39         // Scheduled Downtimes have a dependency on Downtimes. This is to make sure ScheduledDowntimes are activated after
40         // the Downtimes (and other checkables)
41         activation_priority 20;
42
43         load_after Host;
44         load_after Service;
45
46         [config, protected, required, navigation(host)] name(Host) host_name {
47                 navigate {{{
48                         return Host::GetByName(GetHostName());
49                 }}}
50         };
51         [config, protected, navigation(service)] String service_name {
52                 track {{{
53                         if (!oldValue.IsEmpty()) {
54                                 Service::Ptr service = Service::GetByNamePair(GetHostName(), oldValue);
55                                 DependencyGraph::RemoveDependency(this, service.get());
56                         }
57
58                         if (!newValue.IsEmpty()) {
59                                 Service::Ptr service = Service::GetByNamePair(GetHostName(), newValue);
60                                 DependencyGraph::AddDependency(this, service.get());
61                         }
62                 }}}
63                 navigate {{{
64                         if (GetServiceName().IsEmpty())
65                                 return nullptr;
66
67                         Host::Ptr host = Host::GetByName(GetHostName());
68                         return host->GetServiceByShortName(GetServiceName());
69                 }}}
70         };
71
72         [config, required] String author;
73         [config, required] String comment;
74
75         [config] double duration;
76         [config] bool fixed {
77                 default {{{ return true; }}}
78         };
79
80         [config, required] Dictionary::Ptr ranges;
81 };
82
83 validator ScheduledDowntime {
84         Dictionary ranges {
85                 String "*";
86         };
87 };
88
89 }