async-rt 0.2.0

A small library designed to utilize async executors through an common API while extending features.
Documentation
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
pub mod arc;
pub mod error;
#[cfg(feature = "fs")]
pub mod fs;
pub mod global;
#[cfg(all(
    feature = "net",
    not(target_arch = "wasm32"),
    any(feature = "tokio", feature = "smol", feature = "compio")
))]
pub mod net;
pub mod rt;
pub mod task;
pub mod tracker;

#[cfg(feature = "either")]
pub mod either;
pub mod rc;
pub mod scoped;

use std::fmt::{Debug, Formatter};
use std::panic::AssertUnwindSafe;
use std::sync::atomic::{AtomicBool, Ordering};

pub use crate::error::JoinError;
pub use crate::error::TimeoutError;
pub use crate::scoped::{Scope, ScopeExecutor, ScopedJoinHandle};
#[cfg(all(
    feature = "macros",
    feature = "compio",
    not(any(feature = "tokio", feature = "smol", target_arch = "wasm32"))
))]
#[doc(inline)]
pub use async_rt_macros::{main_compio as main, test_compio as test};
#[cfg(all(
    feature = "macros",
    not(any(
        feature = "tokio",
        feature = "smol",
        feature = "compio",
        feature = "threadpool",
        feature = "lite"
    )),
    not(target_arch = "wasm32")
))]
#[doc(inline)]
pub use async_rt_macros::{main_fail as main, test_fail as test};
#[cfg(all(
    feature = "macros",
    feature = "lite",
    not(any(
        feature = "tokio",
        feature = "smol",
        feature = "compio",
        feature = "threadpool",
        target_arch = "wasm32"
    ))
))]
#[doc(inline)]
pub use async_rt_macros::{main_lite as main, test_lite as test};
#[cfg(all(
    feature = "macros",
    feature = "smol",
    not(any(feature = "tokio", target_arch = "wasm32"))
))]
#[doc(inline)]
pub use async_rt_macros::{main_smol as main, test_smol as test};
#[cfg(all(
    feature = "macros",
    feature = "threadpool",
    not(any(
        feature = "tokio",
        feature = "smol",
        feature = "compio",
        target_arch = "wasm32"
    ))
))]
#[doc(inline)]
pub use async_rt_macros::{main_threadpool as main, test_threadpool as test};
#[cfg(all(feature = "macros", feature = "tokio", not(target_arch = "wasm32")))]
#[doc(inline)]
pub use async_rt_macros::{main_tokio as main, test_tokio as test};
#[cfg(all(feature = "macros", target_arch = "wasm32"))]
#[doc(inline)]
pub use async_rt_macros::{main_wasm_fail as main, test_wasm_fail as test};
use futures::channel::mpsc::{Receiver, UnboundedReceiver};
use futures::future::{AbortHandle, AbortRegistration, Abortable};
use futures::task::AtomicWaker;
use futures::{FutureExt, SinkExt, StreamExt, TryFutureExt};
use futures_timeout::Timeout;
#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
use parking_lot::Mutex;
use pollable_map::optional::Optional;
use std::future::Future;
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};

#[cfg(feature = "macros")]
extern crate self as async_rt;

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
type BoxCancelFuture<T> = Pin<Box<dyn Future<Output = Option<T>> + Send + 'static>>;

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
type StartCompioCancel<T> = fn(&Mutex<InnerCompioHandle<T>>, &AtomicBool);

#[cfg_attr(feature = "tokio", allow(dead_code))]
pub(crate) struct CompletionGuard {
    finished: Arc<AtomicBool>,
}

impl CompletionGuard {
    #[cfg_attr(feature = "tokio", allow(dead_code))]
    pub(crate) fn new(finished: Arc<AtomicBool>) -> Self {
        Self { finished }
    }
}

impl Drop for CompletionGuard {
    fn drop(&mut self) {
        self.finished.store(true, Ordering::Release);
    }
}

pub(crate) async fn abortable_result<F>(
    future: F,
    abort_registration: AbortRegistration,
) -> Result<F::Output, JoinError>
where
    F: Future,
{
    let future = AssertUnwindSafe(future).catch_unwind();

    match Abortable::new(future, abort_registration).await {
        Ok(Ok(value)) => Ok(value),
        Ok(Err(_)) => Err(JoinError::Panicked),
        Err(_) => Err(JoinError::Aborted),
    }
}

/// An owned permission to join on a task (await its termination).
///
/// This can be seen as an equivalent to [`std::thread::JoinHandle`] but for [`Future`] tasks rather than a thread.
/// Note that the task associated with this `JoinHandle` will start running when
/// [`Executor::spawn`] is called according to the selected runtime, even if the
/// `JoinHandle` has not been awaited.
///
/// Dropping `JoinHandle` will not abort or cancel the task. In other words, the task will continue to run in the background
/// and any return value will be lost.
///
/// This `struct` is created by the [`Executor::spawn`].
pub struct JoinHandle<T> {
    inner: InnerJoinHandle<T>,
}

impl<T> Debug for JoinHandle<T> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("JoinHandle").finish()
    }
}

