#include <thread_pool.h>
Definition at line 25 of file thread_pool.h.
◆ Thread_Pool() [1/4]
Botan::Thread_Pool::Thread_Pool |
( |
std::optional< size_t > | pool_size | ) |
|
Initialize a thread pool with some number of threads
- Parameters
-
pool_size | number of threads in the pool, if 0 then some default value is chosen. If the optional is nullopt then the thread pool is disabled; all work is executed immediately when queued. |
Definition at line 59 of file thread_pool.cpp.
59 {
60 m_shutdown = false;
61
62 const std::string tname = "Botan thread";
63
64 if(!opt_pool_size.has_value()) {
65 return;
66 }
67
68 size_t pool_size = opt_pool_size.value();
69
70 if(pool_size == 0) {
72
73
74 if(pool_size == 0) {
75 pool_size = 2;
76 }
77
78
79
80
81
82 if(pool_size > 16) {
83 pool_size = 16;
84 }
85 }
86
87 m_workers.resize(pool_size);
88
89 for(size_t i = 0; i != pool_size; ++i) {
90 m_workers[i] = std::thread(&Thread_Pool::worker_thread, this);
91 OS::set_thread_name(m_workers[i], tname);
92 }
93}
size_t BOTAN_TEST_API get_cpu_available()
References Botan::OS::get_cpu_available().
◆ Thread_Pool() [2/4]
Botan::Thread_Pool::Thread_Pool |
( |
size_t | pool_size = 0 | ) |
|
|
inline |
Initialize a thread pool with some number of threads
- Parameters
-
pool_size | number of threads in the pool, if 0 then some default value is chosen. |
Definition at line 46 of file thread_pool.h.
Thread_Pool(std::optional< size_t > pool_size)
◆ ~Thread_Pool()
Botan::Thread_Pool::~Thread_Pool |
( |
| ) |
|
|
inline |
◆ Thread_Pool() [3/4]
Botan::Thread_Pool::Thread_Pool |
( |
const Thread_Pool & | | ) |
|
|
delete |
◆ Thread_Pool() [4/4]
◆ global_instance()
Return an instance to a shared thread pool
Definition at line 54 of file thread_pool.cpp.
54 {
55 static Thread_Pool g_thread_pool(global_thread_pool_size());
56 return g_thread_pool;
57}
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ queue_thunk()
void Botan::Thread_Pool::queue_thunk |
( |
const std::function< void()> & | fn | ) |
|
Definition at line 114 of file thread_pool.cpp.
114 {
115 std::unique_lock<std::mutex>
lock(m_mutex);
116
117 if(m_shutdown) {
118 throw Invalid_State("Cannot add work after thread pool has shut down");
119 }
120
121 if(m_workers.empty()) {
122 return fn();
123 }
124
125 m_tasks.push_back(fn);
126 m_more_tasks.notify_one();
127}
secure_vector< T > lock(const std::vector< T > &in)
References Botan::lock().
◆ run()
template<class F , class... Args>
auto Botan::Thread_Pool::run |
( |
F && | f, |
|
|
Args &&... | args ) -> std::future<typename std::invoke_result<F, Args...>::type> |
|
inline |
Definition at line 66 of file thread_pool.h.
66 {
67 using return_type = typename std::invoke_result<F, Args...>::type;
68
69 auto future_work = std::bind(std::forward<F>(f), std::forward<Args>(args)...);
70 auto task = std::make_shared<std::packaged_task<return_type()>>(future_work);
71 auto future_result = task->get_future();
73 return future_result;
74 }
void queue_thunk(const std::function< void()> &)
◆ shutdown()
void Botan::Thread_Pool::shutdown |
( |
| ) |
|
Definition at line 95 of file thread_pool.cpp.
95 {
96 {
97 std::unique_lock<std::mutex>
lock(m_mutex);
98
99 if(m_shutdown == true) {
100 return;
101 }
102
103 m_shutdown = true;
104
105 m_more_tasks.notify_all();
106 }
107
108 for(auto&& thread : m_workers) {
109 thread.join();
110 }
111 m_workers.clear();
112}
References Botan::lock().
◆ worker_count()
size_t Botan::Thread_Pool::worker_count |
( |
| ) |
const |
|
inline |
Definition at line 52 of file thread_pool.h.
52{ return m_workers.size(); }
The documentation for this class was generated from the following files: