2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-04-15 12:48:12 +02:00
|
|
|
|
|
|
|
#ifndef LEGACYTIMEPERIOD_H
|
|
|
|
#define LEGACYTIMEPERIOD_H
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/i2-icinga.hpp"
|
|
|
|
#include "icinga/timeperiod.hpp"
|
|
|
|
#include "base/dictionary.hpp"
|
2019-07-09 16:13:54 +02:00
|
|
|
#include <boost/date_time/gregorian/gregorian.hpp>
|
2013-04-15 12:48:12 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements Icinga 1.x time periods.
|
|
|
|
*
|
|
|
|
* @ingroup icinga
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class LegacyTimePeriod
|
2013-04-15 12:48:12 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static Array::Ptr ScriptFunc(const TimePeriod::Ptr& tp, double start, double end);
|
|
|
|
|
2013-04-17 14:26:04 +02:00
|
|
|
static bool IsInTimeRange(tm *begin, tm *end, int stride, tm *reference);
|
|
|
|
static void FindNthWeekday(int wday, int n, tm *reference);
|
|
|
|
static int WeekdayFromString(const String& daydef);
|
|
|
|
static int MonthFromString(const String& monthdef);
|
|
|
|
static void ParseTimeSpec(const String& timespec, tm *begin, tm *end, tm *reference);
|
|
|
|
static void ParseTimeRange(const String& timerange, tm *begin, tm *end, int *stride, tm *reference);
|
2013-04-15 12:48:12 +02:00
|
|
|
static bool IsInDayDefinition(const String& daydef, tm *reference);
|
2013-08-09 11:07:55 +02:00
|
|
|
static void ProcessTimeRangeRaw(const String& timerange, tm *reference, tm *begin, tm *end);
|
2013-04-15 12:48:12 +02:00
|
|
|
static Dictionary::Ptr ProcessTimeRange(const String& timerange, tm *reference);
|
|
|
|
static void ProcessTimeRanges(const String& timeranges, tm *reference, const Array::Ptr& result);
|
2013-11-13 14:56:31 +01:00
|
|
|
static Dictionary::Ptr FindNextSegment(const String& daydef, const String& timeranges, tm *reference);
|
2018-10-18 18:42:21 +02:00
|
|
|
static Dictionary::Ptr FindRunningSegment(const String& daydef, const String& timeranges, tm *reference);
|
2013-04-15 12:48:12 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
LegacyTimePeriod();
|
2019-07-09 16:13:54 +02:00
|
|
|
|
|
|
|
static boost::gregorian::date GetEndOfMonthDay(int year, int month);
|
2013-04-15 12:48:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* LEGACYTIMEPERIOD_H */
|