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
use std::collections::HashSet;
use std::collections::VecDeque;
use std::fmt::Debug;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
use std::sync::atomic::{AtomicIsize, Ordering};
use std::task::{Context, Poll};
use futures::channel::mpsc;
use futures::task::AtomicWaker;
use once_cell::sync::OnceCell;
use parking_lot::RwLock;
pub use builder::{Builder, SpawnDefaultExt, SpawnExt};
pub use exec::{TaskExecQueue, TaskType};
pub use local::LocalTaskExecQueue;
pub use local::LocalTaskType;
pub use local_builder::{LocalBuilder, LocalSpawnExt, SyncSender};
pub use local_spawner::{LocalGroupSpawner, LocalSpawner};
pub use spawner::{GroupSpawner, Spawner};
mod builder;
mod close;
mod exec;
mod flush;
mod spawner;
mod local;
mod local_builder;
mod local_spawner;
#[derive(Clone, Debug)]
struct Counter(std::sync::Arc<AtomicIsize>);
impl Counter {
#[inline]
fn new() -> Self {
Counter(std::sync::Arc::new(AtomicIsize::new(0)))
}
#[inline]
fn inc(&self) {
self.0.fetch_add(1, Ordering::SeqCst);
}
#[inline]
fn dec(&self) {
self.0.fetch_sub(1, Ordering::SeqCst);
}
#[inline]
fn value(&self) -> isize {
self.0.load(Ordering::SeqCst)
}
}
#[derive(Clone)]
struct IndexSet(Arc<RwLock<HashSet<usize, ahash::RandomState>>>);
impl IndexSet {
#[inline]
fn new() -> Self {
Self(Arc::new(RwLock::new(HashSet::default())))
}
#[inline]
#[allow(dead_code)]
fn len(&self) -> usize {
self.0.read().len()
}
#[inline]
fn is_empty(&self) -> bool {
self.0.read().is_empty()
}
#[inline]
fn insert(&self, v: usize) {
self.0.write().insert(v);
}
#[inline]
fn pop(&self) -> Option<usize> {
let mut set = self.0.write();
if let Some(idx) = set.iter().next().copied() {
set.remove(&idx);
Some(idx)
} else {
None
}
}
}
struct PendingOnce {
w: Arc<AtomicWaker>,
is_ready: bool,
}
impl PendingOnce {
#[inline]
fn new(w: Arc<AtomicWaker>) -> Self {
Self { w, is_ready: false }
}
}
impl Future for PendingOnce {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if self.is_ready {
Poll::Ready(())
} else {
self.w.register(cx.waker());
self.is_ready = true;
Poll::Pending
}
}
}
struct GroupTaskExecQueue<TT> {
tasks: VecDeque<TT>,
is_running: bool,
}
impl<TT> GroupTaskExecQueue<TT> {
#[inline]
fn new() -> Self {
Self {
tasks: VecDeque::default(),
is_running: false,
}
}
#[inline]
fn push(&mut self, task: TT) {
self.tasks.push_back(task);
}
#[inline]
fn pop(&mut self) -> Option<TT> {
if let Some(task) = self.tasks.pop_front() {
Some(task)
} else {
self.set_running(false);
None
}
}
#[inline]
fn set_running(&mut self, b: bool) {
self.is_running = b;
}
#[inline]
fn is_running(&self) -> bool {
self.is_running
}
}
#[derive(thiserror::Error, Debug)]
pub enum Error<T> {
#[error("send error")]
SendError(ErrorType<T>),
#[error("try send error")]
TrySendError(ErrorType<T>),
#[error("send timeout error")]
SendTimeoutError(ErrorType<T>),
#[error("recv result error")]
RecvResultError,
}
#[derive(Debug, Eq, PartialEq)]
pub enum ErrorType<T> {
Full(Option<T>),
Closed(Option<T>),
Timeout(Option<T>),
}
impl<T> Error<T> {
#[inline]
pub fn is_full(&self) -> bool {
matches!(
self,
Error::SendError(ErrorType::Full(_))
| Error::TrySendError(ErrorType::Full(_))
| Error::SendTimeoutError(ErrorType::Full(_))
)
}
#[inline]
pub fn is_closed(&self) -> bool {
matches!(
self,
Error::SendError(ErrorType::Closed(_))
| Error::TrySendError(ErrorType::Closed(_))
| Error::SendTimeoutError(ErrorType::Closed(_))
)
}
#[inline]
pub fn is_timeout(&self) -> bool {
matches!(
self,
Error::SendError(ErrorType::Timeout(_))
| Error::TrySendError(ErrorType::Timeout(_))
| Error::SendTimeoutError(ErrorType::Timeout(_))
)
}
}
impl<T> From<mpsc::TrySendError<T>> for Error<T> {
fn from(e: mpsc::TrySendError<T>) -> Self {
if e.is_full() {
Error::TrySendError(ErrorType::Full(Some(e.into_inner())))
} else {
Error::TrySendError(ErrorType::Closed(Some(e.into_inner())))
}
}
}
impl<T> From<mpsc::SendError> for Error<T> {
fn from(e: mpsc::SendError) -> Self {
if e.is_full() {
Error::SendError(ErrorType::Full(None))
} else {
Error::SendError(ErrorType::Closed(None))
}
}
}
pub(crate) fn assert_future<T, F>(future: F) -> F
where
F: futures::Future<Output=T>,
{
future
}
static DEFAULT_EXEC_QUEUE: OnceCell<TaskExecQueue> = OnceCell::new();
pub fn set_default(queue: TaskExecQueue) -> Result<(), TaskExecQueue> {
DEFAULT_EXEC_QUEUE.set(queue)
}
pub fn init_default() -> impl futures::Future<Output=()> {
let (queue, runner) = Builder::default().workers(100).queue_max(100_000).build();
DEFAULT_EXEC_QUEUE.set(queue).ok().unwrap();
runner
}
pub fn default() -> &'static TaskExecQueue {
DEFAULT_EXEC_QUEUE
.get()
.expect("default task execution queue must be set first")
}
#[test]
fn test_index_set() {
let set = IndexSet::new();
set.insert(1);
set.insert(10);
set.insert(100);
assert_eq!(set.len(), 3);
assert!(matches!(set.pop(), Some(1) | Some(10) | Some(100)));
assert_eq!(set.len(), 2);
set.pop();
set.pop();
assert_eq!(set.len(), 0);
}