]> granicus.if.org Git - icinga2/blob - lib/icinga/scheduleddowntime.hpp
Merge pull request #5931 from Icinga/feature/linker-flags
[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 #include <utility>
27
28 namespace icinga
29 {
30
31 class ApplyRule;
32 struct ScriptFrame;
33 class Host;
34 class Service;
35
36 /**
37  * An Icinga scheduled downtime specification.
38  *
39  * @ingroup icinga
40  */
41 class I2_ICINGA_API ScheduledDowntime : public ObjectImpl<ScheduledDowntime>
42 {
43 public:
44         DECLARE_OBJECT(ScheduledDowntime);
45         DECLARE_OBJECTNAME(ScheduledDowntime);
46
47         Checkable::Ptr GetCheckable(void) const;
48
49         static void EvaluateApplyRules(const intrusive_ptr<Host>& host);
50         static void EvaluateApplyRules(const intrusive_ptr<Service>& service);
51
52         virtual void ValidateRanges(const Dictionary::Ptr& value, const ValidationUtils& utils) override;
53
54 protected:
55         virtual void OnAllConfigLoaded(void) override;
56         virtual void Start(bool runtimeCreated) override;
57
58 private:
59         static void TimerProc(void);
60
61         std::pair<double, double> FindNextSegment(void);
62         void CreateNextDowntime(void);
63
64         static bool EvaluateApplyRuleInstance(const Checkable::Ptr& checkable, const String& name, ScriptFrame& frame, const ApplyRule& rule);
65         static bool EvaluateApplyRule(const Checkable::Ptr& checkable, const ApplyRule& rule);
66 };
67
68 }
69
70 #endif /* SCHEDULEDDOWNTIME_H */