use tokio::task::{AbortHandle, JoinError, JoinHandle};
use std::{
future::Future,
mem::ManuallyDrop,
pin::Pin,
task::{Context, Poll},
};
#[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> {
pub fn new(handle: JoinHandle<T>) -> Self {
Self(handle)
}
pub fn abort(&self) {
self.0.abort()
}
pub fn is_finished(&self) -> bool {
self.0.is_finished()
}
pub fn abort_handle(&self) -> AbortHandle {
self.0.abort_handle()
}
pub fn detach(self) -> JoinHandle<T> {
let this = ManuallyDrop::new(self);
unsafe { std::ptr::read(&this.0) }
}
}
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
}
}