blob: 90fede2a558c37c3f124231ba746ac8a46721517 (
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
|
#include <iostream>
#include <chrono>
#include <cassert>
#include "job.h"
void Scheduler::workerEntry() {
while (true) {
Job *job = nullptr;
{
lock_guard commMutGuard(commMut);
if (jobs.size() > 0) {
job = jobs.front();
jobs.pop();
}
}
if (job) {
job->callback();
} else if (finishFlag) {
break;
} 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() {
if (hasJoined) return;
{
lock_guard commMutGuard(commMut);
finishFlag = true;
}
for (int i = 0; i < nthreads; i++) {
workers[i].join();
}
hasJoined = true;
}
|