icinga2/lib/icinga/timeperiod.hpp

51 lines
1.0 KiB
C++
Raw Normal View History

/* 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
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
bool GetIsInside() const override;
2013-03-13 16:04:53 +01:00
bool IsInside(double ts) const;
double FindNextTransition(double begin);
void ValidateRanges(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
2013-03-13 16:04:53 +01:00
private:
void AddSegment(double s, double end);
void AddSegment(const Dictionary::Ptr& segment);
void RemoveSegment(double begin, double end);
void RemoveSegment(const Dictionary::Ptr& segment);
void PurgeSegments(double end);
void Merge(const TimePeriod::Ptr& timeperiod, bool include = true);
void Dump();
2013-04-16 10:12:53 +02:00
static void UpdateTimerHandler();
2013-03-13 16:04:53 +01:00
};
}
#endif /* TIMEPERIOD_H */