1 | use crate::runtime::task::{Header, RawTask}; |
2 | |
3 | use std::fmt; |
4 | use std::future::Future; |
5 | use std::marker::PhantomData; |
6 | use std::panic::{RefUnwindSafe, UnwindSafe}; |
7 | use std::pin::Pin; |
8 | use std::task::{Context, Poll, Waker}; |
9 | |
10 | cfg_rt! { |
11 | /// An owned permission to join on a task (await its termination). |
12 | /// |
13 | /// This can be thought of as the equivalent of [`std::thread::JoinHandle`] |
14 | /// for a Tokio task rather than a thread. Note that the background task |
15 | /// associated with this `JoinHandle` started running immediately when you |
16 | /// called spawn, even if you have not yet awaited the `JoinHandle`. |
17 | /// |
18 | /// A `JoinHandle` *detaches* the associated task when it is dropped, which |
19 | /// means that there is no longer any handle to the task, and no way to `join` |
20 | /// on it. |
21 | /// |
22 | /// This `struct` is created by the [`task::spawn`] and [`task::spawn_blocking`] |
23 | /// functions. |
24 | /// |
25 | /// # Cancel safety |
26 | /// |
27 | /// The `&mut JoinHandle<T>` type is cancel safe. If it is used as the event |
28 | /// in a `tokio::select!` statement and some other branch completes first, |
29 | /// then it is guaranteed that the output of the task is not lost. |
30 | /// |
31 | /// If a `JoinHandle` is dropped, then the task continues running in the |
32 | /// background and its return value is lost. |
33 | /// |
34 | /// # Examples |
35 | /// |
36 | /// Creation from [`task::spawn`]: |
37 | /// |
38 | /// ``` |
39 | /// use tokio::task; |
40 | /// |
41 | /// # async fn doc() { |
42 | /// let join_handle: task::JoinHandle<_> = task::spawn(async { |
43 | /// // some work here |
44 | /// }); |
45 | /// # } |
46 | /// ``` |
47 | /// |
48 | /// Creation from [`task::spawn_blocking`]: |
49 | /// |
50 | /// ``` |
51 | /// use tokio::task; |
52 | /// |
53 | /// # async fn doc() { |
54 | /// let join_handle: task::JoinHandle<_> = task::spawn_blocking(|| { |
55 | /// // some blocking work here |
56 | /// }); |
57 | /// # } |
58 | /// ``` |
59 | /// |
60 | /// The generic parameter `T` in `JoinHandle<T>` is the return type of the spawned task. |
61 | /// If the return value is an i32, the join handle has type `JoinHandle<i32>`: |
62 | /// |
63 | /// ``` |
64 | /// use tokio::task; |
65 | /// |
66 | /// # async fn doc() { |
67 | /// let join_handle: task::JoinHandle<i32> = task::spawn(async { |
68 | /// 5 + 3 |
69 | /// }); |
70 | /// # } |
71 | /// |
72 | /// ``` |
73 | /// |
74 | /// If the task does not have a return value, the join handle has type `JoinHandle<()>`: |
75 | /// |
76 | /// ``` |
77 | /// use tokio::task; |
78 | /// |
79 | /// # async fn doc() { |
80 | /// let join_handle: task::JoinHandle<()> = task::spawn(async { |
81 | /// println!("I return nothing."); |
82 | /// }); |
83 | /// # } |
84 | /// ``` |
85 | /// |
86 | /// Note that `handle.await` doesn't give you the return type directly. It is wrapped in a |
87 | /// `Result` because panics in the spawned task are caught by Tokio. The `?` operator has |
88 | /// to be double chained to extract the returned value: |
89 | /// |
90 | /// ``` |
91 | /// use tokio::task; |
92 | /// use std::io; |
93 | /// |
94 | /// #[tokio::main] |
95 | /// async fn main() -> io::Result<()> { |
96 | /// let join_handle: task::JoinHandle<Result<i32, io::Error>> = tokio::spawn(async { |
97 | /// Ok(5 + 3) |
98 | /// }); |
99 | /// |
100 | /// let result = join_handle.await??; |
101 | /// assert_eq!(result, 8); |
102 | /// Ok(()) |
103 | /// } |
104 | /// ``` |
105 | /// |
106 | /// If the task panics, the error is a [`JoinError`] that contains the panic: |
107 | /// |
108 | /// ``` |
109 | /// use tokio::task; |
110 | /// use std::io; |
111 | /// use std::panic; |
112 | /// |
113 | /// #[tokio::main] |
114 | /// async fn main() -> io::Result<()> { |
115 | /// let join_handle: task::JoinHandle<Result<i32, io::Error>> = tokio::spawn(async { |
116 | /// panic!("boom"); |
117 | /// }); |
118 | /// |
119 | /// let err = join_handle.await.unwrap_err(); |
120 | /// assert!(err.is_panic()); |
121 | /// Ok(()) |
122 | /// } |
123 | /// |
124 | /// ``` |
125 | /// Child being detached and outliving its parent: |
126 | /// |
127 | /// ```no_run |
128 | /// use tokio::task; |
129 | /// use tokio::time; |
130 | /// use std::time::Duration; |
131 | /// |
132 | /// # #[tokio::main] async fn main() { |
133 | /// let original_task = task::spawn(async { |
134 | /// let _detached_task = task::spawn(async { |
135 | /// // Here we sleep to make sure that the first task returns before. |
136 | /// time::sleep(Duration::from_millis(10)).await; |
137 | /// // This will be called, even though the JoinHandle is dropped. |
138 | /// println!("♫ Still alive ♫"); |
139 | /// }); |
140 | /// }); |
141 | /// |
142 | /// original_task.await.expect("The task being joined has panicked"); |
143 | /// println!("Original task is joined."); |
144 | /// |
145 | /// // We make sure that the new task has time to run, before the main |
146 | /// // task returns. |
147 | /// |
148 | /// time::sleep(Duration::from_millis(1000)).await; |
149 | /// # } |
150 | /// ``` |
151 | /// |
152 | /// [`task::spawn`]: crate::task::spawn() |
153 | /// [`task::spawn_blocking`]: crate::task::spawn_blocking |
154 | /// [`std::thread::JoinHandle`]: std::thread::JoinHandle |
155 | /// [`JoinError`]: crate::task::JoinError |
156 | pub struct JoinHandle<T> { |
157 | raw: RawTask, |
158 | _p: PhantomData<T>, |
159 | } |
160 | } |
161 | |
162 | unsafe impl<T: Send> Send for JoinHandle<T> {} |
163 | unsafe impl<T: Send> Sync for JoinHandle<T> {} |
164 | |
165 | impl<T> UnwindSafe for JoinHandle<T> {} |
166 | impl<T> RefUnwindSafe for JoinHandle<T> {} |
167 | |
168 | impl<T> JoinHandle<T> { |
169 | pub(super) fn new(raw: RawTask) -> JoinHandle<T> { |
170 | JoinHandle { |
171 | raw, |
172 | _p: PhantomData, |
173 | } |
174 | } |
175 | |
176 | /// Abort the task associated with the handle. |
177 | /// |
178 | /// Awaiting a cancelled task might complete as usual if the task was |
179 | /// already completed at the time it was cancelled, but most likely it |
180 | /// will fail with a [cancelled] `JoinError`. |
181 | /// |
182 | /// ```rust |
183 | /// use tokio::time; |
184 | /// |
185 | /// # #[tokio::main(flavor = "current_thread" , start_paused = true)] |
186 | /// # async fn main() { |
187 | /// let mut handles = Vec::new(); |
188 | /// |
189 | /// handles.push(tokio::spawn(async { |
190 | /// time::sleep(time::Duration::from_secs(10)).await; |
191 | /// true |
192 | /// })); |
193 | /// |
194 | /// handles.push(tokio::spawn(async { |
195 | /// time::sleep(time::Duration::from_secs(10)).await; |
196 | /// false |
197 | /// })); |
198 | /// |
199 | /// for handle in &handles { |
200 | /// handle.abort(); |
201 | /// } |
202 | /// |
203 | /// for handle in handles { |
204 | /// assert!(handle.await.unwrap_err().is_cancelled()); |
205 | /// } |
206 | /// # } |
207 | /// ``` |
208 | /// [cancelled]: method@super::error::JoinError::is_cancelled |
209 | pub fn abort(&self) { |
210 | self.raw.remote_abort(); |
211 | } |
212 | |
213 | /// Checks if the task associated with this `JoinHandle` has finished. |
214 | /// |
215 | /// Please note that this method can return `false` even if [`abort`] has been |
216 | /// called on the task. This is because the cancellation process may take |
217 | /// some time, and this method does not return `true` until it has |
218 | /// completed. |
219 | /// |
220 | /// ```rust |
221 | /// use tokio::time; |
222 | /// |
223 | /// # #[tokio::main(flavor = "current_thread" , start_paused = true)] |
224 | /// # async fn main() { |
225 | /// let handle1 = tokio::spawn(async { |
226 | /// // do some stuff here |
227 | /// }); |
228 | /// let handle2 = tokio::spawn(async { |
229 | /// // do some other stuff here |
230 | /// time::sleep(time::Duration::from_secs(10)).await; |
231 | /// }); |
232 | /// // Wait for the task to finish |
233 | /// handle2.abort(); |
234 | /// time::sleep(time::Duration::from_secs(1)).await; |
235 | /// assert!(handle1.is_finished()); |
236 | /// assert!(handle2.is_finished()); |
237 | /// # } |
238 | /// ``` |
239 | /// [`abort`]: method@JoinHandle::abort |
240 | pub fn is_finished(&self) -> bool { |
241 | let state = self.raw.header().state.load(); |
242 | state.is_complete() |
243 | } |
244 | |
245 | /// Set the waker that is notified when the task completes. |
246 | pub(crate) fn set_join_waker(&mut self, waker: &Waker) { |
247 | if self.raw.try_set_join_waker(waker) { |
248 | // In this case the task has already completed. We wake the waker immediately. |
249 | waker.wake_by_ref(); |
250 | } |
251 | } |
252 | |
253 | /// Returns a new `AbortHandle` that can be used to remotely abort this task. |
254 | /// |
255 | /// Awaiting a task cancelled by the `AbortHandle` might complete as usual if the task was |
256 | /// already completed at the time it was cancelled, but most likely it |
257 | /// will fail with a [cancelled] `JoinError`. |
258 | /// |
259 | /// ```rust |
260 | /// use tokio::{time, task}; |
261 | /// |
262 | /// # #[tokio::main(flavor = "current_thread" , start_paused = true)] |
263 | /// # async fn main() { |
264 | /// let mut handles = Vec::new(); |
265 | /// |
266 | /// handles.push(tokio::spawn(async { |
267 | /// time::sleep(time::Duration::from_secs(10)).await; |
268 | /// true |
269 | /// })); |
270 | /// |
271 | /// handles.push(tokio::spawn(async { |
272 | /// time::sleep(time::Duration::from_secs(10)).await; |
273 | /// false |
274 | /// })); |
275 | /// |
276 | /// let abort_handles: Vec<task::AbortHandle> = handles.iter().map(|h| h.abort_handle()).collect(); |
277 | /// |
278 | /// for handle in abort_handles { |
279 | /// handle.abort(); |
280 | /// } |
281 | /// |
282 | /// for handle in handles { |
283 | /// assert!(handle.await.unwrap_err().is_cancelled()); |
284 | /// } |
285 | /// # } |
286 | /// ``` |
287 | /// [cancelled]: method@super::error::JoinError::is_cancelled |
288 | pub fn abort_handle(&self) -> super::AbortHandle { |
289 | self.raw.ref_inc(); |
290 | super::AbortHandle::new(self.raw) |
291 | } |
292 | |
293 | /// Returns a [task ID] that uniquely identifies this task relative to other |
294 | /// currently spawned tasks. |
295 | /// |
296 | /// **Note**: This is an [unstable API][unstable]. The public API of this type |
297 | /// may break in 1.x releases. See [the documentation on unstable |
298 | /// features][unstable] for details. |
299 | /// |
300 | /// [task ID]: crate::task::Id |
301 | /// [unstable]: crate#unstable-features |
302 | #[cfg (tokio_unstable)] |
303 | #[cfg_attr (docsrs, doc(cfg(tokio_unstable)))] |
304 | pub fn id(&self) -> super::Id { |
305 | // Safety: The header pointer is valid. |
306 | unsafe { Header::get_id(self.raw.header_ptr()) } |
307 | } |
308 | } |
309 | |
310 | impl<T> Unpin for JoinHandle<T> {} |
311 | |
312 | impl<T> Future for JoinHandle<T> { |
313 | type Output = super::Result<T>; |
314 | |
315 | fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { |
316 | ready!(crate::trace::trace_leaf(cx)); |
317 | let mut ret = Poll::Pending; |
318 | |
319 | // Keep track of task budget |
320 | let coop = ready!(crate::runtime::coop::poll_proceed(cx)); |
321 | |
322 | // Try to read the task output. If the task is not yet complete, the |
323 | // waker is stored and is notified once the task does complete. |
324 | // |
325 | // The function must go via the vtable, which requires erasing generic |
326 | // types. To do this, the function "return" is placed on the stack |
327 | // **before** calling the function and is passed into the function using |
328 | // `*mut ()`. |
329 | // |
330 | // Safety: |
331 | // |
332 | // The type of `T` must match the task's output type. |
333 | unsafe { |
334 | self.raw |
335 | .try_read_output(&mut ret as *mut _ as *mut (), cx.waker()); |
336 | } |
337 | |
338 | if ret.is_ready() { |
339 | coop.made_progress(); |
340 | } |
341 | |
342 | ret |
343 | } |
344 | } |
345 | |
346 | impl<T> Drop for JoinHandle<T> { |
347 | fn drop(&mut self) { |
348 | if self.raw.state().drop_join_handle_fast().is_ok() { |
349 | return; |
350 | } |
351 | |
352 | self.raw.drop_join_handle_slow(); |
353 | } |
354 | } |
355 | |
356 | impl<T> fmt::Debug for JoinHandle<T> |
357 | where |
358 | T: fmt::Debug, |
359 | { |
360 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { |
361 | // Safety: The header pointer is valid. |
362 | let id_ptr: NonNull = unsafe { Header::get_id_ptr(self.raw.header_ptr()) }; |
363 | let id: &Id = unsafe { id_ptr.as_ref() }; |
364 | fmt.debug_struct("JoinHandle" ).field(name:"id" , value:id).finish() |
365 | } |
366 | } |
367 | |