summaryrefslogtreecommitdiff
path: root/competition/job.cpp
blob: 043074e54e0bca677bcc574c1146a0d8c1ddaba5 (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
#include <chrono>
#include <cassert>
#include "job.h"

void Scheduler::workerEntry() {
	while (true) {
		Job *job = nullptr;

		{
			lock_guard commMutGuard(commMut);
			if (terminateFlag) break;
			if (jobs.size() > 0) {
				job = jobs.front();
				jobs.pop();
			}
		}

		if (job) {
			job->callback();
		} else {
			this_thread::sleep_for(chrono::milliseconds(100));
		}
	}
}

Scheduler::Scheduler(int nthreads)
		: nthreads(nthreads) {

	assert(nthreads > 0);

	workers.reserve(nthreads);
	for (int i = 0; i < nthreads; i++) {
		workers.emplace_back([this]() { workerEntry(); });
	}
}

Scheduler::~Scheduler() {
	finish();
}

void Scheduler::submit(const function<void()> &func) {
	Job *job = new Job(func);
	lock_guard commMutGuard(commMut);
	jobs.push(job);
}

void Scheduler::finish() {
	for (int i = 0; i < nthreads; i++) {
		workers[i].join();
	}
}