21 #include "thread_pool.hpp" 28 void ThreadPool::setWorkerThreadCount(
unsigned workerThreadCount)
30 workerThreads.clear();
31 for (
unsigned i = 0; i < workerThreadCount; i++)
32 workerThreads.emplace_back(
new Worker);
35 void ThreadPool::pushWorkToThread(
unsigned threadIndex, std::function<
void()> func)
37 workerThreads[threadIndex]->pushWork(move(func));
40 void ThreadPool::waitIdle()
42 for (
auto &worker : workerThreads)
46 ThreadPool::Worker::Worker()
48 workerThread = thread(&ThreadPool::Worker::threadEntry,
this);
51 ThreadPool::Worker::~Worker()
53 if (workerThread.joinable())
58 threadIsAlive =
false;
66 void ThreadPool::Worker::pushWork(std::function<
void()> func)
68 lock_guard<mutex> holder{ lock };
69 workQueue.push(move(func));
73 void ThreadPool::Worker::waitIdle()
75 unique_lock<mutex> holder{ lock };
76 cond.wait(holder, [
this] {
return workQueue.empty(); });
79 void ThreadPool::Worker::threadEntry()
83 function<void()> *pWork =
nullptr;
85 unique_lock<mutex> holder{ lock };
86 cond.wait(holder, [
this] {
return !workQueue.empty() || !threadIsAlive; });
90 pWork = &workQueue.front();
96 lock_guard<mutex> holder{ lock };