summaryrefslogtreecommitdiff
path: root/lib/worker.cpp
blob: 7e7f296620f8801476f3e9ad698289b18736770c (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
#include "worker.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::addWorkPtr(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();
	}
}