-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
//! An [`AbortOnDropHandle`] is like a [`JoinHandle`], except that it | ||
//! will abort the task as soon as it is dropped. | ||
use tokio::task::{AbortHandle, JoinError, JoinHandle}; | ||
|
||
use std::{ | ||
future::Future, | ||
pin::Pin, | ||
task::{Context, Poll}, | ||
}; | ||
|
||
/// A wrapper around a [`tokio::task::JoinHandle`], | ||
/// which [aborts] the task when it is dropped. | ||
/// | ||
/// [aborts]: tokio::task::JoinHandle::abort | ||
#[must_use = "Dropping the handle aborts the task immediately"] | ||
#[derive(Debug)] | ||
pub struct AbortOnDropHandle<T>(JoinHandle<T>); | ||
|
||
impl<T> Drop for AbortOnDropHandle<T> { | ||
fn drop(&mut self) { | ||
self.0.abort() | ||
} | ||
} | ||
|
||
impl<T> AbortOnDropHandle<T> { | ||
/// Create an [`AbortOnDropHandle`] from a [`JoinHandle`]. | ||
pub fn new(handle: JoinHandle<T>) -> Self { | ||
Self(handle) | ||
} | ||
|
||
/// Abort the task associated with this handle, | ||
/// equivalent of [`tokio::task::JoinHandle::abort`]. | ||
pub fn abort(&self) { | ||
self.0.abort() | ||
} | ||
|
||
/// Checks if the task associated with this handle is finished, | ||
/// equivalent of [`tokio::task::JoinHandle::is_finished`]. | ||
pub fn is_finished(&self) -> bool { | ||
self.0.is_finished() | ||
} | ||
|
||
/// Returns a new [`AbortHandle`] that can be used to remotely abort this task, | ||
/// equivalent of [`tokio::task::JoinHandle::abort_handle`]. | ||
pub fn abort_handle(&self) -> AbortHandle { | ||
self.0.abort_handle() | ||
} | ||
} | ||
|
||
impl<T> Future for AbortOnDropHandle<T> { | ||
type Output = Result<T, JoinError>; | ||
|
||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { | ||
Pin::new(&mut self.0).poll(cx) | ||
} | ||
} | ||
|
||
impl<T> AsRef<JoinHandle<T>> for AbortOnDropHandle<T> { | ||
fn as_ref(&self) -> &JoinHandle<T> { | ||
&self.0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
use tokio::sync::oneshot; | ||
use tokio_util::task::abort_on_drop::AbortOnDropHandle; | ||
|
||
#[tokio::test] | ||
async fn aborts_task_on_drop() { | ||
let (mut tx, rx) = oneshot::channel::<bool>(); | ||
let handle = tokio::spawn(async move { | ||
let _ = rx.await; | ||
}); | ||
let handle = AbortOnDropHandle::new(handle); | ||
drop(handle); | ||
tx.closed().await; | ||
assert!(tx.is_closed()); | ||
} | ||
|
||
#[tokio::test] | ||
async fn aborts_task_directly() { | ||
let (mut tx, rx) = oneshot::channel::<bool>(); | ||
let handle = tokio::spawn(async move { | ||
let _ = rx.await; | ||
}); | ||
let handle = AbortOnDropHandle::new(handle); | ||
handle.abort(); | ||
tx.closed().await; | ||
assert!(tx.is_closed()); | ||
assert!(handle.is_finished()); | ||
} |