mini_executor 2.0.3

The smallest, simplest Rust task executor using Tokio runtime
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
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
#![allow(dead_code)]

//! # mini_executor
//!
//! A minimalist, lightweight, and intuitive task execution library for Rust, designed to work seamlessly with the Tokio runtime.
//!
//! This crate offers a simple and ergonomic API to spawn asynchronous tasks, manage their lifecycle, and retrieve their results.
//! It supports both individual task execution and efficient batch processing. Whether you need to wait for a task to complete
//! for synchronous-style control flow, execute it in a "fire-and-forget" manner, or group multiple operations into a single
//! batch, `mini_executor` provides a straightforward solution.
//!
//! ## Key Features
//!
//! - **Simple API**: A minimal surface area makes the library easy to learn and use.
//! - **Flexible Execution**: Choose between awaiting a task's result or running it detached.
//! - **Efficient Batching**: Group multiple tasks into a single execution batch to reduce overhead (e.g., for database inserts or logging).
//! - **Built on Tokio**: Leverages the power and efficiency of the `tokio` ecosystem.
//! - **Robust Error Handling**: Individual task panics are captured and returned as errors, not crashed.
//!
//! ## Getting Started
//!
//! To begin, add `mini_executor`, `tokio`, and `dashmap` to your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! tokio = { version = "1", features = ["full"] }
//! mini_executor = "2.0" // Replace with the desired version
//! dashmap = "5.5"
//! ```
//!
//! ## Quick Start
//!
//! Here's a quick example demonstrating both individual and batch task execution.
//!
//! ```rust
//! use mini_executor::{TaskExecutor, Task, BatchTask};
//! use tokio::runtime::Runtime;
//! use std::sync::OnceLock;
//! use tokio::time::{sleep, Duration};
//!
//! // -- Define an individual task --
//! struct GreetTask(String);
//!
//! impl Task for GreetTask {
//!     type Output = String;
//!     async fn run(self) -> Self::Output {
//!         format!("Hello, {}!", self.0)
//!     }
//! }
//!
//! // -- Define a batchable task --
//! #[derive(Clone)]
//! struct LogTask(String);
//!
//! impl BatchTask for LogTask {
//!     async fn batch_run(list: Vec<Self>) {
//!         println!("--- Batch Log ({} tasks) ---", list.len());
//!         for task in list {
//!             println!("Logged: {}", task.0);
//!         }
//!     }
//! }
//!
//! // -- Setup and Execution --
//! static RT: OnceLock<Runtime> = OnceLock::new();
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     let rt = RT.get_or_init(|| Runtime::new().unwrap());
//!     let executor = TaskExecutor::new(rt);
//!
//!     rt.block_on(async {
//!         // 1. Execute an individual task and wait for its result.
//!         let greeting = executor.execute_waiting(GreetTask("World".into())).await?;
//!         println!("{}", greeting); // Prints: "Hello, World!"
//!
//!         // 2. Execute several batch tasks without waiting.
//!         executor.execute_batch_detached(LogTask("User session started".into()));
//!         executor.execute_batch_detached(LogTask("Data loaded".into()));
//!         
//!         // Allow a moment for the detached batch to be processed.
//!         sleep(Duration::from_millis(10)).await;
//!
//!         // The async block must return a Result because `?` was used.
//!         Ok::<(), Box<dyn std::error::Error>>(())
//!     })?;
//!
//!     Ok(())
//! }
//! ```

use std::any::{Any, TypeId};
use std::future::Future;

use dashmap::{DashMap, mapref::entry::Entry};
use tokio::{
    runtime::Runtime,
    sync::{
        mpsc::{UnboundedSender, UnboundedReceiver, unbounded_channel},
        oneshot,
    },
    task::{JoinError, JoinHandle},
};

/// A trait defining an asynchronously executable unit of work.
///
/// Implement this trait for any struct that represents a task for the `TaskExecutor` to run.
/// The `run` method contains the core logic of the task and is executed asynchronously.
///
/// # Associated Types
///
/// *   `Output`: The type of the value that the task will produce upon successful completion.
///
/// # Type Constraints
///
/// *   `Sized + Send + 'static`: Ensures the task can be owned, moved between threads,
///     and has a lifetime that spans the entire program duration.
/// *   `Output: Send + 'static`: Ensures the task's result can also be safely sent
///     across threads.
///
/// # Example
///
/// ```rust
/// use mini_executor::{TaskExecutor, Task};
/// use tokio::runtime::{Runtime, Builder};
/// use tokio::time::{sleep, Duration};
/// use std::sync::OnceLock;
///
/// // 1. Define the task struct.
/// struct MySimpleTask {
///     id: u32,
/// }
///
/// // 2. Implement the `Task` trait for it.
/// impl Task for MySimpleTask {
///     type Output = String;
///
///     async fn run(self) -> Self::Output {
///         sleep(Duration::from_millis(10)).await;
///         format!("Task {} finished", self.id)
///     }
/// }
///
/// // 3. Execute it using a TaskExecutor.
/// static RT: OnceLock<Runtime> = OnceLock::new();
///
/// fn main() -> Result<(), Box<dyn std::error::Error>> {
///     let rt = RT.get_or_init(|| {
///         Builder::new_current_thread()
///             .enable_time() // Enable timers for `sleep`
///             .build()
///             .unwrap()
///     });
///     let executor = TaskExecutor::new(rt);
///
///     let result = rt.block_on(async {
///         executor.execute_waiting(MySimpleTask { id: 1 }).await
///     })?;
///
///     assert_eq!(result, "Task 1 finished");
///     println!("{}", result);
///     Ok(())
/// }
/// ```
pub trait Task: Sized + Send + 'static {
    type Output: Send + 'static;

    /// The core logic of the task.
    ///
    /// This method is an `async` function that returns a `Future`, which the `TaskExecutor`
    /// will poll to completion.
    fn run(self) -> impl Future<Output = Self::Output> + Send;
}

