summaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.cpp')
-rw-r--r--staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.cpp74
1 files changed, 74 insertions, 0 deletions
diff --git a/staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.cpp b/staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.cpp
new file mode 100644
index 00000000000..61f9666114c
--- /dev/null
+++ b/staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.cpp
@@ -0,0 +1,74 @@
+// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+#include "scheduledexecutor.h"
+#include <vespa/fnet/scheduler.h>
+#include <vespa/fnet/task.h>
+#include <vespa/fnet/transport.h>
+
+namespace vespalib {
+
+typedef vespalib::Executor::Task Task;
+
+class TimerTask : public FNET_Task
+{
+private:
+ TimerTask(const TimerTask &);
+ TimerTask&operator=(const TimerTask &);
+
+ FNET_Scheduler *_scheduler;
+ Task::UP _task;
+ double _interval;
+public:
+ TimerTask(FNET_Scheduler *scheduler, Task::UP task, double interval)
+ : FNET_Task(scheduler),
+ _task(std::move(task)),
+ _interval(interval)
+ { }
+
+ ~TimerTask() {
+ Kill();
+ }
+
+ void PerformTask() override {
+ _task->run();
+ Schedule(_interval);
+ }
+};
+
+ScheduledExecutor::ScheduledExecutor()
+ : _threadPool(128 * 1024),
+ _transport(new FNET_Transport()),
+ _lock(),
+ _taskList()
+{
+ _transport->Start(&_threadPool);
+}
+
+ScheduledExecutor::~ScheduledExecutor()
+{
+ vespalib::LockGuard guard(_lock);
+ _transport->ShutDown(true);
+ _threadPool.Close();
+ _taskList.clear();
+}
+
+
+void
+ScheduledExecutor::scheduleAtFixedRate(vespalib::Executor::Task::UP task, double delay, double interval)
+{
+ vespalib::LockGuard guard(_lock);
+ TimerTaskPtr tTask(new TimerTask(_transport->GetScheduler(), std::move(task), interval));
+ _taskList.push_back(std::move(tTask));
+ _taskList.back()->Schedule(delay);
+}
+
+void
+ScheduledExecutor::reset()
+{
+ vespalib::LockGuard guard(_lock);
+ _transport->ShutDown(true);
+ _taskList.clear();
+ _transport.reset(new FNET_Transport());
+ _transport->Start(&_threadPool);
+}
+
+}