summaryrefslogtreecommitdiff
path: root/lib/worker.cpp
blob: fd255c7dafcdac4b618291a0b6f5a909bed60436 (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
#include "worker.h"
#if __cpp_lib_semaphore
#	include "work.h"
#	include <algorithm>
#	include <iterator>
#	include <mutex>

Worker::Worker() : todoLen {0}
{
	std::generate_n(std::back_inserter(threads), std::thread::hardware_concurrency(), [this]() {
		return std::thread {&Worker::worker, this};
	});
}

Worker::~Worker()
{
	todoLen.release(std::thread::hardware_concurrency());
	std::for_each(threads.begin(), threads.end(), [](auto & th) {
		th.join();
	});
}

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();
	}
}
#endif