/// Represents a task that can be processed in a batch.
///
/// This trait is designed for operations that can be optimized by grouping them together,
/// such as database inserts, logging, or sending notifications. When multiple tasks of the
/// same type are submitted to the `TaskExecutor` in quick succession, they are collected and
/// executed in a single call to `batch_run`. Note that the `batch_run` function does not
/// return a value and its signature must resolve to `()`.
///
/// # Type Constraints
///
/// *   `Sized + Send + 'static`: Ensures the task can be owned and moved between threads.
///
/// # Example
///
/// ```rust
/// use mini_executor::{TaskExecutor, BatchTask};
/// use tokio::runtime::{Runtime, Builder};
/// use std::sync::atomic::{AtomicUsize, Ordering};
/// use std::sync::{Arc, OnceLock};
///
/// // 1. Define a task that holds a reference to a shared counter.
/// #[derive(Clone)]
/// struct IncrementTask(Arc<AtomicUsize>);
///
/// // 2. Implement BatchTask to process multiple increments at once.
/// impl BatchTask for IncrementTask {
///     async fn batch_run(list: Vec<Self>) {
///         if list.is_empty() { return; }
///         // Access the Arc from the *first task* in the vector.
///         let counter = list[0].0.clone();
///         let total_increments = list.len();
///         println!("Batch processing {} increments.", total_increments);
///         counter.fetch_add(total_increments, Ordering::SeqCst);
///     }
/// }
///
/// // 3. Execute the batch task using a TaskExecutor.
/// static RT: OnceLock<Runtime> = OnceLock::new();
///
/// fn main() {
///     let rt = RT.get_or_init(|| Builder::new_current_thread().build().unwrap());
///     let executor = TaskExecutor::new(rt);
///     let counter = Arc::new(AtomicUsize::new(0));
///
///     rt.block_on(async {
///         // We can execute and wait for a batch.
///         executor.execute_batch_waiting(IncrementTask(counter.clone())).await.unwrap();
///         assert_eq!(counter.load(Ordering::SeqCst), 1);
///
///         // Or execute several in a fire-and-forget manner.
///         executor.execute_batch_detached(IncrementTask(counter.clone()));
///         executor.execute_batch_detached(IncrementTask(counter.clone()));
///
///         // Await the final task to ensure the previous detached ones are also processed.
///         executor.execute_batch_waiting(IncrementTask(counter.clone())).await.unwrap();
///     });
///     
///     assert_eq!(counter.load(Ordering::SeqCst), 4);
///     println!("Final counter value: {}", counter.load(Ordering::SeqCst));
/// }
/// ```
pub trait BatchTask: Sized + Send + 'static {
    /// The core logic for processing a batch of tasks.
    ///
    /// This method receives a `Vec<Self>` containing all tasks collected for the batch.
    /// It should perform the work and return a `Future` that resolves when the batch
    /// is complete.
    fn batch_run(list: Vec<Self>) -> impl Future<Output = ()> + Send;
}

// Internal type for passing batch items through the task executor's channels.
// Contains the task and an optional oneshot sender for completion notification.
type BatchItem<BT> = (BT, Option<oneshot::Sender<()>>);

/// A `TaskExecutor` provides a simple interface for spawning tasks onto a Tokio `Runtime`.
///
/// It holds a static reference to a `Runtime`, which acts as the task executor.
/// It also manages background workers for different types of batchable tasks, creating
/// them on demand. This design encourages treating the runtime as a shared, long-lived resource.
///
/// For creation, see [`TaskExecutor::new`].
pub struct TaskExecutor {
    rt: &'static Runtime,
    batch_senders: DashMap<TypeId, Box<dyn Any + Send + Sync>>,
}

impl TaskExecutor {
    /// Creates a new `TaskExecutor` instance bound to a statically-lived Tokio runtime.
    ///
    /// An application will typically create a single `Runtime` instance that lives for the
    /// duration of the program. To pass a reference of this runtime to the `TaskExecutor`,
    /// it must have a `'static` lifetime. This ensures the `TaskExecutor` can never outlive
    /// the runtime it depends on.
    ///
    /// # Arguments
    ///
    /// * `rt`: A static reference to a `tokio::runtime::Runtime`.
    ///
    /// # Example
    ///
    /// ```rust
    /// use mini_executor::TaskExecutor;
    /// use tokio::runtime::Runtime;
    /// use std::sync::OnceLock;
    ///
    /// // Use OnceLock to create a static runtime reference.
    /// static RT: OnceLock<Runtime> = OnceLock::new();
    ///
    /// fn main() {
    ///     let rt = RT.get_or_init(|| Runtime::new().unwrap());
    ///     let executor = TaskExecutor::new(rt);
    ///     // The task executor is now ready to execute tasks.
    /// }
    /// ```
    pub fn new(rt: &'static Runtime) -> Self {
        TaskExecutor {
            rt,
            batch_senders: DashMap::new(),
        }
    }