#[derive(Default)]
enum InnerJoinHandle<T> {
    #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))]
    TokioHandle {
        handle: Optional<::tokio::task::JoinHandle<T>>,
        abort_requested: AtomicBool,
    },
    #[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
    CompioHandle {
        handle: Mutex<InnerCompioHandle<T>>,
        abort_requested: AtomicBool,
        start_cancel: StartCompioCancel<T>,
    },
    #[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
    SmolHandle { handle: SmolTask<T> },
    #[allow(dead_code)]
    CustomHandle {
        inner: Optional<futures::channel::oneshot::Receiver<Result<T, JoinError>>>,
        handle: AbortHandle,
        finished: Arc<AtomicBool>,
    },
    #[default]
    Empty,
}

#[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
struct SmolTask<T> {
    inner: Optional<::async_task::FallibleTask<Result<T, JoinError>>>,
    abort_handle: AbortHandle,
}

#[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
impl<T> SmolTask<T> {
    fn new(task: ::smol::Task<Result<T, JoinError>>, abort_handle: AbortHandle) -> Self {
        Self {
            inner: Optional::new(task.fallible()),
            abort_handle,
        }
    }

    fn abort(&self) {
        self.abort_handle.abort();
    }

    fn is_finished(&self) -> bool {
        self.inner
            .as_ref()
            .map(|task| task.is_finished())
            .unwrap_or(true)
    }
}

#[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
impl<T> Drop for SmolTask<T> {
    fn drop(&mut self) {
        if let Some(task) = self.inner.take() {
            task.detach();
        }
    }
}

