]> granicus.if.org Git - icinga2/commitdiff
Move EmptyTimePeriod and EvenMinutesTimePeriod to libmethods.
authorGunnar Beutner <gunnar.beutner@netways.de>
Wed, 13 Nov 2013 08:41:06 +0000 (09:41 +0100)
committerGunnar Beutner <gunnar.beutner@netways.de>
Wed, 13 Nov 2013 08:41:06 +0000 (09:41 +0100)
Fixes #5032

lib/icinga/timeperiod.cpp
lib/icinga/timeperiod.h
lib/methods/CMakeLists.txt
lib/methods/timeperiodtask.cpp [new file with mode: 0644]
lib/methods/timeperiodtask.h [new file with mode: 0644]

index 2c963e7ede550c65f7b83f11eb95207a774a8fd8..8fe6b21e2851a0c7f132f7495841824dd1ae464d 100644 (file)
@@ -20,7 +20,6 @@
 #include "icinga/timeperiod.h"
 #include "config/configitem.h"
 #include "base/dynamictype.h"
-#include "base/scriptfunction.h"
 #include "base/objectlock.h"
 #include "base/logger_fwd.h"
 #include "base/timer.h"
@@ -30,8 +29,6 @@
 using namespace icinga;
 
 REGISTER_TYPE(TimePeriod);
-REGISTER_SCRIPTFUNCTION(EmptyTimePeriod, &TimePeriod::EmptyTimePeriodUpdate);
-REGISTER_SCRIPTFUNCTION(EvenMinutesTimePeriod, &TimePeriod::EvenMinutesTimePeriodUpdate);
 
 static Timer::Ptr l_UpdateTimer;
 
@@ -272,29 +269,6 @@ void TimePeriod::UpdateTimerHandler(void)
        }
 }
 
-Array::Ptr TimePeriod::EmptyTimePeriodUpdate(const TimePeriod::Ptr&, double, double)
-{
-       Array::Ptr segments = make_shared<Array>();
-       return segments;
-}
-
-Array::Ptr TimePeriod::EvenMinutesTimePeriodUpdate(const TimePeriod::Ptr&, double begin, double end)
-{
-       Array::Ptr segments = make_shared<Array>();
-
-       for (long t = begin / 60 - 1; t * 60 < end; t++) {
-               if ((t % 2) == 0) {
-                       Dictionary::Ptr segment = make_shared<Dictionary>();
-                       segment->Set("begin", t * 60);
-                       segment->Set("end", (t + 1) * 60);
-
-                       segments->Add(segment);
-               }
-       }
-
-       return segments;
-}
-
 void TimePeriod::Dump(void)
 {
        Array::Ptr segments = GetSegments();
index a4712c36833f0f3981bdfc36bc4ad335f7e2bd04..8062b5c7ddbee59a2fea8b9dce52892cfb67e434 100644 (file)
@@ -45,9 +45,6 @@ public:
        bool IsInside(double ts) const;
        double FindNextTransition(double begin);
 
-       static Array::Ptr EmptyTimePeriodUpdate(const TimePeriod::Ptr& tp, double begin, double end);
-       static Array::Ptr EvenMinutesTimePeriodUpdate(const TimePeriod::Ptr& tp, double begin, double end);
-
 private:
        void AddSegment(double s, double end);
        void AddSegment(const Dictionary::Ptr& segment);
index 7bfdd8e63d4b9f71f69d039a19a740e589882efd..b5fe6b2425acbde9d7bee731a97a19a65a200051 100644 (file)
@@ -18,6 +18,7 @@
 add_library(methods SHARED
   legacytimeperiod.cpp nullchecktask.cpp nulleventtask.cpp pluginchecktask.cpp
   plugineventtask.cpp pluginnotificationtask.cpp randomchecktask.cpp
+  timeperiodtask.cpp
 )
 
 target_link_libraries(methods ${Boost_LIBRARIES} base config icinga)
diff --git a/lib/methods/timeperiodtask.cpp b/lib/methods/timeperiodtask.cpp
new file mode 100644 (file)
index 0000000..e8d23cc
--- /dev/null
@@ -0,0 +1,49 @@
+/******************************************************************************
+ * Icinga 2                                                                   *
+ * Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/)   *
+ *                                                                            *
+ * This program is free software; you can redistribute it and/or              *
+ * modify it under the terms of the GNU General Public License                *
+ * as published by the Free Software Foundation; either version 2             *
+ * of the License, or (at your option) any later version.                     *
+ *                                                                            *
+ * This program is distributed in the hope that it will be useful,            *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
+ * GNU General Public License for more details.                               *
+ *                                                                            *
+ * You should have received a copy of the GNU General Public License          *
+ * along with this program; if not, write to the Free Software Foundation     *
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
+ ******************************************************************************/
+
+#include "methods/timeperiodtask.h"
+#include "base/scriptfunction.h"
+
+using namespace icinga;
+
+REGISTER_SCRIPTFUNCTION(EmptyTimePeriod, &TimePeriodTask::EmptyTimePeriodUpdate);
+REGISTER_SCRIPTFUNCTION(EvenMinutesTimePeriod, &TimePeriodTask::EvenMinutesTimePeriodUpdate);
+
+Array::Ptr TimePeriodTask::EmptyTimePeriodUpdate(const TimePeriod::Ptr&, double, double)
+{
+       Array::Ptr segments = make_shared<Array>();
+       return segments;
+}
+
+Array::Ptr TimePeriodTask::EvenMinutesTimePeriodUpdate(const TimePeriod::Ptr&, double begin, double end)
+{
+       Array::Ptr segments = make_shared<Array>();
+
+       for (long t = begin / 60 - 1; t * 60 < end; t++) {
+               if ((t % 2) == 0) {
+                       Dictionary::Ptr segment = make_shared<Dictionary>();
+                       segment->Set("begin", t * 60);
+                       segment->Set("end", (t + 1) * 60);
+
+                       segments->Add(segment);
+               }
+       }
+
+       return segments;
+}
\ No newline at end of file
diff --git a/lib/methods/timeperiodtask.h b/lib/methods/timeperiodtask.h
new file mode 100644 (file)
index 0000000..7e909a6
--- /dev/null
@@ -0,0 +1,45 @@
+/******************************************************************************
+ * Icinga 2                                                                   *
+ * Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/)   *
+ *                                                                            *
+ * This program is free software; you can redistribute it and/or              *
+ * modify it under the terms of the GNU General Public License                *
+ * as published by the Free Software Foundation; either version 2             *
+ * of the License, or (at your option) any later version.                     *
+ *                                                                            *
+ * This program is distributed in the hope that it will be useful,            *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
+ * GNU General Public License for more details.                               *
+ *                                                                            *
+ * You should have received a copy of the GNU General Public License          *
+ * along with this program; if not, write to the Free Software Foundation     *
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
+ ******************************************************************************/
+
+#ifndef TIMEPERIODTASK_H
+#define TIMEPERIODTASK_H
+
+#include "icinga/timeperiod.h"
+
+namespace icinga
+{
+
+/**
+* Test timeperiod functions.
+*
+* @ingroup methods
+*/
+class TimePeriodTask
+{
+public:
+       static Array::Ptr EmptyTimePeriodUpdate(const TimePeriod::Ptr& tp, double begin, double end);
+       static Array::Ptr EvenMinutesTimePeriodUpdate(const TimePeriod::Ptr& tp, double begin, double end);
+
+private:
+       TimePeriodTask(void);
+};
+
+}
+
+#endif /* TIMEPERIODTASK_H */
\ No newline at end of file