    /// Spawns an individual task and asynchronously waits for its result.
    ///
    /// This method submits the task to the executor's runtime and suspends the current
    /// async context until the task has finished.
    ///
    /// # Arguments
    ///
    /// * `task`: An instance of a type that implements the `Task` trait.
    ///
    /// # Returns
    ///
    /// A `Result` containing either:
    /// - `Ok(T::Output)`: The successful output of the task.
    /// - `Err(JoinError)`: An error indicating that the task panicked during execution.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use mini_executor::{TaskExecutor, Task};
    /// # use tokio::runtime::Runtime;
    /// # use std::sync::OnceLock;
    /// #
    /// # static RT: OnceLock<Runtime> = OnceLock::new();
    /// #
    /// struct MyTask;
    /// impl Task for MyTask {
    ///     type Output = u32;
    ///     async fn run(self) -> Self::Output { 42 }
    /// }
    ///
    /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// let rt = RT.get_or_init(|| Runtime::new().unwrap());
    /// let executor = TaskExecutor::new(rt);
    ///
    /// rt.block_on(async {
    ///     let result = executor.execute_waiting(MyTask).await?;
    ///     assert_eq!(result, 42);
    ///     Ok::<(), Box<dyn std::error::Error>>(())
    /// })?;
    /// # Ok(())
    /// # }
    /// ```
    pub async fn execute_waiting<T: Task>(&self, task: T) -> Result<T::Output, JoinError> {
        let handle = self.rt.spawn(task.run());
        handle.await
    }

    /// Spawns an individual task and immediately returns a `JoinHandle` without awaiting it.
    ///
    /// This is useful for "fire-and-forget" style execution, where the task runs
    /// in the background. The returned `JoinHandle` can still be used to await the task's
    /// completion at a later point if its result is needed.
    ///
    /// # Arguments
    ///
    /// * `task`: An instance of a type that implements the `Task` trait.
    ///
    /// # Returns
    ///
    /// A `JoinHandle` representing the spawned task. Awaiting the handle will
    /// yield a `Result<T::Output, JoinError>`.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use mini_executor::{TaskExecutor, Task};
    /// # use tokio::runtime::Runtime;
    /// # use std::sync::OnceLock;
    /// #
    /// # static RT: OnceLock<Runtime> = OnceLock::new();
    /// #
    /// struct BackgroundTask;
    /// impl Task for BackgroundTask {
    ///     type Output = String;
    ///     async fn run(self) -> Self::Output { "done".to_string() }
    /// }
    /// #
    /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// let rt = RT.get_or_init(|| Runtime::new().unwrap());
    /// let executor = TaskExecutor::new(rt);
    /// #
    /// rt.block_on(async {
    ///     // Spawn the task but don't wait for it yet.
    ///     let handle = executor.execute_detached(BackgroundTask);
    ///
    ///     // We can do other work here...
    ///     println!("Task is running in the background.");
    ///
    ///     // Later, await the handle to get the result.
    ///     let result = handle.await?;
    ///     assert_eq!(result, "done");
    ///     Ok::<(), Box<dyn std::error::Error>>(())
    /// })?;
    /// # Ok(())
    /// # }
    /// ```
    pub fn execute_detached<T: Task>(&self, task: T) -> JoinHandle<T::Output> {
        self.rt.spawn(task.run())
    }

    fn ensure_sender<BT: BatchTask>(&self) -> UnboundedSender<BatchItem<BT>> {
        let key = TypeId::of::<BT>();
        match self.batch_senders.entry(key) {
            Entry::Occupied(o) => o.get()
                .downcast_ref::<UnboundedSender<BatchItem<BT>>>()
                .expect("Type mismatch in batch_senders")
                .clone(),
            Entry::Vacant(v) => {
                let (tx, rx) = unbounded_channel::<BatchItem<BT>>();
                Self::spawn_worker::<BT>(self.rt, rx);
                v.insert(Box::new(tx.clone()));
                tx
            }
        }
    }

    /// Spawns a worker for processing batch tasks of type `BT`.
    ///
    /// The worker runs `batch_run` in a sub-task to isolate panics, preventing
    /// the worker from being killed by panics in user code.
    fn spawn_worker<BT: BatchTask>(rt: &'static Runtime, mut rx: UnboundedReceiver<BatchItem<BT>>) {
        rt.spawn(async move {
            loop {
                // Receive the first task, or break if the channel is closed
                let Some((first_task, first_sig)) = rx.recv().await else { break; };

                // Collect batch tasks
                let mut tasks: Vec<BT> = vec![first_task];
                let mut sigs: Vec<Option<oneshot::Sender<()>>> = vec![first_sig];

                while let Ok((t, s)) = rx.try_recv() {
                    tasks.push(t);
                    sigs.push(s);
                }

                // Run batch_run in a sub-task to isolate panics
                let join = tokio::spawn(async move {
                    BT::batch_run(tasks).await;
                });

                match join.await {
                    Ok(()) => {
                        // Notify all waiting clients on success
                        for s in sigs.into_iter().flatten() {
                            let _ = s.send(());
                        }
                    }
                    Err(_panic) => {
                        // On panic, drop signals without notifying; worker continues
                    }
                }
            }
        });
    }