#[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
impl<T> Future for SmolTask<T> {
    type Output = Result<T, JoinError>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        match futures::ready!(Pin::new(&mut self.inner).poll(cx)) {
            Some(result) => Poll::Ready(result),
            None => Poll::Ready(Err(JoinError::Cancelled)),
        }
    }
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
enum InnerCompioHandle<T> {
    Running(Option<::compio::runtime::JoinHandle<T>>),
    Cancelling(CompioCancel<T>),
    Ready(Option<Option<T>>),
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl<T> Unpin for InnerCompioHandle<T> {}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
struct CompioCancelWake {
    outer: AtomicWaker,
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl futures::task::ArcWake for CompioCancelWake {
    fn wake_by_ref(arc_self: &Arc<Self>) {
        arc_self.outer.wake();
    }
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
struct CompioCancel<T> {
    future: BoxCancelFuture<T>,
    wake: Arc<CompioCancelWake>,
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl<T> CompioCancel<T> {
    fn new(future: BoxCancelFuture<T>) -> Self {
        Self {
            future,
            wake: Arc::new(CompioCancelWake {
                outer: AtomicWaker::new(),
            }),
        }
    }

    fn poll_inner(&mut self) -> Poll<Option<T>> {
        let waker = futures::task::waker(self.wake.clone());
        let mut cx = Context::from_waker(&waker);
        self.future.as_mut().poll(&mut cx)
    }
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl<T> Future for CompioCancel<T> {
    type Output = Option<T>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        self.wake.outer.register(cx.waker());
        self.poll_inner()
    }
}

// Note: We implement a custom drop due to compio `JoinHandle` cancellation of the task upon drop
//       therefore we need to detach the handle upon drop so it will continue running in the
//       background to follow the same flow as the other executors implementations.
#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl<T> Drop for InnerCompioHandle<T> {
    fn drop(&mut self) {
        if let InnerCompioHandle::Running(handle) = self {
            let Some(handle) = handle.take() else {
                return;
            };
            handle.detach();
        }
    }
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl<T> Future for InnerCompioHandle<T> {
    type Output = Result<Option<T>, JoinError>;
    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let this = &mut *self;

        match this {
            InnerCompioHandle::Running(handle) => {
                let Some(mut handle) = handle.take() else {
                    return Poll::Ready(Ok(None));
                };
                match Pin::new(&mut handle).poll(cx) {
                    Poll::Ready(result) => Poll::Ready(result.map(Some).map_err(JoinError::from)),
                    Poll::Pending => {
                        *this = InnerCompioHandle::Running(Some(handle));
                        Poll::Pending
                    }
                }
            }
            InnerCompioHandle::Cancelling(future) => match Pin::new(future).poll(cx) {
                Poll::Ready(result) => {
                    *this = InnerCompioHandle::Ready(None);
                    Poll::Ready(Ok(result))
                }
                Poll::Pending => Poll::Pending,
            },
            InnerCompioHandle::Ready(result) => match result.take() {
                Some(result) => Poll::Ready(Ok(result)),
                None => Poll::Ready(Err(JoinError::Empty)),
            },
        }
    }
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
fn start_compio_cancel<T: Send + 'static>(
    state: &Mutex<InnerCompioHandle<T>>,
    requested: &AtomicBool,
) {
    let mut state = state.lock();

    let InnerCompioHandle::Running(slot) = &mut *state else {
        return;
    };
    let Some(handle) = slot.take() else {
        return;
    };

    requested.store(true, Ordering::Release);

    let future: BoxCancelFuture<T> = Box::pin(handle.cancel());
    let mut future = CompioCancel::new(future);
    *state = match future.poll_inner() {
        Poll::Ready(result) => InnerCompioHandle::Ready(Some(result)),
        Poll::Pending => InnerCompioHandle::Cancelling(future),
    };
}

#[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
impl<T> InnerCompioHandle<T> {
    fn is_finished(&mut self) -> bool {
        match self {
            InnerCompioHandle::Running(handle) => {
                handle.as_ref().map(|h| h.is_finished()).unwrap_or(true)
            }
            InnerCompioHandle::Cancelling(future) => match future.poll_inner() {
                Poll::Ready(result) => {
                    *self = InnerCompioHandle::Ready(Some(result));
                    true
                }
                Poll::Pending => false,
            },
            InnerCompioHandle::Ready(_) => true,
        }
    }
}

impl<T> InnerJoinHandle<T> {
    #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))]
    fn tokio(handle: ::tokio::task::JoinHandle<T>) -> Self {
        Self::TokioHandle {
            handle: Optional::new(handle),
            abort_requested: AtomicBool::new(false),
        }
    }

    #[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
    fn compio(handle: ::compio::runtime::JoinHandle<T>) -> Self
    where
        T: Send + 'static,
    {
        Self::CompioHandle {
            handle: Mutex::new(InnerCompioHandle::Running(Some(handle))),
            abort_requested: AtomicBool::new(false),
            start_cancel: start_compio_cancel::<T>,
        }
    }

    #[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
    fn smol(handle: ::smol::Task<Result<T, JoinError>>, abort_handle: AbortHandle) -> Self {
        Self::SmolHandle {
            handle: SmolTask::new(handle, abort_handle),
        }
    }
}

impl<T> JoinHandle<T> {
    /// Provide an empty [`JoinHandle`] with no associated task.
    pub fn empty() -> Self {
        JoinHandle {
            inner: InnerJoinHandle::Empty,
        }
    }
}

impl<T> JoinHandle<T> {
    /// Abort the task associated with the handle.
    ///
    /// If cancellation is observed after this method is called, awaiting the
    /// handle returns [`JoinError::Aborted`]. Cancellation without an abort
    /// request through this handle returns [`JoinError::Cancelled`].
    pub fn abort(&self) {
        match &self.inner {
            #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))]
            InnerJoinHandle::TokioHandle {
                handle,
                abort_requested,
            } => {
                if let Some(handle) = handle.as_ref() {
                    abort_requested.store(true, Ordering::Release);
                    handle.abort();
                }
            }
            #[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
            InnerJoinHandle::CompioHandle {
                handle,
                abort_requested,
                start_cancel,
            } => {
                start_cancel(handle, abort_requested);
            }
            #[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
            InnerJoinHandle::SmolHandle { handle } => handle.abort(),
            InnerJoinHandle::CustomHandle { handle, .. } => handle.abort(),
            InnerJoinHandle::Empty => {}
        }
    }

    /// Check if the task associated with this `JoinHandle` has finished.
    ///
    /// Note that this method can return false even if [`JoinHandle::abort`] has been called on the
    /// task due to the time it may take for the task to cancel.
    pub fn is_finished(&self) -> bool {
        match &self.inner {
            #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))]
            InnerJoinHandle::TokioHandle { handle, .. } => {
                handle.as_ref().map(|h| h.is_finished()).unwrap_or(true)
            }
            #[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
            InnerJoinHandle::CompioHandle { handle, .. } => handle.lock().is_finished(),
            #[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
            InnerJoinHandle::SmolHandle { handle } => handle.is_finished(),
            InnerJoinHandle::CustomHandle {
                inner, finished, ..
            } => finished.load(Ordering::Acquire) || inner.is_none(),
            InnerJoinHandle::Empty => true,
        }
    }

    /// Replace the current handle with the provided [`JoinHandle`], while dropping the source.
    ///
    /// # Warning
    ///
    /// Note that if this is called with a non-empty handle, the existing task
    /// will not be terminated when it is replaced and could run indefinitely.
    /// Best to use when `JoinHandle` is `JoinHandle::empty` where empty is a used
    /// placeholder.
    pub fn replace(&mut self, mut handle: JoinHandle<T>) {
        self.inner = std::mem::take(&mut handle.inner);
    }

    /// Replace the current handle with the provided [`JoinHandle`], making the source become
    /// an equivalent to [`JoinHandle::empty`].
    ///
    /// # Warning
    ///
    /// Note that if this is called with a non-empty handle, the existing task
    /// will not be terminated when it is replaced and could run indefinitely.
    /// Best to use when `JoinHandle` is `JoinHandle::empty` where empty is a used
    /// placeholder, and you want to update the source later with another task handle.
    pub fn replace_in_place(&mut self, handle: &mut JoinHandle<T>) {
        self.inner = std::mem::take(&mut handle.inner);
    }
}

impl<T> Future for JoinHandle<T> {
    type Output = Result<T, JoinError>;
    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        let inner = &mut self.inner;
        match inner {
            #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))]
            InnerJoinHandle::TokioHandle {
                handle,
                abort_requested,
            } => {
                let fut = futures::ready!(Pin::new(handle).poll(cx));

                match fut {
                    Ok(val) => Poll::Ready(Ok(val)),
                    Err(e) if e.is_cancelled() && abort_requested.load(Ordering::Acquire) => {
                        Poll::Ready(Err(JoinError::Aborted))
                    }
                    Err(e) => Poll::Ready(Err(e.into())),
                }
            }
            #[cfg(all(feature = "compio", not(target_arch = "wasm32")))]
            InnerJoinHandle::CompioHandle {
                handle,
                abort_requested,
                ..
            } => {
                let handle = &mut *handle.lock();
                let fut = futures::ready!(Pin::new(handle).poll(cx));

                match fut {
                    Ok(Some(val)) => Poll::Ready(Ok(val)),
                    Ok(None) if abort_requested.load(Ordering::Acquire) => {
                        Poll::Ready(Err(JoinError::Aborted))
                    }
                    Ok(None) => Poll::Ready(Err(JoinError::Empty)),
                    Err(_) if abort_requested.load(Ordering::Acquire) => {
                        Poll::Ready(Err(JoinError::Aborted))
                    }
                    Err(e) => Poll::Ready(Err(e)),
                }
            }
            #[cfg(all(feature = "smol", not(target_arch = "wasm32")))]
            InnerJoinHandle::SmolHandle { handle } => Pin::new(handle).poll(cx),
            InnerJoinHandle::CustomHandle { inner, .. } => {
                let fut = futures::ready!(Pin::new(inner).poll(cx));
                match fut {
                    Ok(result) => Poll::Ready(result),
                    Err(_) => Poll::Ready(Err(JoinError::Cancelled)),
                }
            }
            InnerJoinHandle::Empty => Poll::Ready(Err(JoinError::Empty)),
        }
    }
}

/// The same as [`JoinHandle`] but designed to abort the task when all associated references
/// to the returned `AbortableJoinHandle` have been dropped.
#[derive(Clone)]
pub struct AbortableJoinHandle<T> {
    handle: Arc<InnerHandle<T>>,
}

impl<T> Debug for AbortableJoinHandle<T> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("AbortableJoinHandle").finish()
    }
}

