-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadPool.cpp
More file actions
75 lines (62 loc) · 1.11 KB
/
Copy pathThreadPool.cpp
File metadata and controls
75 lines (62 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include "ThreadPool.h"
#include "Logger.h"
using namespace std;
ThreadPool::ThreadPool(size_t threadCount)
: running(true)
{
Logger::info("ThreadPool initialized with " + to_string(threadCount) + " workers");
for(size_t i = 0; i < threadCount; i++)
{
workers.emplace_back(
&ThreadPool::workerLoop,
this
);
}
}
ThreadPool::~ThreadPool()
{
shutdown();
}
void ThreadPool::submit(Task task)
{
if(!running)
{
return;
}
taskQueue.push(std::move(task));
}
void ThreadPool::shutdown()
{
if(!running.exchange(false))
{
return;
}
Logger::info("ThreadPool shutting down");
taskQueue.stop();
for(thread& worker : workers)
{
if(worker.joinable())
{
worker.join();
}
}
}
size_t ThreadPool::workerCount() const
{
return workers.size();
}
void ThreadPool::workerLoop()
{
Task task;
while(taskQueue.pop(task))
{
try
{
task();
}
catch(...)
{
Logger::error("Worker caught exception");
}
}
}