blob: 619f002cdbf4ffefa1a8049ba521ff00d7480a01 (
plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#include "threadpool.h"
/**
* Stolen from some guy.
*/
// Constructor.
ThreadPool::ThreadPool(int threads) :
terminate(false),
stopped(false)
{
// Create number of required threads and add them to the thread pool vector.
for(int i = 0; i < threads; i++)
{
threadPool.emplace_back(thread(&ThreadPool::Invoke, this));
}
}
void ThreadPool::Enqueue(function<void()> f)
{
// Scope based locking.
{
// Put unique lock on task mutex.
unique_lock<mutex> lock(tasksMutex);
// Push task into queue.
tasks.push(f);
}
// Wake up one thread.
condition.notify_one();
}
void ThreadPool::Invoke() {
function<void()> task;
while(true)
{
// Scope based locking.
{
// Put unique lock on task mutex.
unique_lock<mutex> lock(tasksMutex);
// Wait until queue is not empty or termination signal is sent.
condition.wait(lock, [this]{ return !tasks.empty() || terminate; });
// If termination signal received and queue is empty then exit else continue clearing the queue.
if (terminate && tasks.empty())
{
return;
}
// Get next task in the queue.
task = tasks.front();
// Remove it from the queue.
tasks.pop();
}
// Execute the task.
task();
}
}
void ThreadPool::ShutDown()
{
// Scope based locking.
{
// Put unique lock on task mutex.
unique_lock<mutex> lock(tasksMutex);
// Set termination flag to true.
terminate = true;
}
// Wake up all threads.
condition.notify_all();
// Join all threads.
for(thread &thread : threadPool)
{
thread.join();
}
// Empty workers vector.
threadPool.empty();
// Indicate that the pool has been shut down.
stopped = true;
}
// Destructor.
ThreadPool::~ThreadPool()
{
if (!stopped)
{
ShutDown();
}
}
|