-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscheduler.cc
132 lines (104 loc) · 2.55 KB
/
scheduler.cc
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include "scheduler.h"
#include <lace/try.h>
#include "context.h"
#include "demangler.h"
#include <cassert>
#include <iostream>
#include <typeinfo>
#include <stdexcept>
#include <signal.h>
namespace {
static class shiva_t : public ucontext_t {
public:
shiva_t() {
TRY(getcontext, static_cast<ucontext_t*>(this));
uc_stack.ss_sp = nirvana;
uc_stack.ss_flags = 0;
uc_stack.ss_size = sizeof nirvana;
uc_link = NULL;
}
char nirvana[SIGSTKSZ];
} shiva;
extern "C" void mukti(context * atman) { delete atman; }
extern "C" void
trampoline(unsigned * n, context::queue * q, context * c, task * t, bool d) {
try {
(*t)();
} catch(const std::exception &e) {
int status;
std::cerr << demangler::instance().demangle(typeid(*t).name()) << ": "
<< demangler::instance().demangle(typeid(e).name()) << ": "
<< e.what() << std::endl;
}
if (d)
delete t;
--*n;
assert(!q->empty());
shiva.uc_link = q->dequeue();
makecontext(static_cast<ucontext_t*>(&shiva), (void(*)())mukti, 1, c);
TRY(setcontext, &shiva);
assert(!"unreachable");
}
}
scheduler::scheduler() : active_tasks(0), passive_tasks(0) { }
scheduler::~scheduler() { assert(done()); }
scheduler &
scheduler::add(task & t) {
context * c = new context;
makecontext(static_cast<ucontext_t*>(c), (void(*)())trampoline, 5, &++active_tasks, &todo, c, &t, false);
todo.enqueue(c);
return *this;
}
scheduler &
scheduler::eye(task & t) {
context * c = new context;
makecontext(static_cast<ucontext_t*>(c), (void(*)())trampoline, 5, &++passive_tasks, &todo, c, &t, false);
todo.enqueue(c);
return *this;
}
scheduler &
scheduler::own(task * t) {
context * c = new context;
makecontext(static_cast<ucontext_t*>(c), (void(*)())trampoline, 5, &++active_tasks, &todo, c, t, true);
todo.enqueue(c);
return *this;
}
void
scheduler::run() {
while (!empty())
yield();
}
bool
scheduler::empty() const {
return todo.empty();
}
void
scheduler::yield() {
assert(!todo.empty());
basic_context current;
todo.enqueue(¤t);
TRY(swapcontext, ¤t, todo.dequeue());
}
bool
scheduler::done() const {
return 0 == active_tasks + passive_tasks;
}
bool
scheduler::active() const {
return active_tasks > 0;
}
void
scheduler::defer(basic_context * c) {
assert(!todo.empty());
TRY(swapcontext, c, todo.dequeue());
}
void
scheduler::refer(basic_context * c) {
todo.enqueue(c);
}
void
scheduler::transfer(context::queue & q) {
assert(!q.empty());
todo.chain(q);
}
//