impl<T> From<JoinHandle<T>> for AbortableJoinHandle<T> {
    fn from(handle: JoinHandle<T>) -> Self {
        AbortableJoinHandle {
            handle: Arc::new(InnerHandle {
                inner: parking_lot::Mutex::new(handle),
                waker: AtomicWaker::new(),
            }),
        }
    }
}

impl<T> AbortableJoinHandle<T> {
    /// Provide an empty [`AbortableJoinHandle`] with no associated task.
    pub fn empty() -> Self {
        Self {
            handle: Arc::new(InnerHandle {
                inner: parking_lot::Mutex::new(JoinHandle::empty()),
                waker: AtomicWaker::new(),
            }),
        }
    }
}

impl<T> AbortableJoinHandle<T> {
    /// See [`JoinHandle::abort`]
    pub fn abort(&self) {
        self.handle.inner.lock().abort();
        self.handle.wake();
    }

    /// See [`JoinHandle::is_finished`]
    pub fn is_finished(&self) -> bool {
        self.handle.inner.lock().is_finished()
    }

    /// Replace the current handle with an existing one.
    ///
    /// # Warning
    ///
    /// Note that if this is called with a non-empty handle, the existing task
    /// will not be terminated when it is replaced.
    pub fn replace(&self, other: AbortableJoinHandle<T>) {
        if Arc::ptr_eq(&self.handle, &other.handle) {
            return;
        }

        let replacement = {
            let mut source = other.handle.inner.lock();
            std::mem::replace(&mut *source, JoinHandle::empty())
        };

        other.handle.wake();

        let previous = {
            let mut destination = self.handle.inner.lock();
            std::mem::replace(&mut *destination, replacement)
        };

        drop(previous);

        self.handle.wake();
    }
}

struct InnerHandle<T> {
    pub inner: parking_lot::Mutex<JoinHandle<T>>,
    pub waker: AtomicWaker,
}

impl<T> Drop for InnerHandle<T> {
    fn drop(&mut self) {
        self.inner.lock().abort();
    }
}

impl<T> InnerHandle<T> {
    pub fn wake(&self) {
        self.waker.wake();
    }
}

impl<T> Future for AbortableJoinHandle<T> {
    type Output = Result<T, JoinError>;
    fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        self.handle.waker.register(cx.waker());
        let inner = &mut *self.handle.inner.lock();
        Pin::new(inner).poll(cx)
    }
}

/// A task that accepts messages
pub struct CommunicationTask<T> {
    _task_handle: AbortableJoinHandle<()>,
    _channel_tx: futures::channel::mpsc::Sender<T>,
}

impl<T> Clone for CommunicationTask<T> {
    fn clone(&self) -> Self {
        CommunicationTask {
            _task_handle: self._task_handle.clone(),
            _channel_tx: self._channel_tx.clone(),
        }
    }
}

impl<T> Debug for CommunicationTask<T> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("CommunicationTask").finish()
    }
}

impl<T> CommunicationTask<T> {
    pub(crate) fn new(
        task_handle: AbortableJoinHandle<()>,
        channel_tx: futures::channel::mpsc::Sender<T>,
    ) -> Self {
        Self {
            _task_handle: task_handle,
            _channel_tx: channel_tx,
        }
    }

    /// Send a message to the task
    pub async fn send(&mut self, data: T) -> std::io::Result<()> {
        self._channel_tx
            .send(data)
            .await
            .map_err(std::io::Error::other)
    }

