2021-09-18 22:08:46 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
2023-04-04 23:52:57 +02:00
|
|
|
struct thread_pool_job
|
|
|
|
{
|
|
|
|
std::function<void()> m_func;
|
|
|
|
std::source_location m_source_location;
|
|
|
|
};
|
|
|
|
|
2021-09-18 22:08:46 +02:00
|
|
|
class thread_pool
|
|
|
|
{
|
|
|
|
std::atomic<bool> m_accept_jobs;
|
|
|
|
std::condition_variable m_data_condition;
|
|
|
|
|
2023-04-04 23:52:57 +02:00
|
|
|
std::stack<thread_pool_job> m_job_stack;
|
2021-09-18 22:08:46 +02:00
|
|
|
std::mutex m_lock;
|
|
|
|
std::vector<std::thread> m_thread_pool;
|
|
|
|
|
|
|
|
std::thread m_managing_thread;
|
2023-03-01 21:27:15 +00:00
|
|
|
|
2023-04-04 23:52:57 +02:00
|
|
|
std::atomic<size_t> m_available_thread_count;
|
|
|
|
|
2021-09-18 22:08:46 +02:00
|
|
|
public:
|
|
|
|
thread_pool();
|
|
|
|
~thread_pool();
|
|
|
|
|
|
|
|
void destroy();
|
2023-04-04 23:52:57 +02:00
|
|
|
void push(std::function<void()> func, std::source_location location = std::source_location::current());
|
2023-03-01 21:27:15 +00:00
|
|
|
|
2021-09-18 22:08:46 +02:00
|
|
|
private:
|
|
|
|
void create();
|
|
|
|
void done();
|
|
|
|
void run();
|
|
|
|
};
|
|
|
|
|
|
|
|
inline thread_pool* g_thread_pool{};
|
2023-04-04 23:52:57 +02:00
|
|
|
}
|