2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-03-13 16:04:53 +01:00
|
|
|
|
|
|
|
#ifndef TIMEPERIOD_H
|
|
|
|
#define TIMEPERIOD_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/i2-icinga.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/timeperiod-ti.hpp"
|
2013-03-17 20:19:29 +01:00
|
|
|
|
2013-03-13 16:04:53 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A time period.
|
|
|
|
*
|
|
|
|
* @ingroup icinga
|
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class TimePeriod final : public ObjectImpl<TimePeriod>
|
2013-03-13 16:04:53 +01:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(TimePeriod);
|
|
|
|
DECLARE_OBJECTNAME(TimePeriod);
|
2013-03-13 16:04:53 +01:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
void Start(bool runtimeCreated) override;
|
2013-03-13 16:04:53 +01:00
|
|
|
|
2013-04-16 10:12:53 +02:00
|
|
|
void UpdateRegion(double begin, double end, bool clearExisting);
|
2013-03-13 16:04:53 +01:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
bool GetIsInside() const override;
|
2015-02-23 14:06:32 +01:00
|
|
|
|
2013-03-13 16:04:53 +01:00
|
|
|
bool IsInside(double ts) const;
|
|
|
|
double FindNextTransition(double begin);
|
|
|
|
|
2018-01-11 07:08:09 +01:00
|
|
|
void ValidateRanges(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
|
2015-02-12 09:12:55 +01:00
|
|
|
|
2013-03-13 16:04:53 +01:00
|
|
|
private:
|
2013-03-15 09:54:06 +01:00
|
|
|
void AddSegment(double s, double end);
|
|
|
|
void AddSegment(const Dictionary::Ptr& segment);
|
|
|
|
void RemoveSegment(double begin, double end);
|
2016-03-25 12:55:11 +01:00
|
|
|
void RemoveSegment(const Dictionary::Ptr& segment);
|
2013-03-15 09:54:06 +01:00
|
|
|
void PurgeSegments(double end);
|
|
|
|
|
2016-03-25 12:55:11 +01:00
|
|
|
void Merge(const TimePeriod::Ptr& timeperiod, bool include = true);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Dump();
|
2013-04-16 10:12:53 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void UpdateTimerHandler();
|
2013-03-13 16:04:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* TIMEPERIOD_H */
|