    /// Executes a batch task asynchronously without waiting for its completion.
    ///
    /// This method submits a task to its corresponding batch processor. If a processor for this
    /// task type does not exist, one is spawned. The task will be collected with other
    /// pending tasks of the same type and executed in a single batch.
    ///
    /// This is a "fire-and-forget" operation.
    ///
    /// # Arguments
    ///
    /// * `batch_task`: An instance of a type that implements `BatchTask`.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use mini_executor::{TaskExecutor, BatchTask};
    /// # use tokio::runtime::Runtime;
    /// # use std::sync::OnceLock;
    /// # use tokio::time::{sleep, Duration};
    /// #
    /// # static RT: OnceLock<Runtime> = OnceLock::new();
    /// #
    /// #[derive(Clone)]
    /// struct LogMessage(String);
    /// impl BatchTask for LogMessage {
    ///     async fn batch_run(list: Vec<Self>) {
    ///         // In a real app, this might write to a file or database.
    ///         println!("-- Logging batch of {} messages --", list.len());
    ///         for msg in list {
    ///             println!("{}", msg.0);
    ///         }
    ///     }
    /// }
    /// #
    /// # fn main() {
    /// let rt = RT.get_or_init(|| Runtime::new().unwrap());
    /// let executor = TaskExecutor::new(rt);
    ///
    /// rt.block_on(async {
    ///     // Fire-and-forget these logging tasks.
    ///     executor.execute_batch_detached(LogMessage("User logged in".to_string()));
    ///     executor.execute_batch_detached(LogMessage("Data processed".to_string()));
    ///
    ///     // Give the batch processor a moment to run.
    ///     sleep(Duration::from_millis(50)).await;
    /// });
    /// # }
    /// ```
    pub fn execute_batch_detached<BT: BatchTask>(&self, batch_task: BT) {
        let key = TypeId::of::<BT>();
        let mut tx = self.ensure_sender::<BT>();

        match tx.send((batch_task, None)) {
            Ok(()) => {}
            Err(e) => {
                // Receiver closed; remove old sender, recreate worker, and resend
                self.batch_senders.remove(&key);
                tx = self.ensure_sender::<BT>();
                let _ = tx.send(e.0);
            }
        }
    }

    /// Executes a batch task and waits for its containing batch to complete.
    ///
    /// This method submits a task to its batch processor and waits for a completion signal.
    /// The signal is sent after the entire batch (which includes this task) has finished processing.
    ///
    /// # Arguments
    ///
    /// * `batch_task`: An instance of a type that implements `BatchTask`.
    ///
    /// # Returns
    ///
    /// A `Result` which is `Ok(())` on successful completion of the batch. It returns
    /// `Err(oneshot::error::RecvError)` if the batch processor panics or is terminated
    /// before sending a completion signal.
    ///
    /// # Example
    ///
    /// ```rust
    /// # use mini_executor::{TaskExecutor, BatchTask};
    /// # use tokio::runtime::Runtime;
    /// # use std::sync::OnceLock;
    /// #
    /// # static RT: OnceLock<Runtime> = OnceLock::new();
    /// #
    /// #[derive(Clone)]
    /// struct DatabaseInsert(u32);
    /// impl BatchTask for DatabaseInsert {
    ///     async fn batch_run(list: Vec<Self>) {
    ///         let ids: Vec<u32> = list.into_iter().map(|item| item.0).collect();
    ///         println!("BATCH INSERT: Simulating inserting IDs: {:?}", ids);
    ///         // In a real app, you'd perform the batched database query here.
    ///     }
    /// }
    /// #
    /// # fn main() -> Result<(), Box<dyn std::error::Error>> {
    /// let rt = RT.get_or_init(|| Runtime::new().unwrap());
    /// let executor = TaskExecutor::new(rt);
    ///
    /// rt.block_on(async {
    ///     // Detach a few tasks first.
    ///     executor.execute_batch_detached(DatabaseInsert(1));
    ///     executor.execute_batch_detached(DatabaseInsert(2));
    ///     
    ///     // Now, execute a task and wait for its batch to complete.
    ///     // This task will be batched with the two above.
    ///     let result = executor.execute_batch_waiting(DatabaseInsert(3)).await;
    ///     
    ///     assert!(result.is_ok());
    ///     println!("Batch confirmed as complete.");
    /// });
    /// # Ok(())
    /// # }
    /// ```
    pub async fn execute_batch_waiting<BT: BatchTask>(
        &self,
        batch_task: BT,
    ) -> Result<(), oneshot::error::RecvError> {
        let key = TypeId::of::<BT>();
        let (tx_oneshot, rx_oneshot) = oneshot::channel::<()>();

        let mut tx = self.ensure_sender::<BT>();
        match tx.send((batch_task, Some(tx_oneshot))) {
            Ok(()) => {}
            Err(e) => {
                // Receiver closed; remove old sender, recreate worker, and resend
                self.batch_senders.remove(&key);
                tx = self.ensure_sender::<BT>();
                let _ = tx.send(e.0);
            }
        }
        rx_oneshot.await
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::sync::atomic::{AtomicUsize, Ordering};
    use std::sync::{Arc, Mutex, OnceLock};
    use std::time::Duration;
    use tokio::runtime::Builder;
    use tokio::time::{sleep, timeout};

    static TEST_RT: OnceLock<Runtime> = OnceLock::new();

    fn get_test_runtime() -> &'static Runtime {
        TEST_RT.get_or_init(|| {
            Builder::new_multi_thread()
                .worker_threads(2)
                .enable_all()
                .build()
                .unwrap()
        })
    }

    // Test task implementations
    #[derive(Debug, Clone)]
    struct SimpleTask {
        id: u32,
        value: String,
    }

    impl Task for SimpleTask {
        type Output = String;

        async fn run(self) -> Self::Output {
            format!("Task {} completed with value: {}", self.id, self.value)
        }
    }

    #[derive(Debug, Clone)]
    struct DelayedTask {
        id: u32,
        delay_ms: u64,
    }

    impl Task for DelayedTask {
        type Output = u32;

        async fn run(self) -> Self::Output {
            sleep(Duration::from_millis(self.delay_ms)).await;
            self.id
        }
    }

    #[derive(Debug, Clone)]
    struct PanicTask;

