-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadPool.cpp
55 lines (48 loc) · 1.3 KB
/
ThreadPool.cpp
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
//
// Created by 裴沛东 on 2021/12/29.
//
#include "ThreadPool.h"
#include "util.h"
ThreadPool::ThreadPool(int size):stop(false) {
{
LOG_INFO("threadpool initialized,thread number is %d",size);
}
for(int i=0;i<size;++i) {
threads.emplace_back([this]() {
while(true) {
std::function<void()> task;
{
std::unique_lock<std::mutex> lock(taskMutex);
cv.wait(lock,[this](){
return stop || !tasksQueue.empty();
});
if(stop && tasksQueue.empty()) return;
task = std::move(tasksQueue.front());
tasksQueue.pop();
}
task();
}
});
}
}
ThreadPool::~ThreadPool() {
{
std::unique_lock<std::mutex> lock(taskMutex);
stop = true;
}
cv.notify_all();
for(auto &thread:threads) {
if(thread.joinable()) {
thread.join();
}
}
}
void ThreadPool::addTask(const std::function<void()>& task) {
{
std::unique_lock<std::mutex> lock(taskMutex);
if(stop)
throw std::runtime_error("ThreadPoll already stop, can't add task any more");
tasksQueue.push(task);
}
cv.notify_one();
}