2014-04-11 13:05:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <set>
|
|
|
|
#include <map>
|
2014-07-03 08:51:11 +00:00
|
|
|
#include <list>
|
2014-07-23 09:14:51 +00:00
|
|
|
#include <condition_variable>
|
2016-05-28 10:15:36 +00:00
|
|
|
#include <mutex>
|
2017-02-02 22:08:19 +00:00
|
|
|
#include <atomic>
|
2014-04-11 13:05:17 +00:00
|
|
|
#include <Poco/RWLock.h>
|
2014-07-03 08:51:11 +00:00
|
|
|
#include <Poco/Event.h>
|
2016-10-14 02:51:03 +00:00
|
|
|
#include <Poco/Timestamp.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/Types.h>
|
2014-04-11 13:05:17 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** Using a fixed number of threads, perform an arbitrary number of tasks in an infinite loop.
|
|
|
|
* In this case, one task can run simultaneously from different threads.
|
|
|
|
* Designed for tasks that perform continuous background work (for example, merge).
|
|
|
|
* `Task` is a function that returns a bool - did it do any work.
|
|
|
|
* If not, then the next time will be done later.
|
2014-04-11 13:05:17 +00:00
|
|
|
*/
|
|
|
|
class BackgroundProcessingPool
|
|
|
|
{
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Returns true, if some useful work was done. In that case, thread will not sleep before next run of this task.
|
|
|
|
using Task = std::function<bool()>;
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2014-07-03 08:51:11 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
class TaskInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Wake up any thread.
|
|
|
|
void wake();
|
2014-07-03 08:51:11 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
TaskInfo(BackgroundProcessingPool & pool_, const Task & function_) : pool(pool_), function(function_) {}
|
2016-10-14 02:51:03 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
private:
|
|
|
|
friend class BackgroundProcessingPool;
|
2014-07-03 08:51:11 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BackgroundProcessingPool & pool;
|
|
|
|
Task function;
|
2014-08-14 01:48:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Read lock is hold when task is executed.
|
|
|
|
Poco::RWLock rwlock;
|
|
|
|
std::atomic<bool> removed {false};
|
2014-08-14 01:48:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::multimap<Poco::Timestamp, std::shared_ptr<TaskInfo>>::iterator iterator;
|
|
|
|
};
|
2014-07-03 08:51:11 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
using TaskHandle = std::shared_ptr<TaskInfo>;
|
2014-07-03 08:51:11 +00:00
|
|
|
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BackgroundProcessingPool(int size_);
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getNumberOfThreads() const
|
|
|
|
{
|
|
|
|
return size;
|
|
|
|
}
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
TaskHandle addTask(const Task & task);
|
|
|
|
void removeTask(const TaskHandle & task);
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
~BackgroundProcessingPool();
|
2014-04-11 13:05:17 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
using Tasks = std::multimap<Poco::Timestamp, TaskHandle>; /// key is desired next time to execute (priority).
|
|
|
|
using Threads = std::vector<std::thread>;
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const size_t size;
|
|
|
|
static constexpr double sleep_seconds = 10;
|
|
|
|
static constexpr double sleep_seconds_random_part = 1.0;
|
2014-08-14 01:48:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
Tasks tasks; /// Ordered in priority.
|
|
|
|
std::mutex tasks_mutex;
|
2016-09-01 02:26:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
Threads threads;
|
2014-07-23 09:14:51 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::atomic<bool> shutdown {false};
|
|
|
|
std::condition_variable wake_event;
|
2014-04-11 13:05:17 +00:00
|
|
|
|
2014-08-14 01:48:50 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void threadFunction();
|
2014-04-11 13:05:17 +00:00
|
|
|
};
|
|
|
|
|
2016-05-28 10:15:36 +00:00
|
|
|
using BackgroundProcessingPoolPtr = std::shared_ptr<BackgroundProcessingPool>;
|
2014-07-02 12:30:38 +00:00
|
|
|
|
2014-04-11 13:05:17 +00:00
|
|
|
}
|