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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
#![cfg_attr(not(feature = "inter-thread"), allow(dead_code))]
#![cfg_attr(not(feature = "inter-thread"), allow(unused_variables))]
#[cfg(feature = "inter-thread")]
use {slab::Slab, std::convert::TryFrom, std::mem};
use crate::Stakker;
use std::ops::{Index, IndexMut};
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::{Arc, Mutex};
type BoxFnMutCB = Box<dyn FnMut(&mut Stakker, bool) + 'static>;
#[cfg(feature = "inter-thread")]
pub(crate) struct WakeHandlers {
waker: Arc<PollWaker>,
slab: Slab<Option<BoxFnMutCB>>,
bitmaps: Array<Vec<Arc<BitMap>>>,
}
#[cfg(feature = "inter-thread")]
impl WakeHandlers {
pub fn new(waker: Box<dyn Fn() + Send + Sync>) -> Self {
Self {
waker: Arc::new(PollWaker::new(waker)),
slab: Slab::new(),
bitmaps: Default::default(),
}
}
pub fn wake_list(&mut self) -> Vec<u32> {
let mut rv = Vec::new();
self.waker.summary.drain(|slot| {
for bm in &self.bitmaps[slot] {
bm.drain(|bit| rv.push(bit));
}
});
rv
}
pub fn drop_list(&mut self) -> Vec<u32> {
mem::replace(&mut *self.waker.drop_list.lock().unwrap(), Vec::new())
}
pub fn handler_borrow(&mut self, bit: u32) -> Option<BoxFnMutCB> {
match self.slab.get_mut(bit as usize) {
None => None,
Some(slot) => {
if let Some(cb) = slot.take() {
Some(cb)
} else {
panic!("Wake handler has been borrowed from its slot twice");
}
}
}
}
pub fn handler_restore(&mut self, bit: u32, cb: BoxFnMutCB) {
if mem::replace(
self.slab
.get_mut(bit as usize)
.expect("WakeHandlers slot unexpectedly deleted during handler call"),
Some(cb),
)
.is_some()
{
panic!(
"WakeHandlers slot unexpected occupied by another handler during wake handler call"
);
}
}
pub fn add(&mut self, cb: impl FnMut(&mut Stakker, bool) + 'static) -> Waker {
let mut bit = u32::try_from(self.slab.insert(Some(Box::new(cb))))
.expect("Exceeded 2^32 Waker instances");
let mut base = bit & !(BitMap::SIZE - 1);
while base == bit {
let somecb = mem::replace(
self.slab.get_mut(bit as usize).unwrap(),
Some(Box::new(|s, _| s.process_waker_drops())),
);
let bit2 =
u32::try_from(self.slab.insert(somecb)).expect("Exceeded 2^32 Waker instances");
bit = bit2;
base = bit & !(BitMap::SIZE - 1);
}
let vec_index = bit >> (USIZE_INDEX_BITS + BitMap::SIZE_BITS);
let waker_slot = (bit >> BitMap::SIZE_BITS) & (USIZE_BITS - 1);
let vec = &mut self.bitmaps[waker_slot];
while vec.len() <= vec_index as usize {
vec.push(Arc::new(BitMap::new(base, waker_slot, self.waker.clone())));
}
Waker {
bit,
bitmap: vec[vec_index as usize].clone(),
}
}
pub fn del(&mut self, bit: u32) -> Option<BoxFnMutCB> {
if 0 != (bit & (BitMap::SIZE - 1)) && self.slab.contains(bit as usize) {
return self.slab.remove(bit as usize);
}
None
}
}
#[cfg(not(feature = "inter-thread"))]
pub(crate) struct WakeHandlers;
#[cfg(not(feature = "inter-thread"))]
impl WakeHandlers {
pub fn new(waker: Box<dyn Fn() + Send + Sync>) -> Self {
Self
}
pub fn wake_list(&mut self) -> Vec<u32> {
Vec::new()
}
pub fn drop_list(&mut self) -> Vec<u32> {
Vec::new()
}
pub fn handler_borrow(&mut self, bit: u32) -> Option<BoxFnMutCB> {
None
}
pub fn handler_restore(&mut self, bit: u32, cb: BoxFnMutCB) {}
pub fn add(&mut self, cb: impl FnMut(&mut Stakker, bool) + 'static) -> Waker {
panic!("Enable feature 'inter-thread' to create Waker instances");
}
pub fn del(&mut self, bit: u32) -> Option<BoxFnMutCB> {
None
}
}
pub struct Waker {
bit: u32,
bitmap: Arc<BitMap>,
}
impl Waker {
pub fn wake(&self) {
self.bitmap.set(self.bit);
}
}
impl Drop for Waker {
fn drop(&mut self) {
if let Ok(mut guard) = self.bitmap.waker.drop_list.lock() {
guard.push(self.bit);
self.bitmap.set(self.bitmap.base_index);
}
}
}
const LOG2_TABLE: [u32; 9] = [0, 0, 1, 0, 2, 0, 0, 0, 3];
const USIZE_BYTES: u32 = std::mem::size_of::<usize>() as u32;
const USIZE_BITS: u32 = 8 * USIZE_BYTES;
const USIZE_INDEX_BITS: u32 = 3 + LOG2_TABLE[USIZE_BYTES as usize];
const ORDERING: Ordering = Ordering::SeqCst;
#[derive(Default)]
struct Array<I>([[I; 8]; USIZE_BYTES as usize]);
impl<I> Index<u32> for Array<I> {
type Output = I;
fn index(&self, ii: u32) -> &Self::Output {
&self.0[(ii >> 3) as usize][(ii & 7) as usize]
}
}
impl<I> IndexMut<u32> for Array<I> {
fn index_mut(&mut self, ii: u32) -> &mut Self::Output {
&mut self.0[(ii >> 3) as usize][(ii & 7) as usize]
}
}
#[derive(Default)]
struct Leaf {
bitmap: AtomicUsize,
}
impl Leaf {
#[inline]
fn set(&self, bit: u32) -> bool {
0 == self.bitmap.fetch_or(1 << bit, ORDERING)
}
#[inline]
fn drain(&self, mut cb: impl FnMut(u32)) {
let mut bits = self.bitmap.swap(0, ORDERING);
while bits != 0 {
let bit = bits.trailing_zeros();
bits &= !(1 << bit);
cb(bit);
}
}
}
#[derive(Default)]
struct Layer<S: Default> {
summary: Leaf,
child: Array<S>,
}
struct BitMap {
tree: Layer<Leaf>,
base_index: u32,
wake_index: u32,
waker: Arc<PollWaker>,
}
impl BitMap {
const SIZE_BITS: u32 = USIZE_INDEX_BITS * 2;
const SIZE: u32 = 1 << Self::SIZE_BITS;
pub fn new(base_index: u32, wake_index: u32, waker: Arc<PollWaker>) -> Self {
assert_eq!(1 << USIZE_INDEX_BITS, USIZE_BITS);
Self {
tree: Default::default(),
base_index,
wake_index,
waker,
}
}
#[inline]
fn set(&self, bit: u32) {
let bit = bit - self.base_index;
let a = bit >> USIZE_INDEX_BITS;
let b = bit & (USIZE_BITS - 1);
if self.tree.child[a].set(b)
&& self.tree.summary.set(a)
&& self.waker.summary.set(self.wake_index)
{
(self.waker.waker)();
}
}
#[inline]
fn drain(&self, mut cb: impl FnMut(u32)) {
self.tree.summary.drain(|a| {
self.tree.child[a].drain(|b| {
cb((a << USIZE_INDEX_BITS) + b + self.base_index);
});
});
}
}
struct PollWaker {
summary: Leaf,
waker: Box<dyn Fn() + Send + Sync + 'static>,
drop_list: Mutex<Vec<u32>>,
}
impl PollWaker {
pub fn new(waker: Box<dyn Fn() + Send + Sync>) -> Self {
Self {
summary: Default::default(),
waker,
drop_list: Mutex::new(Vec::new()),
}
}
}