    impl Task for PanicTask {
        type Output = String;

        async fn run(self) -> Self::Output {
            panic!("This task panics intentionally");
        }
    }

    // Batch task implementations
    #[derive(Debug, Clone)]
    struct CounterTask {
        counter: Arc<AtomicUsize>,
        increment: usize,
    }

    impl BatchTask for CounterTask {
        async fn batch_run(list: Vec<Self>) {
            if list.is_empty() {
                return;
            }

            let counter = &list[0].counter;
            let total_increment: usize = list.iter().map(|task| task.increment).sum();

            counter.fetch_add(total_increment, Ordering::SeqCst);
        }
    }

    #[derive(Debug, Clone)]
    struct LogTask {
        message: String,
        log_storage: Arc<Mutex<Vec<String>>>,
    }

    impl BatchTask for LogTask {
        async fn batch_run(list: Vec<Self>) {
            if list.is_empty() {
                return;
            }

            let log_storage = list[0].log_storage.clone();
            let mut storage = log_storage.lock().unwrap();

            for task in list {
                storage.push(format!("BATCH: {}", task.message));
            }
        }
    }

    #[derive(Debug, Clone)]
    struct DelayedBatchTask {
        id: u32,
        delay_ms: u64,
        results: Arc<Mutex<Vec<u32>>>,
    }

    impl BatchTask for DelayedBatchTask {
        async fn batch_run(list: Vec<Self>) {
            if list.is_empty() {
                return;
            }

            let results = list[0].results.clone();
            let delay_ms = list[0].delay_ms;

            sleep(Duration::from_millis(delay_ms)).await;

            let mut results_guard = results.lock().unwrap();
            for task in list {
                results_guard.push(task.id);
            }
        }
    }

    #[derive(Debug, Clone)]
    struct PanicBatchTask;

    impl BatchTask for PanicBatchTask {
        async fn batch_run(_list: Vec<Self>) {
            panic!("This batch task panics intentionally");
        }
    }

