blob: 4f1352dea211a33cff709f07e1d65366e3bc259a (
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
|
#include "worker.h"
#include "work.h"
#include <algorithm>
#include <iterator>
#include <mutex>
Worker Worker::instance;
Worker::Worker() : todoLen {0}
{
std::generate_n(std::back_inserter(threads), std::thread::hardware_concurrency(), [this]() {
return std::jthread {&Worker::worker, this};
});
}
Worker::~Worker()
{
todoLen.release(std::thread::hardware_concurrency());
}
void
Worker::addWork(WorkPtr j)
{
std::lock_guard<std::mutex> lck {todoMutex};
todoLen.release();
todo.emplace_back(std::move(j));
}
void
Worker::worker()
{
auto job = [this]() {
todoLen.acquire();
std::lock_guard<std::mutex> lck {todoMutex};
if (todo.size()) {
WorkPtr x = std::move(todo.front());
todo.pop_front();
return x;
}
return WorkPtr {};
};
while (auto j = job()) {
j->doWork();
}
}
|