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
use super::{Handle, Reactor};
use futures::task::AtomicWaker;
use futures::{executor, Future, Poll};
use log::debug;
use std::io;
use std::pin::Pin;
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering::SeqCst;
use std::sync::Arc;
use std::task::Context;
use std::thread;
#[derive(Debug)]
pub struct Background {
inner: Option<Inner>,
}
#[derive(Debug)]
pub struct Shutdown {
inner: Inner,
}
#[derive(Debug)]
struct Inner {
handle: Handle,
shared: Arc<Shared>,
}
#[derive(Debug)]
struct Shared {
shutdown: AtomicUsize,
shutdown_task: AtomicWaker,
}
const SHUTDOWN_IDLE: usize = 1;
const SHUTDOWN_NOW: usize = 2;
const SHUTDOWN: usize = 3;
impl Background {
pub(super) fn new(reactor: Reactor) -> io::Result<Background> {
let handle = reactor.handle().clone();
let shared = Arc::new(Shared {
shutdown: AtomicUsize::new(0),
shutdown_task: AtomicWaker::new(),
});
let shared2 = shared.clone();
thread::Builder::new().spawn(move || run(reactor, shared2))?;
Ok(Background {
inner: Some(Inner { handle, shared }),
})
}
pub fn forget(mut self) {
drop(self.inner.take());
}
}
impl Drop for Background {
fn drop(&mut self) {
let inner = match self.inner.take() {
Some(i) => i,
None => return,
};
inner.shutdown_now();
let shutdown = Shutdown { inner };
let _ = executor::block_on(shutdown);
}
}
impl Future for Shutdown {
type Output = Result<(), ()>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
self.inner.shared.shutdown_task.register(&cx.waker());
if !self.inner.is_shutdown() {
return Poll::Pending;
}
Poll::Ready(Ok(()))
}
}
impl Inner {
fn is_shutdown(&self) -> bool {
self.shared.shutdown.load(SeqCst) == SHUTDOWN
}
fn shutdown_now(&self) {
let mut curr = self.shared.shutdown.load(SeqCst);
loop {
if curr >= SHUTDOWN_NOW {
return;
}
let act = self
.shared
.shutdown
.compare_and_swap(curr, SHUTDOWN_NOW, SeqCst);
if act == curr {
self.handle.wakeup();
return;
}
curr = act;
}
}
}
fn run(mut reactor: Reactor, shared: Arc<Shared>) {
debug!("starting background reactor");
loop {
let shutdown = shared.shutdown.load(SeqCst);
if shutdown == SHUTDOWN_NOW {
debug!("shutting background reactor down NOW");
break;
}
if shutdown == SHUTDOWN_IDLE && reactor.is_idle() {
debug!("shutting background reactor on idle");
break;
}
reactor.turn(None).unwrap();
}
drop(reactor);
shared.shutdown.store(SHUTDOWN, SeqCst);
shared.shutdown_task.wake();
debug!("background reactor has shutdown");
}