    // Test TaskExecutor::new
    #[test]
    fn test_task_executor_new() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        // Verify task executor is created successfully
        assert_eq!(executor.batch_senders.len(), 0);
    }

    // Test execute_waiting with simple task
    #[test]
    fn test_execute_waiting_simple() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            let task = SimpleTask {
                id: 1,
                value: "test".to_string(),
            };
            executor.execute_waiting(task).await
        });

        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "Task 1 completed with value: test");
    }

    // Test execute_waiting with delayed task
    #[test]
    fn test_execute_waiting_delayed() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            let task = DelayedTask {
                id: 42,
                delay_ms: 50,
            };
            executor.execute_waiting(task).await
        });

        assert!(result.is_ok());
        assert_eq!(result.unwrap(), 42);
    }

    // Test execute_waiting with panic task
    #[test]
    fn test_execute_waiting_panic() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            let task = PanicTask;
            executor.execute_waiting(task).await
        });

        assert!(result.is_err());
        assert!(result.unwrap_err().is_panic());
    }

    // Test execute_detached
    #[test]
    fn test_execute_detached() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            let task = SimpleTask {
                id: 2,
                value: "detached".to_string(),
            };
            let handle = executor.execute_detached(task);
            handle.await
        });

        assert!(result.is_ok());
        assert_eq!(result.unwrap(), "Task 2 completed with value: detached");
    }

    // Test execute_detached with panic
    #[test]
    fn test_execute_detached_panic() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            let task = PanicTask;
            let handle = executor.execute_detached(task);
            handle.await
        });

        assert!(result.is_err());
        assert!(result.unwrap_err().is_panic());
    }

    // Test execute_batch_detached
    #[test]
    fn test_execute_batch_detached() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));

        rt.block_on(async {
            // Send multiple batch tasks
            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 1,
            });
            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 2,
            });
            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 3,
            });

            // Wait a bit for processing
            sleep(Duration::from_millis(100)).await;
        });

        assert_eq!(counter.load(Ordering::SeqCst), 6);
    }

    // Test execute_batch_waiting
    #[test]
    fn test_execute_batch_waiting() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));

        let result = rt.block_on(async {
            // Send some detached tasks first
            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 5,
            });
            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 10,
            });

            // Send a waiting task - this should batch with the above
            executor
                .execute_batch_waiting(CounterTask {
                    counter: counter.clone(),
                    increment: 15,
                })
                .await
        });

        assert!(result.is_ok());
        assert_eq!(counter.load(Ordering::SeqCst), 30);
    }

    // Test batch processing with log storage
    #[test]
    fn test_batch_processing_with_storage() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let log_storage = Arc::new(Mutex::new(Vec::new()));

        rt.block_on(async {
            // Send multiple log tasks
            executor.execute_batch_detached(LogTask {
                message: "First log".to_string(),
                log_storage: log_storage.clone(),
            });
            executor.execute_batch_detached(LogTask {
                message: "Second log".to_string(),
                log_storage: log_storage.clone(),
            });

            // Wait for a batch to complete
            executor
                .execute_batch_waiting(LogTask {
                    message: "Third log".to_string(),
                    log_storage: log_storage.clone(),
                })
                .await
                .unwrap();
        });

        let logs = log_storage.lock().unwrap();
        assert_eq!(logs.len(), 3);
        assert!(logs.contains(&"BATCH: First log".to_string()));
        assert!(logs.contains(&"BATCH: Second log".to_string()));
        assert!(logs.contains(&"BATCH: Third log".to_string()));
    }

    // Test delayed batch processing
    #[test]
    fn test_delayed_batch_processing() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let results = Arc::new(Mutex::new(Vec::new()));

        let result = rt.block_on(async {
            timeout(
                Duration::from_millis(500),
                executor.execute_batch_waiting(DelayedBatchTask {
                    id: 1,
                    delay_ms: 100,
                    results: results.clone(),
                }),
            )
            .await
        });

        assert!(result.is_ok());
        assert!(result.unwrap().is_ok());

        let results_guard = results.lock().unwrap();
        assert_eq!(results_guard.len(), 1);
        assert_eq!(results_guard[0], 1);
    }

    // Test multiple different batch task types
    #[test]
    fn test_multiple_batch_types() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));
        let log_storage = Arc::new(Mutex::new(Vec::new()));

        rt.block_on(async {
            // Submit different types of batch tasks
            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 100,
            });
            executor.execute_batch_detached(LogTask {
                message: "Mixed batch test".to_string(),
                log_storage: log_storage.clone(),
            });

            // Wait for both to complete
            executor
                .execute_batch_waiting(CounterTask {
                    counter: counter.clone(),
                    increment: 200,
                })
                .await
                .unwrap();
            executor
                .execute_batch_waiting(LogTask {
                    message: "Mixed batch test 2".to_string(),
                    log_storage: log_storage.clone(),
                })
                .await
                .unwrap();
        });

        assert_eq!(counter.load(Ordering::SeqCst), 300);
        let logs = log_storage.lock().unwrap();
        assert_eq!(logs.len(), 2);
    }

    // Test concurrent task execution
    #[test]
    fn test_concurrent_execution() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            let mut handles = Vec::new();

            // Start multiple tasks concurrently
            for i in 0..10 {
                let handle = executor.execute_detached(DelayedTask {
                    id: i,
                    delay_ms: 20,
                });
                handles.push(handle);
            }

            // Wait for all tasks to complete
            let mut results = Vec::new();
            for handle in handles {
                results.push(handle.await.unwrap());
            }

            results.sort();
            results
        });

        assert_eq!(result.len(), 10);
        assert_eq!(result, (0..10).collect::<Vec<_>>());
    }

    // Test error handling in batch processing
    #[test]
    fn test_batch_error_handling() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        let result = rt.block_on(async {
            timeout(
                Duration::from_millis(500),
                executor.execute_batch_waiting(PanicBatchTask),
            )
            .await
        });

        // The batch processor should panic, causing the oneshot receiver to be dropped
        assert!(result.is_ok());
        assert!(result.unwrap().is_err());
    }

    // Test that worker survives after batch panics and can process normal batches
    #[test]
    fn batch_panics_but_worker_survives() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        // Trigger a batch that will panic
        let r = rt.block_on(async {
            executor.execute_batch_waiting(PanicBatchTask).await
        });
        assert!(r.is_err());

        // Send a normal batch, should succeed
        #[derive(Clone)]
        struct OkTask(Arc<AtomicUsize>);
        impl BatchTask for OkTask {
            async fn batch_run(list: Vec<Self>) {
                let c = &list[0].0;
                c.fetch_add(list.len(), Ordering::SeqCst);
            }
        }
        let c = Arc::new(AtomicUsize::new(0));
        rt.block_on(async {
            executor.execute_batch_waiting(OkTask(c.clone())).await.unwrap();
        });
        assert_eq!(c.load(Ordering::SeqCst), 1);
    }

    // Test that batch processors are reused
    #[test]
    fn test_batch_processor_reuse() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));

        rt.block_on(async {
            // First batch
            executor
                .execute_batch_waiting(CounterTask {
                    counter: counter.clone(),
                    increment: 1,
                })
                .await
                .unwrap();

            // Second batch - should reuse the same processor
            executor
                .execute_batch_waiting(CounterTask {
                    counter: counter.clone(),
                    increment: 2,
                })
                .await
                .unwrap();
        });

        assert_eq!(counter.load(Ordering::SeqCst), 3);
        // Verify that only one batch processor was created
        assert_eq!(executor.batch_senders.len(), 1);
    }

    // Test empty batch handling
    #[test]
    fn test_empty_batch_handling() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));

        // Create a batch task that handles empty lists
        #[derive(Debug, Clone)]
        struct EmptyBatchTask {
            counter: Arc<AtomicUsize>,
        }

        impl BatchTask for EmptyBatchTask {
            async fn batch_run(list: Vec<Self>) {
                if list.is_empty() {
                    return;
                }
                list[0].counter.fetch_add(1, Ordering::SeqCst);
            }
        }

        let result = rt.block_on(async {
            executor
                .execute_batch_waiting(EmptyBatchTask {
                    counter: counter.clone(),
                })
                .await
        });

        assert!(result.is_ok());
        assert_eq!(counter.load(Ordering::SeqCst), 1);
    }

    // Test high volume batch processing
    #[test]
    fn test_high_volume_batch_processing() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));

        rt.block_on(async {
            // Submit many batch tasks quickly
            for i in 0..100 {
                executor.execute_batch_detached(CounterTask {
                    counter: counter.clone(),
                    increment: i,
                });
            }

            // Wait for processing to complete
            executor
                .execute_batch_waiting(CounterTask {
                    counter: counter.clone(),
                    increment: 0,
                })
                .await
                .unwrap();
        });

        // Sum of 0 to 99 is 4950
        assert_eq!(counter.load(Ordering::SeqCst), 4950);
    }

    // Test mixed execution patterns
    #[test]
    fn test_mixed_execution_patterns() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);
        let counter = Arc::new(AtomicUsize::new(0));

        rt.block_on(async {
            // Mix of individual and batch tasks
            let individual_handle = executor.execute_detached(DelayedTask {
                id: 999,
                delay_ms: 50,
            });

            executor.execute_batch_detached(CounterTask {
                counter: counter.clone(),
                increment: 10,
            });

            let individual_result = individual_handle.await.unwrap();
            assert_eq!(individual_result, 999);

            executor
                .execute_batch_waiting(CounterTask {
                    counter: counter.clone(),
                    increment: 20,
                })
                .await
                .unwrap();

            let batch_result = executor
                .execute_waiting(SimpleTask {
                    id: 777,
                    value: "mixed".to_string(),
                })
                .await
                .unwrap();

            assert_eq!(batch_result, "Task 777 completed with value: mixed");
        });

        assert_eq!(counter.load(Ordering::SeqCst), 30);
    }

    // Test same type panics then succeeds (ensure same worker not killed)
    #[test]
    fn same_type_panics_then_succeeds() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct SometimesPanicTask {
            counter: Arc<AtomicUsize>,
            should_panic: bool,
        }
        impl BatchTask for SometimesPanicTask {
            async fn batch_run(list: Vec<Self>) {
                if list.iter().any(|t| t.should_panic) {
                    panic!("boom");
                }
                let c = &list[0].counter;
                c.fetch_add(list.len(), Ordering::SeqCst);
            }
        }

        let c = Arc::new(AtomicUsize::new(0));

        // First: panic, waiting end should receive Err
        let r = rt.block_on(async {
            tokio::time::timeout(
                Duration::from_millis(500),
                executor.execute_batch_waiting(SometimesPanicTask { counter: c.clone(), should_panic: true }),
            ).await
        }).expect("timeout waiting for panic batch");
        assert!(r.is_err());

        // Second: same type, normal, should succeed and count +1
        rt.block_on(async {
            executor.execute_batch_waiting(SometimesPanicTask { counter: c.clone(), should_panic: false })
                .await
                .unwrap();
        });
        assert_eq!(c.load(Ordering::SeqCst), 1);
    }

    // Test multiple waiters all get RecvError on panic
    #[test]
    fn multiple_waiters_all_get_recverror_on_panic() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct AllPanic;
        impl BatchTask for AllPanic {
            async fn batch_run(_list: Vec<Self>) {
                panic!("batch exploded");
            }
        }

        let (r1, r2, r3) = rt.block_on(async {
            tokio::join!(
                executor.execute_batch_waiting(AllPanic),
                executor.execute_batch_waiting(AllPanic),
                executor.execute_batch_waiting(AllPanic),
            )
        });

        assert!(r1.is_err());
        assert!(r2.is_err());
        assert!(r3.is_err());
    }

    // Test panic storm then recover
    #[test]
    fn panic_storm_then_recover() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct SometimesPanic {
            ok_counter: Arc<AtomicUsize>,
            panic: bool,
        }
        impl BatchTask for SometimesPanic {
            async fn batch_run(list: Vec<Self>) {
                if list.iter().any(|t| t.panic) { panic!("storm"); }
                let c = &list[0].ok_counter;
                c.fetch_add(list.len(), Ordering::SeqCst);
            }
        }

        // Continuous 10 panics
        for _ in 0..10 {
            let r = rt.block_on(async { executor.execute_batch_waiting(SometimesPanic { ok_counter: Arc::new(AtomicUsize::new(0)), panic: true }).await });
            assert!(r.is_err());
        }

        // Afterwards should succeed
        let ok = Arc::new(AtomicUsize::new(0));
        rt.block_on(async {
            executor.execute_batch_waiting(SometimesPanic { ok_counter: ok.clone(), panic: false }).await.unwrap();
        });
        assert_eq!(ok.load(Ordering::SeqCst), 1);
    }

    // Test interleaved OK / PANIC / OK (same type, state switching doesn't break)
    #[test]
    fn interleaved_ok_panic_ok_same_type() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct FlipTask {
            sum: Arc<AtomicUsize>,
            panic: bool,
        }
        impl BatchTask for FlipTask {
            async fn batch_run(list: Vec<Self>) {
                if list.iter().any(|t| t.panic) { panic!("flip"); }
                list[0].sum.fetch_add(list.len(), Ordering::SeqCst);
            }
        }

        let sum = Arc::new(AtomicUsize::new(0));

        // OK
        rt.block_on(async {
            executor.execute_batch_waiting(FlipTask { sum: sum.clone(), panic: false }).await.unwrap();
        });
        assert_eq!(sum.load(Ordering::SeqCst), 1);

        // PANIC
        rt.block_on(async {
            tokio::time::timeout(
                Duration::from_millis(500),
                executor.execute_batch_waiting(FlipTask { sum: sum.clone(), panic: true }),
            ).await
        }).expect("timeout").unwrap_err();
        // Error is expected

        // OK again
        rt.block_on(async {
            executor.execute_batch_waiting(FlipTask { sum: sum.clone(), panic: false }).await.unwrap();
        });
        assert_eq!(sum.load(Ordering::SeqCst), 2);
    }

    // Test mixed waiters and fire-and-forget on panic, no deadlock (waiters all Err)
    #[test]
    fn detached_and_waiters_mixed_on_panic() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct MixPanic;
        impl BatchTask for MixPanic {
            async fn batch_run(_list: Vec<Self>) {
                panic!("oops");
            }
        }

        rt.block_on(async {
            // First send several detached
            for _ in 0..5 {
                executor.execute_batch_detached(MixPanic);
            }

            // Then two waiters; regardless of whether same batch, both should Err
            let (a, b) = tokio::join!(
                executor.execute_batch_waiting(MixPanic),
                executor.execute_batch_waiting(MixPanic),
            );
            assert!(a.is_err());
            assert!(b.is_err());
        });
    }

    // Test large batch coalesces many tasks (lower bound check)
    #[test]
    fn batch_coalesces_many_tasks_lower_bound() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct RecordLen {
            last_len: Arc<AtomicUsize>,
        }
        impl BatchTask for RecordLen {
            async fn batch_run(list: Vec<Self>) {
                list[0].last_len.store(list.len(), Ordering::SeqCst);
            }
        }

        let last = Arc::new(AtomicUsize::new(0));

        rt.block_on(async {
            // First send 200 detached
            for _ in 0..200 {
                executor.execute_batch_detached(RecordLen { last_len: last.clone() });
            }
            // Then send one waiter, usually will be taken by same batch as above 200
            executor.execute_batch_waiting(RecordLen { last_len: last.clone() })
                .await
                .unwrap();
        });

        // At least >= 1; in general case will be 201 (all in same batch drained)
        assert!(last.load(Ordering::SeqCst) >= 1);
    }

    // Test many waiters all panic (stress and timeliness): no hang
    #[test]
    fn many_waiters_all_panic_no_hang() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct Boom;
        impl BatchTask for Boom {
            async fn batch_run(_list: Vec<Self>) { panic!("boom"); }
        }

        rt.block_on(async {
            let mut results = Vec::new();

            // Create multiple waiters that will all panic
            for _ in 0..50 {
                let result = tokio::time::timeout(
                    Duration::from_secs(1),
                    executor.execute_batch_waiting(Boom)
                ).await;
                results.push(result);
            }

            // All should finish within 1 second (Ok(Err(..)))
            assert!(results.iter().all(|r| r.is_ok() && r.as_ref().unwrap().is_err()));
        });
    }

    // Test waiter dropped midway (drop future), worker send oneshot doesn't break
    #[test]
    fn dropped_waiter_does_not_break_worker() {
        let rt = get_test_runtime();

        #[derive(Clone)]
        struct SlowOk(Arc<AtomicUsize>);
        impl BatchTask for SlowOk {
            async fn batch_run(list: Vec<Self>) {
                tokio::time::sleep(Duration::from_millis(50)).await;
                list[0].0.fetch_add(list.len(), Ordering::SeqCst);
            }
        }

        let c1 = Arc::new(AtomicUsize::new(0));
        let c2 = Arc::new(AtomicUsize::new(0));

        rt.block_on(async {
            // Start one waiter, but quickly cancel it (drop future)
            let rt_inner = get_test_runtime();
            let executor1 = TaskExecutor::new(rt_inner);
            let handle = tokio::spawn(async move {
                executor1.execute_batch_waiting(SlowOk(c1)).await
            });
            tokio::time::sleep(Duration::from_millis(5)).await;
            handle.abort(); // Drop waiter

            // Afterwards send normal waiter, should succeed
            let rt_inner2 = get_test_runtime();
            let executor2 = TaskExecutor::new(rt_inner2);
            executor2.execute_batch_waiting(SlowOk(c2.clone())).await.unwrap();
        });

        // If worker normal, should at least +1 (second waiter)
        assert!(c2.load(Ordering::SeqCst) >= 1);
    }

    // Test multi-type isolation: one type panic doesn't affect another
    #[test]
    fn multi_type_isolation_panic_does_not_affect_other_type() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct WillPanic;
        impl BatchTask for WillPanic {
            async fn batch_run(_list: Vec<Self>) { panic!("type A broke"); }
        }

        #[derive(Clone)]
        struct TypeB(Arc<AtomicUsize>);
        impl BatchTask for TypeB {
            async fn batch_run(list: Vec<Self>) {
                list[0].0.fetch_add(list.len(), Ordering::SeqCst);
            }
        }

        // A type: panic
        let ra = rt.block_on(async { executor.execute_batch_waiting(WillPanic).await });
        assert!(ra.is_err());

        // B type: should normal
        let bsum = Arc::new(AtomicUsize::new(0));
        rt.block_on(async {
            executor.execute_batch_waiting(TypeB(bsum.clone())).await.unwrap();
        });
        assert_eq!(bsum.load(Ordering::SeqCst), 1);
    }

    // Test large scale same type mixed (mostly OK, few PANIC), ensure recovery
    #[test]
    fn large_mixed_after_panics_recovers() {
        let rt = get_test_runtime();
        let executor = TaskExecutor::new(rt);

        #[derive(Clone)]
        struct MaybePanic {
            ok: Arc<AtomicUsize>,
            panic: bool,
        }
        impl BatchTask for MaybePanic {
            async fn batch_run(list: Vec<Self>) {
                if list.iter().any(|t| t.panic) { panic!("mixed"); }
                list[0].ok.fetch_add(list.len(), Ordering::SeqCst);
            }
        }

        // First send a wave of panics
        for _ in 0..5 {
            let r = rt.block_on(async { executor.execute_batch_waiting(MaybePanic { ok: Arc::new(AtomicUsize::new(0)), panic: true }).await });
            assert!(r.is_err());
        }

        // Then large amount of OK
        let ok = Arc::new(AtomicUsize::new(0));
        rt.block_on(async {
            for _ in 0..100 {
                executor.execute_batch_detached(MaybePanic { ok: ok.clone(), panic: false });
            }
            executor.execute_batch_waiting(MaybePanic { ok: ok.clone(), panic: false }).await.unwrap();
        });

        assert!(ok.load(Ordering::SeqCst) >= 1);
    }
}