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
use crate::cancellable::CancellableExtManual;
use crate::cancellable::CancelledHandlerId;
use crate::prelude::CancellableExt;
use crate::Cancellable;
use crate::IOErrorEnum;
use pin_project_lite::pin_project;
use std::fmt::Debug;
use std::fmt::Display;
use std::future::Future;
use std::pin::Pin;
use std::task::Context;
use std::task::Poll;
pub struct Cancelled;
pin_project! {
pub struct CancellableFuture<F> {
#[pin]
future: F,
#[pin]
waker_handler_cb: Option<CancelledHandlerId>,
cancellable: Cancellable,
}
}
impl<F> CancellableFuture<F> {
pub fn new(future: F, cancellable: Cancellable) -> Self {
Self {
future,
waker_handler_cb: None,
cancellable,
}
}
#[inline]
pub fn is_cancelled(&self) -> bool {
self.cancellable.is_cancelled()
}
#[inline]
pub fn cancellable(&self) -> &Cancellable {
&self.cancellable
}
}
impl<F> Future for CancellableFuture<F>
where
F: Future,
{
type Output = Result<<F as Future>::Output, Cancelled>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if self.is_cancelled() {
return Poll::Ready(Err(Cancelled));
}
let mut this = self.as_mut().project();
match this.future.poll(cx) {
Poll::Ready(out) => Poll::Ready(Ok(out)),
Poll::Pending => {
if let Some(prev_handler) = this.waker_handler_cb.take() {
this.cancellable.disconnect_cancelled(prev_handler);
}
let canceller_handler_id = this.cancellable.connect_cancelled({
let w = cx.waker().clone();
move |_| w.wake()
});
match canceller_handler_id {
Some(canceller_handler_id) => {
*this.waker_handler_cb = Some(canceller_handler_id);
Poll::Pending
}
None => Poll::Ready(Err(Cancelled)),
}
}
}
}
}
impl From<Cancelled> for glib::Error {
fn from(_: Cancelled) -> Self {
glib::Error::new(IOErrorEnum::Cancelled, "Task cancelled")
}
}
impl std::error::Error for Cancelled {}
impl Debug for Cancelled {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Task cancelled")
}
}
impl Display for Cancelled {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
Debug::fmt(self, f)
}
}
#[cfg(test)]
mod tests {
use super::Cancellable;
use super::CancellableExt;
use super::CancellableFuture;
use super::Cancelled;
use futures_channel::oneshot;
#[test]
fn cancellable_future_ok() {
let ctx = glib::MainContext::new();
let c = Cancellable::new();
let (tx, rx) = oneshot::channel();
{
ctx.spawn_local(async {
let cancellable_future = CancellableFuture::new(async { 42 }, c);
assert!(!cancellable_future.is_cancelled());
let result = cancellable_future.await;
assert!(matches!(result, Ok(42)));
tx.send(()).unwrap();
});
}
ctx.block_on(rx).unwrap()
}
#[test]
fn cancellable_future_cancel() {
let ctx = glib::MainContext::new();
let c = Cancellable::new();
let (tx, rx) = oneshot::channel();
{
let c = c.clone();
ctx.spawn_local(async move {
let cancellable_future = CancellableFuture::new(std::future::pending::<()>(), c);
let result = cancellable_future.await;
assert!(matches!(result, Err(Cancelled)));
tx.send(()).unwrap();
});
}
std::thread::spawn(move || c.cancel()).join().unwrap();
ctx.block_on(rx).unwrap();
}
}