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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
use slab::Slab;
use std::{
panic::{catch_unwind, AssertUnwindSafe},
sync::OnceLock,
sync::{mpsc, Arc},
thread::Result,
};
use crate::threading;
type SlabPtr = usize;
#[cfg(test)]
mod tests;
#[derive(Debug)]
pub struct ThreadGroup<Sched: ?Sized> {
state: Arc<threading::Mutex<State<Sched>>>,
}
impl<Sched: ?Sized> Clone for ThreadGroup<Sched> {
fn clone(&self) -> Self {
Self {
state: Arc::clone(&self.state),
}
}
}
#[derive(Debug)]
pub struct ThreadGroupJoinHandle {
result_recv: mpsc::Receiver<Result<()>>,
}
pub struct ThreadGroupLockGuard<'a, Sched: ?Sized> {
state_ref: &'a Arc<threading::Mutex<State<Sched>>>,
guard: threading::MutexGuard<'a, State<Sched>>,
}
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub struct ThreadId(SlabPtr);
pub trait Scheduler: Send + 'static {
fn choose_next_thread(&mut self) -> Option<ThreadId>;
fn thread_exited(&mut self, thread_id: ThreadId) {
let _ = thread_id;
}
}
#[derive(Debug)]
struct State<Sched: ?Sized> {
threads: Slab<WorkerThread>,
num_threads: usize,
cur_thread_id: Option<ThreadId>,
shutting_down: bool,
result_send: mpsc::Sender<Result<()>>,
sched: Sched,
}
#[derive(Debug)]
struct WorkerThread {
join_handle: Option<threading::JoinHandle<()>>,
}
thread_local! {
static TLB: OnceLock<ThreadLocalBlock> = OnceLock::new();
}
struct ThreadLocalBlock {
thread_id: ThreadId,
state: Arc<threading::Mutex<State<dyn Scheduler>>>,
}
impl<Sched: Scheduler> ThreadGroup<Sched> {
pub fn new(sched: Sched) -> (Self, ThreadGroupJoinHandle) {
let (send, recv) = mpsc::channel();
let state = Arc::new(threading::Mutex::new(State {
threads: Slab::new(),
num_threads: 0,
cur_thread_id: None,
shutting_down: false,
result_send: send,
sched,
}));
(Self { state }, ThreadGroupJoinHandle { result_recv: recv })
}
}
impl ThreadGroupJoinHandle {
pub fn join(self) -> Result<()> {
self.result_recv.recv().unwrap()
}
}
impl<Sched: Scheduler + ?Sized> ThreadGroup<Sched> {
pub fn lock(&self) -> ThreadGroupLockGuard<'_, Sched> {
ThreadGroupLockGuard {
state_ref: &self.state,
guard: self.state.lock().unwrap(),
}
}
}
impl<'a, Sched: Scheduler> ThreadGroupLockGuard<'a, Sched> {
pub fn spawn(&mut self, f: impl FnOnce(ThreadId) + Send + 'static) -> ThreadId {
if self.guard.shutting_down && self.guard.num_threads == 0 {
panic!("thread group has already been shut down");
}
let state = Arc::clone(self.state_ref);
let ptr: SlabPtr = self
.guard
.threads
.insert(WorkerThread { join_handle: None });
let thread_id = ThreadId(ptr);
self.guard.num_threads += 1;
let join_handle = threading::spawn(move || {
let state2 = Arc::clone(&state);
TLB.with(|cell| {
cell.set(ThreadLocalBlock { thread_id, state })
.ok()
.unwrap()
});
threading::park();
let result = catch_unwind(AssertUnwindSafe(move || {
f(thread_id);
}));
finalize_thread(state2, thread_id, result);
});
self.guard.threads[ptr].join_handle = Some(join_handle);
log::trace!("created {thread_id:?}");
thread_id
}
pub fn preempt(&mut self) {
assert!(
TLB.with(|cell| cell.get().is_none()),
"this method cannot be called from a worker thread"
);
let guard = &mut *self.guard;
log::trace!("preempting {:?}", guard.cur_thread_id);
if let Some(thread_id) = guard.cur_thread_id {
let join_handle = guard.threads[thread_id.0].join_handle.as_ref().unwrap();
join_handle.thread().park();
}
guard.unpark_next_thread();
}
pub fn shutdown(&mut self) {
if self.guard.shutting_down {
return;
}
log::trace!("shutdown requested");
self.guard.shutting_down = true;
if self.guard.num_threads == 0 {
self.guard.complete_shutdown();
} else {
log::trace!(
"shutdown is pending because there are {} thread(s) remaining",
self.guard.num_threads
);
}
}
}
impl<'a, Sched: Scheduler + ?Sized> ThreadGroupLockGuard<'a, Sched> {
pub fn scheduler(&mut self) -> &mut Sched {
&mut self.guard.sched
}
}
impl<Sched: Scheduler> State<Sched> {
fn unpark_next_thread(&mut self) {
(self as &mut State<dyn Scheduler>).unpark_next_thread();
}
fn complete_shutdown(&mut self) {
(self as &mut State<dyn Scheduler>).complete_shutdown();
}
}
impl State<dyn Scheduler> {
fn unpark_next_thread(&mut self) {
self.cur_thread_id = self.sched.choose_next_thread();
log::trace!("scheduling {:?}", self.cur_thread_id);
if let Some(thread_id) = self.cur_thread_id {
let join_handle = self.threads[thread_id.0].join_handle.as_ref().unwrap();
join_handle.thread().unpark();
}
}
fn complete_shutdown(&mut self) {
assert_eq!(self.num_threads, 0);
log::trace!("shutdown is complete");
let _ = self.result_send.send(Ok(()));
}
}
pub fn yield_now() {
let thread_group: Arc<threading::Mutex<State<dyn Scheduler>>> = TLB
.with(|cell| cell.get().map(|tlb| Arc::clone(&tlb.state)))
.expect("current thread does not belong to a thread group");
{
let mut state_guard = thread_group.lock().unwrap();
log::trace!("{:?} yielded the processor", state_guard.cur_thread_id);
state_guard.unpark_next_thread();
}
threading::park();
}
pub unsafe fn exit_thread() -> ! {
let (thread_id, thread_group) = TLB
.with(|cell| {
cell.get()
.map(|tlb| (tlb.thread_id, Arc::clone(&tlb.state)))
})
.expect("current thread does not belong to a thread group");
finalize_thread(thread_group, thread_id, Ok(()));
unsafe { threading::exit_thread() };
}
fn finalize_thread(
thread_group: Arc<threading::Mutex<State<dyn Scheduler>>>,
thread_id: ThreadId,
result: Result<()>,
) {
log::trace!("{thread_id:?} exited with result {result:?}");
let mut state_guard = thread_group.lock().unwrap();
state_guard.sched.thread_exited(thread_id);
state_guard.threads.remove(thread_id.0);
state_guard.num_threads -= 1;
if let Err(e) = result {
let _ = state_guard.result_send.send(Err(e));
return;
}
if state_guard.num_threads == 0 && state_guard.shutting_down {
state_guard.complete_shutdown();
return;
}
state_guard.unpark_next_thread();
}
pub fn current_thread() -> Option<ThreadId> {
TLB.with(|cell| cell.get().map(|tlb| tlb.thread_id))
}