    /// Attempts to send a message to the task, returning an error if the channel is full or closed due to the task being aborted.
    pub fn try_send(&mut self, data: T) -> std::io::Result<()> {
        self._channel_tx
            .try_send(data)
            .map_err(|e| std::io::Error::other(e.to_string()))
    }

    /// Abort the task
    pub fn abort(mut self) {
        self._channel_tx.close_channel();
        self._task_handle.abort();
    }

    /// Check to determine if the task is active.
    pub fn is_active(&self) -> bool {
        !self._task_handle.is_finished() && !self._channel_tx.is_closed()
    }
}

/// A task that accepts messages
pub struct UnboundedCommunicationTask<T> {
    _task_handle: AbortableJoinHandle<()>,
    _channel_tx: futures::channel::mpsc::UnboundedSender<T>,
}

impl<T> Clone for UnboundedCommunicationTask<T> {
    fn clone(&self) -> Self {
        UnboundedCommunicationTask {
            _task_handle: self._task_handle.clone(),
            _channel_tx: self._channel_tx.clone(),
        }
    }
}

impl<T> Debug for UnboundedCommunicationTask<T> {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("UnboundedCommunicationTask").finish()
    }
}

impl<T> UnboundedCommunicationTask<T> {
    pub(crate) fn new(
        task_handle: AbortableJoinHandle<()>,
        channel_tx: futures::channel::mpsc::UnboundedSender<T>,
    ) -> Self {
        Self {
            _task_handle: task_handle,
            _channel_tx: channel_tx,
        }
    }

    /// Send a message to task
    pub fn send(&mut self, data: T) -> std::io::Result<()> {
        self._channel_tx
            .unbounded_send(data)
            .map_err(|e| std::io::Error::other(e.to_string()))
    }

    /// Abort the task
    pub fn abort(self) {
        self._channel_tx.close_channel();
        self._task_handle.abort();
    }

    /// Check to determine if the task is active.
    pub fn is_active(&self) -> bool {
        !self._task_handle.is_finished() && !self._channel_tx.is_closed()
    }
}

