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
// Take a look at the license at the top of the repository in the LICENSE file.
use std::{
fmt::{Debug, Display},
future::Future,
pin::Pin,
task::{Context, Poll},
};
use pin_project_lite::pin_project;
use crate::{cancellable::CancelledHandlerId, prelude::*, Cancellable, IOErrorEnum};
// rustdoc-stripper-ignore-next
/// Indicator that the [`CancellableFuture`] was cancelled.
pub struct Cancelled;
pin_project! {
// rustdoc-stripper-ignore-next
/// A future which can be cancelled via [`Cancellable`].
///
/// # Examples
///
/// ```
/// # use futures::FutureExt;
/// # use gio::traits::CancellableExt;
/// # use gio::CancellableFuture;
/// let l = glib::MainLoop::new(None, false);
/// let c = gio::Cancellable::new();
///
/// l.context().spawn_local(CancellableFuture::new(async { 42 }, c.clone()).map(|_| ()));
/// c.cancel();
///
/// ```
pub struct CancellableFuture<F> {
#[pin]
future: F,
#[pin]
waker_handler_cb: Option<CancelledHandlerId>,
cancellable: Cancellable,
}
}
impl<F> CancellableFuture<F> {
// rustdoc-stripper-ignore-next
/// Creates a new `CancellableFuture` using a [`Cancellable`].
///
/// When [`cancel`](CancellableExt::cancel) is called, the future will complete
/// immediately without making any further progress. In such a case, an error
/// will be returned by this future (i.e., [`Cancelled`]).
pub fn new(future: F, cancellable: Cancellable) -> Self {
Self {
future,
waker_handler_cb: None,
cancellable,
}
}
// rustdoc-stripper-ignore-next
/// Checks whether the future has been cancelled.
///
/// This is a shortcut for `self.cancellable().is_cancelled()`
///
/// Note that all this method indicates is whether [`cancel`](CancellableExt::cancel)
/// was called. This means that it will return true even if:
/// * `cancel` was called after the future had completed.
/// * `cancel` was called while the future was being polled.
#[inline]
pub fn is_cancelled(&self) -> bool {
self.cancellable.is_cancelled()
}
// rustdoc-stripper-ignore-next
/// Returns the inner [`Cancellable`] associated during creation.
#[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 futures_channel::oneshot;
use super::{Cancellable, CancellableFuture, Cancelled};
use crate::prelude::*;
#[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();
}
}