]> granicus.if.org Git - icinga2/blob - lib/icinga/scheduleddowntime.hpp
Merge pull request #5914 from Icinga/fix/itl-check-mongodb-5817
[icinga2] / lib / icinga / scheduleddowntime.hpp
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 #ifndef SCHEDULEDDOWNTIME_H
21 #define SCHEDULEDDOWNTIME_H
22
23 #include "icinga/i2-icinga.hpp"
24 #include "icinga/scheduleddowntime.thpp"
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 Dictionary::Ptr& value, const ValidationUtils& utils) override;
52
53 protected:
54         void OnAllConfigLoaded() override;
55         void Start(bool runtimeCreated) override;
56
57 private:
58         static void TimerProc();
59
60         std::pair<double, double> FindNextSegment();
61         void CreateNextDowntime();
62
63         static bool EvaluateApplyRuleInstance(const Checkable::Ptr& checkable, const String& name, ScriptFrame& frame, const ApplyRule& rule);
64         static bool EvaluateApplyRule(const Checkable::Ptr& checkable, const ApplyRule& rule);
65 };
66
67 }
68
69 #endif /* SCHEDULEDDOWNTIME_H */