pub trait Executor {
    /// Returns an optional runtime name of the executor.
    fn runtime_type(&self) -> Option<&'static str> {
        None
    }

    /// Spawns a new asynchronous task in the background, returning a Future [`JoinHandle`] for it.
    fn spawn<F>(&self, future: F) -> JoinHandle<F::Output>
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static;

    /// Spawns a new asynchronous task in the background, returning an abortable handle that will cancel the task
    /// once the handle is dropped.
    ///
    /// Note: This function is used if the task is expected to run until the handle is dropped. It is recommended to use
    /// [`Executor::spawn`] or [`Executor::dispatch`] otherwise.
    fn spawn_abortable<F>(&self, future: F) -> AbortableJoinHandle<F::Output>
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static,
    {
        let handle = self.spawn(future);
        handle.into()
    }

    /// Spawns a new asynchronous task in the background without an handle.
    /// Basically the same as [`Executor::spawn`].
    fn dispatch<F>(&self, future: F)
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static,
    {
        self.spawn(future);
    }

    /// Spawns a new asynchronous task that accepts messages to the task.
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine<T, F, Fut>(&self, f: F) -> CommunicationTask<T>
    where
        F: FnMut(T) -> Fut + Send + 'static,
        Fut: Future<Output = ()> + Send + 'static,
        T: Send + 'static,
    {
        Self::spawn_coroutine_with_buffer(self, 1, f)
    }

    /// Spawns a new asynchronous task that accepts messages to the task with a set buffer.
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine_with_buffer<T, F, Fut>(
        &self,
        buffer: usize,
        mut f: F,
    ) -> CommunicationTask<T>
    where
        F: FnMut(T) -> Fut + Send + 'static,
        Fut: Future<Output = ()> + Send + 'static,
        T: Send + 'static,
    {
        let (tx, mut rx) = futures::channel::mpsc::channel(buffer);
        let _task_handle = self.spawn_abortable(async move {
            while let Some(msg) = rx.next().await {
                f(msg).await;
            }
        });
        CommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task that accepts unbounded messages to the task.
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_unbounded_coroutine<T, F, Fut>(&self, mut f: F) -> UnboundedCommunicationTask<T>
    where
        F: FnMut(T) -> Fut + Send + 'static,
        Fut: Future<Output = ()> + Send + 'static,
        T: Send + 'static,
    {
        let (tx, mut rx) = futures::channel::mpsc::unbounded();
        let _task_handle = self.spawn_abortable(async move {
            while let Some(msg) = rx.next().await {
                f(msg).await;
            }
        });
        UnboundedCommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task with provided context that accepts messages to the task.
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    ///
    /// # Note
    /// If state must be borrowed across awaits,
    /// use [`Executor::spawn_coroutine_with_receiver_and_context`].
    fn spawn_coroutine_with_context<T, C, F, Fut>(&self, context: C, f: F) -> CommunicationTask<T>
    where
        F: FnMut(&mut C, T) -> Fut + Send + 'static,
        Fut: Future<Output = ()> + Send + 'static,
        C: Send + 'static,
        T: Send + 'static,
    {
        Self::spawn_coroutine_with_buffer_and_context(self, context, 1, f)
    }

    /// Spawns a new asynchronous task with provided context that accepts messages to the task with a set buffer.
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine_with_buffer_and_context<T, C, F, Fut>(
        &self,
        context: C,
        buffer: usize,
        mut f: F,
    ) -> CommunicationTask<T>
    where
        F: FnMut(&mut C, T) -> Fut + Send + 'static,
        Fut: Future<Output = ()> + Send + 'static,
        C: Send + 'static,
        T: Send + 'static,
    {
        let (tx, mut rx) = futures::channel::mpsc::channel(buffer);
        let _task_handle = self.spawn_abortable(async move {
            let mut context = context;
            while let Some(msg) = rx.next().await {
                f(&mut context, msg).await;
            }
        });
        CommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task with provided context that accepts unbounded messages to the task.
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_unbounded_coroutine_with_context<T, C, F, Fut>(
        &self,
        context: C,
        mut f: F,
    ) -> UnboundedCommunicationTask<T>
    where
        F: FnMut(&mut C, T) -> Fut + Send + 'static,
        Fut: Future<Output = ()> + Send + 'static,
        C: Send + 'static,
        T: Send + 'static,
    {
        let (tx, mut rx) = futures::channel::mpsc::unbounded();
        let _task_handle = self.spawn_abortable(async move {
            let mut context = context;
            while let Some(msg) = rx.next().await {
                f(&mut context, msg).await;
            }
        });
        UnboundedCommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task that accepts messages to the task using [`channels`](futures::channel::mpsc).
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine_with_receiver<T, F, Fut>(&self, f: F) -> CommunicationTask<T>
    where
        F: FnMut(Receiver<T>) -> Fut,
        Fut: Future<Output = ()> + Send + 'static,
    {
        Self::spawn_coroutine_with_receiver_and_buffer(self, 1, f)
    }

    /// Spawns a new asynchronous task with a set channel buffer that accepts messages to the task using [`channels`](futures::channel::mpsc).
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine_with_receiver_and_buffer<T, F, Fut>(
        &self,
        buffer: usize,
        mut f: F,
    ) -> CommunicationTask<T>
    where
        F: FnMut(Receiver<T>) -> Fut,
        Fut: Future<Output = ()> + Send + 'static,
    {
        let (tx, rx) = futures::channel::mpsc::channel(buffer);
        let fut = f(rx);
        let _task_handle = self.spawn_abortable(fut);
        CommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task with provided context that accepts messages to the task using [`channels`](futures::channel::mpsc).
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine_with_receiver_and_context<T, F, C, Fut>(
        &self,
        context: C,
        f: F,
    ) -> CommunicationTask<T>
    where
        F: FnMut(C, Receiver<T>) -> Fut,
        Fut: Future<Output = ()> + Send + 'static,
    {
        Self::spawn_coroutine_with_receiver_buffer_and_context(self, context, 1, f)
    }

    /// Spawns a new asynchronous task with a set channel buffer and provided context that accepts messages to the task using [`channels`](futures::channel::mpsc).
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_coroutine_with_receiver_buffer_and_context<T, F, C, Fut>(
        &self,
        context: C,
        buffer: usize,
        mut f: F,
    ) -> CommunicationTask<T>
    where
        F: FnMut(C, Receiver<T>) -> Fut,
        Fut: Future<Output = ()> + Send + 'static,
    {
        let (tx, rx) = futures::channel::mpsc::channel(buffer);
        let fut = f(context, rx);
        let _task_handle = self.spawn_abortable(fut);
        CommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task that accepts messages to the task using [`channels`](futures::channel::mpsc).
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_unbounded_coroutine_with_receiver<T, F, Fut>(
        &self,
        mut f: F,
    ) -> UnboundedCommunicationTask<T>
    where
        F: FnMut(UnboundedReceiver<T>) -> Fut,
        Fut: Future<Output = ()> + Send + 'static,
    {
        let (tx, rx) = futures::channel::mpsc::unbounded();
        let fut = f(rx);
        let _task_handle = self.spawn_abortable(fut);
        UnboundedCommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Spawns a new asynchronous task with provided context that accepts messages to the task using [`channels`](futures::channel::mpsc).
    /// This function returns a handle that allows sending a message, or if there is no reference to the handle at all
    /// (in other words, all handles are dropped), the task would be aborted.
    fn spawn_unbounded_coroutine_with_receiver_and_context<T, F, C, Fut>(
        &self,
        context: C,
        mut f: F,
    ) -> UnboundedCommunicationTask<T>
    where
        F: FnMut(C, UnboundedReceiver<T>) -> Fut,
        Fut: Future<Output = ()> + Send + 'static,
    {
        let (tx, rx) = futures::channel::mpsc::unbounded();
        let fut = f(context, rx);
        let _task_handle = self.spawn_abortable(fut);
        UnboundedCommunicationTask {
            _task_handle,
            _channel_tx: tx,
        }
    }

    /// Create a structured-concurrency scope in which tasks may be spawned
    /// that borrow from the enclosing stack frame.
    ///
    /// Unlike [`Executor::spawn`], tasks spawned on the [`Scope`] are driven
    /// cooperatively by the returned future so they may borrow any data that outlives
    /// the `'env` lifetime. Every task is either completed or canceled before
    /// `scope` returns, so borrows never outlive the stack frame.
    ///
    /// This is the async analogue of [`std::thread::scope`].
    ///
    /// # Example
    ///
    /// ```no_run
    /// # async fn run() {
    /// use async_rt::Executor;
    /// use async_rt::global::ConfiguredExecutor;
    ///
    /// let executor: ConfiguredExecutor = ConfiguredExecutor::default();
    /// let data = vec![1, 2, 3, 4];
    /// let sum = executor
    ///     .scope(async |s| {
    ///         let a = s.spawn(async { data[0] + data[1] });
    ///         let b = s.spawn(async { data[2] + data[3] });
    ///         a.await.unwrap() + b.await.unwrap()
    ///     })
    ///     .await;
    /// assert_eq!(sum, 10);
    /// # }
    /// ```
    fn scope<'env, F, T>(&self, f: F) -> impl Future<Output = T>
    where
        F: for<'scope> AsyncFnOnce(&'scope Scope<'scope, 'env>) -> T,
    {
        scoped::scope(f)
    }

    /// Run an async closure with a scoped [`Executor`] wrapper that
    /// forwards spawns to this executor, waits for all spawned tasks
    /// to finish when the closure returns, and aborts any outstanding
    /// tasks if the scope future itself is cancelled.
    ///
    /// Unlike [`Executor::scope`], tasks run on the real executor (so
    /// they get real parallelism) but must be `Send + 'static`.
    ///
    /// # Example
    ///
    /// ```no_run
    /// # async fn run() {
    /// use async_rt::Executor;
    /// use async_rt::global::ConfiguredExecutor;
    ///
    /// let executor: ConfiguredExecutor = ConfiguredExecutor::default();
    /// let total = executor
    ///     .executor_scope(async |s| {
    ///         let a = s.spawn(async { 1 + 2 });
    ///         let b = s.spawn(async { 3 + 4 });
    ///         a.await.unwrap() + b.await.unwrap()
    ///     })
    ///     .await;
    /// assert_eq!(total, 10);
    /// # }
    /// ```
    fn executor_scope<'scope, F, T>(&'scope self, f: F) -> impl Future<Output = T>
    where
        Self: Sized,
        F: AsyncFnOnce(&ScopeExecutor<'scope, Self>) -> T,
    {
        scoped::executor_scope(self, f)
    }
}

pub trait ExecutorBlocking: Executor {
    /// Spawn a thread in the background with the ability to concurrently await on the results without
    /// blocking the executor.
    ///
    /// Note that there is no real way to abort the thread, and calling [`JoinHandle::abort`]
    /// would only abort the underlining tasked that is being polled but not the thread itself.
    fn spawn_blocking<F, R>(&self, f: F) -> JoinHandle<R>
    where
        F: FnOnce() -> R + Send + 'static,
        R: Send + 'static;

    /// Spawns a thread in the background, returning an abortable handle that will cancel it
    /// once the handle is dropped.
    ///
    /// Note: This function is used if the task is expected to run until the handle is dropped.
    /// It is recommended to use [`ExecutorBlocking::spawn_blocking`]. Additionally, there is no guarantee
    /// that the thread will cancel or abort.
    fn spawn_blocking_abortable<F, R>(&self, f: F) -> AbortableJoinHandle<R>
    where
        F: FnOnce() -> R + Send + 'static,
        R: Send + 'static,
    {
        let handle = self.spawn_blocking(f);
        handle.into()
    }
}

pub trait ExecutorTimeout: Executor {
    /// Spawns a new asynchronous task in the background that must complete within `duration`,
    /// returning a [`JoinHandle`].
    ///
    /// If the future does not finish before `duration` elapses, it is dropped and the task
    /// completes with [`TimeoutError`].
    fn spawn_timeout<F>(
        &self,
        duration: std::time::Duration,
        f: F,
    ) -> JoinHandle<Result<F::Output, TimeoutError>>
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static,
    {
        self.spawn(Timeout::from_future(f, duration).map_err(|_| TimeoutError))
    }

    /// Spawns a task after waiting for a duration before the task is polled.
    fn spawn_delay<F>(&self, duration: std::time::Duration, f: F) -> JoinHandle<F::Output>
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static,
    {
        self.spawn(async move {
            let _ = Timeout::from_future(futures::future::pending::<()>(), duration).await;
            f.await
        })
    }

    /// Spawns a new asynchronous task in the background that must complete within `duration`,
    /// returning an abortable handle that will cancel the task once the handle is dropped.
    ///
    /// If the future does not finish before `duration` elapses, it is dropped and the task
    /// completes with [`TimeoutError`].
    fn spawn_abortable_timeout<F>(
        &self,
        duration: std::time::Duration,
        f: F,
    ) -> AbortableJoinHandle<Result<F::Output, TimeoutError>>
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static,
    {
        self.spawn_abortable(Timeout::from_future(f, duration).map_err(|_| TimeoutError))
    }

    /// Spawns an abortable task after waiting for `duration` before the task is polled.
    fn spawn_abortable_delay<F>(
        &self,
        duration: std::time::Duration,
        f: F,
    ) -> AbortableJoinHandle<F::Output>
    where
        F: Future + Send + 'static,
        F::Output: Send + 'static,
    {
        self.spawn_abortable(async move {
            let _ = Timeout::from_future(futures::future::pending::<()>(), duration).await;
            f.await
        })
    }
}

pub trait ExecutorBlockOn: Executor {
    /// Blocks the current thread until the provided future has completed.
    ///
    /// Note that calling this function within an executor context may cause a deadlock.
    fn block_on<F: Future>(&self, future: F) -> F::Output;
}

#[cfg(test)]
mod tests {
    use crate::CompletionGuard;
    use crate::error::JoinError;
    use crate::{Executor, ExecutorBlocking, InnerJoinHandle, JoinHandle};
    use futures::future::AbortHandle;
    use pollable_map::optional::Optional;
    use std::future::Future;
    use std::sync::Arc;
    use std::sync::atomic::AtomicBool;

    async fn task(tx: futures::channel::oneshot::Sender<()>) {
        futures_timer::Delay::new(std::time::Duration::from_secs(5)).await;
        let _ = tx.send(());
        unreachable!();
    }

    #[cfg(all(feature = "tokio", not(target_arch = "wasm32")))]
    #[tokio::test]
    async fn replacing_handle_wakes_pending_clone() {
        use futures::task::{ArcWake, waker_ref};
        use std::pin::Pin;
        use std::sync::atomic::{AtomicUsize, Ordering};
        use std::task::Context;

        struct WakeCounter(AtomicUsize);

        impl ArcWake for WakeCounter {
            fn wake_by_ref(arc_self: &Arc<Self>) {
                arc_self.0.fetch_add(1, Ordering::SeqCst);
            }
        }

        let executor = crate::rt::tokio::TokioExecutor;
        let handle = executor.spawn_abortable(futures::future::pending::<usize>());
        let mut pending_clone = handle.clone();

        let wake_counter = Arc::new(WakeCounter(AtomicUsize::new(0)));
        let waker = waker_ref(&wake_counter);
        let mut context = Context::from_waker(&waker);

        assert!(Pin::new(&mut pending_clone).poll(&mut context).is_pending());
        assert_eq!(wake_counter.0.load(Ordering::SeqCst), 0);

        let replacement = executor.spawn_abortable(async { 42 });
        handle.replace(replacement);

        assert!(wake_counter.0.load(Ordering::SeqCst) > 0);
        assert_eq!(pending_clone.await.unwrap(), 42);
    }

    #[test]
    fn custom_abortable_task() {
        struct FuturesExecutor {
            pool: futures::executor::ThreadPool,
        }

        impl Default for FuturesExecutor {
            fn default() -> Self {
                Self {
                    pool: futures::executor::ThreadPool::new().unwrap(),
                }
            }
        }

        impl Executor for FuturesExecutor {
            fn spawn<F>(&self, future: F) -> JoinHandle<F::Output>
            where
                F: Future + Send + 'static,
                F::Output: Send + 'static,
            {
                let (abort_handle, abort_registration) = AbortHandle::new_pair();
                let future = crate::abortable_result(future, abort_registration);
                let (tx, rx) = futures::channel::oneshot::channel();

                let fin = Arc::new(AtomicBool::new(false));
                let finished = fin.clone();
                let completion = CompletionGuard::new(fin);
                let fut = async move {
                    let _completion = completion;
                    let val = future.await;
                    let _ = tx.send(val);
                };

                self.pool.spawn_ok(fut);
                let inner = InnerJoinHandle::CustomHandle {
                    inner: Optional::new(rx),
                    handle: abort_handle,
                    finished,
                };

                JoinHandle { inner }
            }
        }

        impl ExecutorBlocking for FuturesExecutor {
            fn spawn_blocking<F, R>(&self, _: F) -> JoinHandle<R>
            where
                F: FnOnce() -> R + Send + 'static,
                R: Send + 'static,
            {
                unimplemented!()
            }
        }

        futures::executor::block_on(async move {
            let executor = FuturesExecutor::default();

            let (tx, rx) = futures::channel::oneshot::channel::<()>();
            let handle = executor.spawn_abortable(task(tx));
            drop(handle);
            let result = rx.await;
            assert!(result.is_err());
        });
    }

    #[test]
    fn empty_handle_reports_empty() {
        let handle = JoinHandle::<()>::empty();

        assert!(matches!(
            futures::executor::block_on(handle),
            Err(JoinError::Empty)
        ));
    }

    #[test]
    fn custom_handle_reports_cancelled_when_sender_dropped() {
        let (tx, rx) = futures::channel::oneshot::channel::<Result<(), JoinError>>();
        let (abort_handle, _abort_registration) = AbortHandle::new_pair();
        let handle = JoinHandle {
            inner: InnerJoinHandle::CustomHandle {
                inner: Optional::new(rx),
                handle: abort_handle,
                finished: Arc::new(AtomicBool::new(false)),
            },
        };

        // Dropping the sender without producing a value mimics a task the
        // executor discarded (e.g. runtime shutdown) rather than an explicit
        // abort, which should surface as `Cancelled` rather than `Aborted`.
        drop(tx);

        assert!(matches!(
            futures::executor::block_on(handle),
            Err(JoinError::Cancelled)
        ));
    }
}