General Utility Library for C++14  2.11
ThreadPool.h
Go to the documentation of this file.
1 
23 // SPDX-License-Identifier: LGPL-2.1-or-later
24 
25 #ifndef GUL14_THREADPOOL_H_
26 #define GUL14_THREADPOOL_H_
27 
28 #include <chrono>
29 #include <condition_variable>
30 #include <functional>
31 #include <future>
32 #include <memory>
33 #include <mutex>
34 #include <stdexcept>
35 #include <thread>
36 #include <vector>
37 
38 #include <gul14/cat.h>
39 #include <gul14/traits.h>
40 
41 namespace gul14 {
42 
43 class ThreadPool;
44 
45 namespace detail {
46 
47 GUL_EXPORT
48 std::shared_ptr<ThreadPool> lock_pool_or_throw(std::weak_ptr<ThreadPool> pool);
49 
50 } // namespace detail
51 
64 enum class TaskState
65 {
66  pending,
67  running,
68  complete,
69  canceled
70 };
71 
109 class ThreadPool : public std::enable_shared_from_this<ThreadPool>
110 {
111 public:
113  using TaskId = std::uint64_t;
114 
131  template <typename T>
133  {
134  public:
142  {}
143 
156  TaskHandle(TaskId id, std::future<T> future, std::shared_ptr<ThreadPool> pool)
157  : future_{ std::move(future) }
158  , id_{ id }
159  , pool_{ std::move(pool) }
160  {}
161 
173  bool cancel()
174  {
175  future_ = {};
176  return detail::lock_pool_or_throw(pool_)->cancel_pending_task(id_);
177  }
178 
186  {
187  if (not future_.valid())
188  throw std::logic_error("Canceled task has no result");
189  return future_.get();
190  }
191 
204  bool is_complete() const
205  {
206  if (not future_.valid())
207  return false;
208 
209  return future_.wait_for(std::chrono::seconds(0)) == std::future_status::ready;
210  }
211 
225  {
226  const auto state = detail::lock_pool_or_throw(pool_)->get_task_state(id_);
227 
228  if (state == InternalTaskState::unknown)
229  {
230  if (is_complete())
231  return TaskState::complete;
232  else
233  return TaskState::canceled;
234  }
235  return static_cast<TaskState>(state);
236  }
237 
238  private:
239  std::future<T> future_;
240  TaskId id_{ 0 };
241  std::weak_ptr<ThreadPool> pool_;
242  };
243 
244 
245  using TimePoint = std::chrono::time_point<std::chrono::system_clock>;
246  using Duration = TimePoint::duration;
247 
249  constexpr static std::size_t default_capacity{ 200 };
250 
252  constexpr static std::size_t max_capacity{ 10'000'000 };
253 
255  constexpr static std::size_t max_threads{ 10'000 };
256 
264  ~ThreadPool();
265 
300  template <typename Function>
301  TaskHandle<invoke_result_t<Function, ThreadPool&>>
302  add_task(Function fct, TimePoint start_time = {}, std::string name = {})
303  {
304  static_assert(
305  is_invocable<Function, ThreadPool&>::value
306  || is_invocable<Function>::value,
307  "Invalid function signature: Must be T fct() or T fct(ThreadPool&)");
308 
309  using Result = invoke_result_t<Function, ThreadPool&>;
310 
311  TaskHandle<Result> task_handle = [this, &fct, start_time, &name]()
312  {
313  std::lock_guard<std::mutex> lock(mutex_);
314 
315  if (is_full_i())
316  {
317  throw std::runtime_error(cat(
318  "Cannot add task: Pending queue has reached capacity (",
319  pending_tasks_.size(), ')'));
320  }
321 
322  using PackagedTask = std::packaged_task<Result(ThreadPool&)>;
323 
324  auto named_task_ptr = std::make_unique<NamedTaskImpl<PackagedTask>>(
325  PackagedTask{ std::move(fct) }, std::move(name));
326 
327  TaskHandle<Result> handle{
328  next_task_id_, named_task_ptr->fct_.get_future(), shared_from_this() };
329 
330  pending_tasks_.emplace_back(
331  next_task_id_, std::move(named_task_ptr), start_time);
332 
333  ++next_task_id_;
334 
335  return handle;
336  }();
337 
338  cv_.notify_one();
339 
340  return task_handle;
341  }
342 
343  template <typename Function,
344  std::enable_if_t<is_invocable<Function>::value, bool> = true>
345  TaskHandle<invoke_result_t<Function>>
346  add_task(Function fct, TimePoint start_time = {}, std::string name = {})
347  {
348  return add_task(
349  [f = std::move(fct)](ThreadPool&) { return f(); },
350  start_time, std::move(name));
351  }
352 
353  template <typename Function,
354  std::enable_if_t<is_invocable<Function, ThreadPool&>::value, bool> = true>
355  TaskHandle<invoke_result_t<Function, ThreadPool&>>
356  add_task(Function fct, Duration delay_before_start, std::string name = {})
357  {
358  return add_task(std::move(fct),
359  std::chrono::system_clock::now() + delay_before_start, std::move(name));
360  }
361 
362  template <typename Function,
363  std::enable_if_t<is_invocable<Function>::value, bool> = true>
364  TaskHandle<invoke_result_t<Function>>
365  add_task(Function fct, Duration delay_before_start, std::string name = {})
366  {
367  return add_task(std::move(fct),
368  std::chrono::system_clock::now() + delay_before_start, std::move(name));
369  }
370 
371  template <typename Function,
372  std::enable_if_t<is_invocable<Function, ThreadPool&>::value, bool> = true>
373  TaskHandle<invoke_result_t<Function, ThreadPool&>>
374  add_task(Function fct, std::string name)
375  {
376  return add_task(std::move(fct), TimePoint{}, std::move(name));
377  }
378 
379  template <typename Function,
380  std::enable_if_t<is_invocable<Function>::value, bool> = true>
381  TaskHandle<invoke_result_t<Function>>
382  add_task(Function fct, std::string name)
383  {
384  return add_task(std::move(fct), TimePoint{}, std::move(name));
385  }
386 
395  GUL_EXPORT
396  std::size_t cancel_pending_tasks();
397 
399  GUL_EXPORT
400  std::size_t capacity() const noexcept { return capacity_; }
401 
403  GUL_EXPORT
404  std::size_t count_pending() const;
405 
407  GUL_EXPORT
408  std::size_t count_threads() const noexcept;
409 
411  GUL_EXPORT
412  std::vector<std::string> get_pending_task_names() const;
413 
415  GUL_EXPORT
416  std::vector<std::string> get_running_task_names() const;
417 
419  GUL_EXPORT
420  bool is_full() const noexcept;
421 
426  GUL_EXPORT
427  bool is_idle() const;
428 
430  GUL_EXPORT
431  bool is_shutdown_requested() const;
432 
442  GUL_EXPORT
443  static std::shared_ptr<ThreadPool> make_shared(
444  std::size_t num_threads, std::size_t capacity = default_capacity);
445 
446 private:
454  enum class InternalTaskState
455  {
457  pending = static_cast<int>(TaskState::pending),
459  running = static_cast<int>(TaskState::running),
461  unknown
462  };
463 
464  struct NamedTask
465  {
466  NamedTask(std::string name)
467  : name_{ std::move(name) }
468  {}
469 
470  virtual ~NamedTask() = default;
471  virtual void operator()(ThreadPool& pool) = 0;
472 
473  std::string name_;
474  };
475 
476  template <typename FunctionType>
477  struct NamedTaskImpl : public NamedTask
478  {
479  public:
480  NamedTaskImpl(FunctionType fct, std::string name)
481  : NamedTask{ std::move(name) }
482  , fct_{ std::move(fct) }
483  {}
484 
485  void operator()(ThreadPool& pool) override { fct_(pool); }
486 
487  FunctionType fct_;
488  };
489 
490  struct Task
491  {
492  TaskId id_{};
493  std::unique_ptr<NamedTask> named_task_;
494  TimePoint start_time_{}; // When the task is to be started (at least no earlier)
495 
496  Task() = default;
497 
498  Task(TaskId task_id, std::unique_ptr<NamedTask> named_task, TimePoint start_time)
499  : id_{ task_id }
500  , named_task_{ std::move(named_task) }
501  , start_time_{ start_time }
502  {}
503  };
504 
505  std::size_t capacity_{ 0 };
506 
511  std::vector<std::thread> threads_;
512 
517  std::condition_variable cv_;
518 
519  mutable std::mutex mutex_; // Protects the following variables
520  std::vector<Task> pending_tasks_;
521  std::vector<TaskId> running_task_ids_;
522  std::vector<std::string> running_task_names_;
523  TaskId next_task_id_ = 0;
524  bool shutdown_requested_{ false };
525 
526 
544  ThreadPool(std::size_t num_threads, std::size_t capacity);
545 
558  GUL_EXPORT
559  bool cancel_pending_task(TaskId task_id);
560 
570  GUL_EXPORT
571  InternalTaskState get_task_state(TaskId task_id) const;
572 
577  GUL_EXPORT
578  bool is_full_i() const noexcept;
579 
584  void perform_work();
585 };
586 
596 inline std::shared_ptr<ThreadPool> make_thread_pool(
597  std::size_t num_threads, std::size_t capacity = ThreadPool::default_capacity)
598 {
599  return ThreadPool::make_shared(num_threads, capacity);
600 }
601 
603 
604 } // namespace gul14
605 
606 #endif // GUL14_THREADPOOL_H_
Declaration of the overload set for cat() and of the associated class ConvertingStringView.
A handle for a task that has (or had) been enqueued on a ThreadPool.
Definition: ThreadPool.h:133
T get_result()
Block until the task has finished and return its result.
Definition: ThreadPool.h:185
bool cancel()
Remove the task from the queue if it is still pending.
Definition: ThreadPool.h:173
TaskHandle()
Default-construct an invalid TaskHandle.
Definition: ThreadPool.h:141
bool is_complete() const
Determine whether the task has completed.
Definition: ThreadPool.h:204
TaskState get_state() const
Determine if the task is running, waiting to be started, completed, or has been canceled.
Definition: ThreadPool.h:224
TaskHandle(TaskId id, std::future< T > future, std::shared_ptr< ThreadPool > pool)
Construct a TaskHandle.
Definition: ThreadPool.h:156
A pool of worker threads with a task queue.
Definition: ThreadPool.h:110
std::uint64_t TaskId
A unique identifier for a task.
Definition: ThreadPool.h:113
~ThreadPool()
Destruct the ThreadPool and join all threads.
Definition: ThreadPool.cc:68
static GUL_EXPORT std::shared_ptr< ThreadPool > make_shared(std::size_t num_threads, std::size_t capacity=default_capacity)
Create a thread pool with the desired number of threads and the specified capacity for enqueuing task...
Definition: ThreadPool.cc:178
GUL_EXPORT std::size_t cancel_pending_tasks()
Remove all pending tasks from the queue.
Definition: ThreadPool.cc:97
GUL_EXPORT bool is_idle() const
Return true if the pool has neither pending tasks nor tasks that are currently being executed.
Definition: ThreadPool.cc:148
GUL_EXPORT std::vector< std::string > get_running_task_names() const
Return a vector with the names of the tasks that are currently running.
Definition: ThreadPool.cc:131
GUL_EXPORT std::vector< std::string > get_pending_task_names() const
Return a vector with the names of the tasks that are waiting to be executed.
Definition: ThreadPool.cc:118
GUL_EXPORT std::size_t capacity() const noexcept
Return the maximum number of pending tasks that can be queued.
Definition: ThreadPool.h:400
constexpr static std::size_t default_capacity
Default capacity for the task queue.
Definition: ThreadPool.h:249
GUL_EXPORT std::size_t count_pending() const
Return the number of pending tasks.
Definition: ThreadPool.cc:107
TaskHandle< invoke_result_t< Function, ThreadPool & > > add_task(Function fct, TimePoint start_time={}, std::string name={})
Enqueue a task.
Definition: ThreadPool.h:302
constexpr static std::size_t max_capacity
Maximum possible capacity for the task queue.
Definition: ThreadPool.h:252
GUL_EXPORT std::size_t count_threads() const noexcept
Return the number of threads in the pool.
Definition: ThreadPool.cc:113
constexpr static std::size_t max_threads
Maximum possible number of threads.
Definition: ThreadPool.h:255
GUL_EXPORT bool is_shutdown_requested() const
Determine whether the thread pool has been requested to shut down.
Definition: ThreadPool.cc:172
GUL_EXPORT bool is_full() const noexcept
Determine whether the queue for pending tasks is full (at capacity).
Definition: ThreadPool.cc:137
std::shared_ptr< ThreadPool > make_thread_pool(std::size_t num_threads, std::size_t capacity=ThreadPool::default_capacity)
Create a thread pool with the desired number of threads and the specified capacity for queuing tasks.
Definition: ThreadPool.h:596
TaskState
An enum describing the state of an individual task.
Definition: ThreadPool.h:65
@ running
The task is currently being executed.
@ pending
The task is waiting to be started.
@ canceled
The task was removed from the queue before it was started.
@ complete
The task has finished (successfully or by throwing an exception).
std::string cat()
Efficiently concatenate an arbitrary number of strings and numbers.
Definition: cat.h:97
Namespace gul14 contains all functions and classes of the General Utility Library.
Definition: doxygen.h:26
Some metaprogramming traits for the General Utility Library.