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
use std::{
cell::UnsafeCell,
fmt::Debug,
hash::Hash,
mem::{needs_drop, MaybeUninit},
ops::BitAnd,
ptr::addr_of,
sync::atomic::{AtomicUsize, Ordering},
thread::LocalKey,
};
use async_t::async_trait;
use bit_bounds::{usize::Int, IsPowerOf2};
use cache_padded::CachePadded;
use const_assert::{Assert, IsFalse, IsTrue};
use tokio::runtime::Handle;
use crate::{
assignment::{CompletionReceipt, PendingAssignment},
batch::{AutoBatch, Receiver, TaskRef},
helpers::*,
};
#[cfg(target_pointer_width = "64")]
pub(crate) const INDEX_SHIFT: usize = 32;
#[cfg(target_pointer_width = "32")]
pub(crate) const INDEX_SHIFT: usize = 16;
pub(crate) const MIN_BUFFER_LEN: usize = 256;
#[cfg(target_pointer_width = "64")]
pub(crate) const MAX_BUFFER_LEN: usize = u32::MAX as usize;
#[cfg(target_pointer_width = "32")]
pub(crate) const MAX_BUFFER_LEN: usize = u16::MAX as usize;
#[async_trait]
pub trait TaskQueue: Send + Sync + Sized + 'static {
type Task: Send + Sync + Hash + PartialEq + Sized + 'static;
type Value: Send + Sync + Sized + Debug + 'static;
fn queue() -> &'static LocalKey<StackQueue<Self>>;
fn auto_batch(task: Self::Task) -> AutoBatch<Self> {
AutoBatch::new(task)
}
async fn batch_process(assignment: PendingAssignment<Self>) -> CompletionReceipt<Self>;
}
pub(crate) struct Inner<T: TaskQueue, const N: usize = 2048>
where
Int<N>: IsPowerOf2,
{
pub(crate) slot: CachePadded<AtomicUsize>,
pub(crate) occupancy: CachePadded<AtomicUsize>,
pub(crate) buffer: [UnsafeCell<MaybeUninit<TaskRef<T>>>; N],
}
impl<T: TaskQueue, const N: usize> Inner<T, N>
where
T: TaskQueue,
Int<N>: IsPowerOf2,
{
const fn new() -> Self {
Inner {
slot: CachePadded::new(AtomicUsize::new(0)),
occupancy: CachePadded::new(AtomicUsize::new(0)),
#[allow(clippy::uninit_assumed_init)]
buffer: unsafe { MaybeUninit::uninit().assume_init() },
}
}
}
#[derive(Debug)]
pub(crate) struct QueueFull;
pub struct StackQueue<T: TaskQueue, const N: usize = 2048>
where
Int<N>: IsPowerOf2,
{
slot: CachePadded<UnsafeCell<usize>>,
occupancy: CachePadded<UnsafeCell<usize>>,
inner: Inner<T, N>,
}
impl<T: TaskQueue, const N: usize> StackQueue<T, N>
where
T: TaskQueue,
Int<N>: IsPowerOf2,
{
pub const fn new() -> Self
where
Assert<{ N >= MIN_BUFFER_LEN }>: IsTrue,
Assert<{ N <= MAX_BUFFER_LEN }>: IsTrue,
Assert<{ needs_drop::<T::Task>() }>: IsFalse,
{
StackQueue {
slot: CachePadded::new(UnsafeCell::new(N << INDEX_SHIFT)),
occupancy: CachePadded::new(UnsafeCell::new(0)),
inner: Inner::new(),
}
}
#[inline(always)]
fn current_write_index(&self) -> usize {
let slot = unsafe { &*self.slot.get() };
slot_index::<N>(slot)
}
fn check_regional_occupancy(&self, index: &usize) -> Result<(), QueueFull> {
let region_mask = region_mask::<N>(index);
if unsafe { &*self.occupancy.get() }.bitand(region_mask).eq(&0) {
return Ok(());
}
let occupancy = self.inner.occupancy.load(Ordering::Relaxed);
let regional_occupancy = occupancy.bitand(region_mask);
unsafe { *self.occupancy.get() = occupancy };
if regional_occupancy.eq(&0) {
Ok(())
} else {
Err(QueueFull)
}
}
fn occupy_region(&self, index: &usize) {
let shifted_add = one_shifted::<N>(index);
let occupancy = self
.inner
.occupancy
.fetch_add(shifted_add, Ordering::Relaxed)
.wrapping_add(shifted_add);
unsafe { *self.occupancy.get() = occupancy };
}
fn write_with<F>(&self, index: &usize, write_with: F)
where
F: FnOnce(*const AtomicUsize) -> (T::Task, *const Receiver<T>),
{
let cell = unsafe { &mut *self.inner.buffer.get_unchecked(*index).get() };
cell.write(TaskRef::new_uninit());
let task_ref = unsafe { cell.assume_init_mut() };
let (task, rx) = write_with(task_ref.state_ptr());
task_ref.init(task, rx);
}
#[inline(always)]
fn replace_slot(&self, slot: usize) -> usize {
std::mem::replace(unsafe { &mut *self.slot.get() }, slot)
}
pub(crate) fn enqueue<F>(
&self,
write_with: F,
) -> Result<Option<PendingAssignment<T, N>>, QueueFull>
where
F: FnOnce(*const AtomicUsize) -> (T::Task, *const Receiver<T>),
{
let write_index = self.current_write_index();
if write_index.bitand(region_size::<N>() - 1).eq(&0) {
self.check_regional_occupancy(&write_index)?;
}
self.write_with(&write_index, write_with);
let base_slot = self
.inner
.slot
.fetch_add(1 << INDEX_SHIFT, Ordering::Relaxed);
let prev_slot = self.replace_slot(base_slot.wrapping_add(1 << INDEX_SHIFT));
if write_index.ne(&0) && ((base_slot ^ prev_slot) & active_phase_bit::<N>(&base_slot)).eq(&0) {
Ok(None)
} else {
self.occupy_region(&write_index);
let queue_ptr = addr_of!(self.inner);
Ok(Some(PendingAssignment::new(base_slot, queue_ptr)))
}
}
}
impl<T: TaskQueue, const N: usize> Drop for StackQueue<T, N>
where
T: TaskQueue,
Int<N>: IsPowerOf2,
{
fn drop(&mut self) {
while self.inner.occupancy.load(Ordering::Relaxed).ne(&0) {
Handle::current().block_on(tokio::task::yield_now());
}
}
}
#[cfg(all(test))]
mod test {
use std::{thread::LocalKey, time::Duration};
use async_t::async_trait;
use futures::{future::join_all, stream::FuturesUnordered, StreamExt};
use tokio::{task::yield_now, time::sleep};
use super::{StackQueue, TaskQueue};
use crate::assignment::{CompletionReceipt, PendingAssignment};
struct EchoQueue;
#[async_trait]
impl TaskQueue for EchoQueue {
type Task = usize;
type Value = usize;
fn queue() -> &'static LocalKey<super::StackQueue<Self>> {
thread_local! {
static QUEUE: StackQueue<EchoQueue> = StackQueue::new();
}
&QUEUE
}
async fn batch_process(batch: PendingAssignment<Self>) -> CompletionReceipt<Self> {
let assignment = batch.into_assignment();
assignment.map(|val| val)
}
}
#[tokio::test(flavor = "multi_thread")]
async fn it_process_tasks() {
let batch: Vec<usize> = join_all((0..100).map(|i| EchoQueue::auto_batch(i))).await;
assert_eq!(batch, (0..100).collect::<Vec<usize>>());
}
#[tokio::test(flavor = "multi_thread")]
async fn it_cycles() {
for i in 0..4096 {
EchoQueue::auto_batch(i).await;
}
}
struct SlowQueue;
#[async_trait]
impl TaskQueue for SlowQueue {
type Task = usize;
type Value = usize;
fn queue() -> &'static LocalKey<super::StackQueue<Self>> {
thread_local! {
static QUEUE: StackQueue<SlowQueue> = StackQueue::new();
}
&QUEUE
}
async fn batch_process(batch: PendingAssignment<Self>) -> CompletionReceipt<Self> {
let assignment = batch.into_assignment();
sleep(Duration::from_millis(50)).await;
assignment.map(|val| val)
}
}
#[tokio::test(flavor = "multi_thread")]
async fn it_has_drop_safety() {
let handle = tokio::task::spawn(async {
SlowQueue::auto_batch(0).await;
});
sleep(Duration::from_millis(1)).await;
handle.abort();
}
struct YieldQueue;
#[async_trait]
impl TaskQueue for YieldQueue {
type Task = usize;
type Value = usize;
fn queue() -> &'static LocalKey<super::StackQueue<Self>> {
thread_local! {
static QUEUE: StackQueue<YieldQueue> = StackQueue::new();
}
&QUEUE
}
async fn batch_process(batch: PendingAssignment<Self>) -> CompletionReceipt<Self> {
let assignment = batch.into_assignment();
yield_now().await;
assignment.map(|val| val)
}
}
#[tokio::test(flavor = "multi_thread")]
async fn it_negotiates_receiver_drop() {
let tasks: FuturesUnordered<_> = (0..8)
.map(|_| {
tokio::task::spawn(async {
let tasks: FuturesUnordered<_> = (0..16384)
.map(|i| async move {
let handle = tokio::task::spawn(async move {
YieldQueue::auto_batch(i).await;
});
yield_now().await;
handle.abort()
})
.collect();
let _: Vec<_> = tasks.collect().await;
})
})
.collect::<FuturesUnordered<_>>();
tasks.collect::<Vec<_>>().await;
}
}