]> granicus.if.org Git - icinga2/blob - lib/icinga/scheduleddowntime.hpp
Merge branch 'support/2.10'
[icinga2] / lib / icinga / scheduleddowntime.hpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://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 #ifndef SCHEDULEDDOWNTIME_H
21 #define SCHEDULEDDOWNTIME_H
22
23 #include "icinga/i2-icinga.hpp"
24 #include "icinga/scheduleddowntime-ti.hpp"
25 #include "icinga/checkable.hpp"
26
27 namespace icinga
28 {
29
30 class ApplyRule;
31 struct ScriptFrame;
32 class Host;
33 class Service;
34
35 /**
36  * An Icinga scheduled downtime specification.
37  *
38  * @ingroup icinga
39  */
40 class ScheduledDowntime final : public ObjectImpl<ScheduledDowntime>
41 {
42 public:
43         DECLARE_OBJECT(ScheduledDowntime);
44         DECLARE_OBJECTNAME(ScheduledDowntime);
45
46         Checkable::Ptr GetCheckable() const;
47
48         static void EvaluateApplyRules(const intrusive_ptr<Host>& host);
49         static void EvaluateApplyRules(const intrusive_ptr<Service>& service);
50
51         void ValidateRanges(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
52         void ValidateChildOptions(const Lazy<Value>& lvalue, const ValidationUtils& utils) override;
53
54 protected:
55         void OnAllConfigLoaded() override;
56         void Start(bool runtimeCreated) override;
57
58 private:
59         static void TimerProc();
60
61         std::pair<double, double> FindRunningSegment(double minEnd = 0);
62         std::pair<double, double> FindNextSegment();
63         void CreateNextDowntime();
64
65         static bool EvaluateApplyRuleInstance(const Checkable::Ptr& checkable, const String& name, ScriptFrame& frame, const ApplyRule& rule);
66         static bool EvaluateApplyRule(const Checkable::Ptr& checkable, const ApplyRule& rule);
67 };
68
69 }
70
71 #endif /* SCHEDULEDDOWNTIME_H */