taskvisor 0.5.0

Task supervisor for Tokio: restarts background tasks on failure with exponential backoff and jitter, graceful shutdown, and lifecycle events
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
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
//! # Task registry.
//!
//! Owns registered task actors and their runtime identity.
//!
//! The registry is the authoritative owner of active task membership.
//! It keeps:
//! - `TaskId -> actor handle`,
//! - task name -> `TaskId`,
//! - detached join bookkeeping for shutdown and removal.
//!
//! ## Input Planes
//!
//! ```text
//! Management plane:
//!   SupervisorCore                  Registry
//!        |                             |
//!        |-- command (bounded mpsc) -->|
//!        |                             |-- update registry state
//!        |<-- reply (oneshot) ---------|
//!        |-- fence (control channel) ->|  drain committed commands
//!        |<-- fence reply -------------|
//!
//! Completion plane:
//!   TaskActor -> completion mpsc -> registry cleanup
//!
//! Observability plane:
//!   TaskActor -> broadcast bus -> subscribers / controller
//! ```
//!
//! ## Flow
//!
//! ```text
//! Add(id, spec)
//!   -> spawn actor
//!   -> insert id/name indexes
//!   -> reply registered
//!   -> publish TaskAdded
//!
//! Remove(id)
//!   -> change Registered to Removing
//!   -> create shared terminal completion
//!   -> cancel actor token
//!   -> reply claimed
//!   -> join actor
//!   -> release id/name indexes
//!   -> publish TaskRemoved
//!   -> resolve terminal completion
//!
//! Cancel(id or label)
//!   -> claim Registered or join Removing
//!   -> reply with the shared terminal completion
//!   -> wait until registry cleanup is finished
//!
//! Actor completion(id)
//!   -> change Registered to Removing
//!   -> create shared terminal completion
//!   -> join actor
//!   -> release id/name indexes
//!   -> publish TaskRemoved
//!   -> resolve terminal completion
//! ```
//!
//! ## Rules
//!
//! - Watched tasks resolve their `TaskOutcome` when the actor join is reported.
//! - Add/remove command replies report registry decisions, not terminal task outcomes.
//! - Cancel callers share a lossless completion signal owned by the registry.
//! - A fence reply means every earlier management command has finished processing.
//! - A static AddBatch validates every label before it starts any task body.
//! - AddBatch either registers every item or leaves registry state unchanged.
//! - Cleanup is idempotent. Duplicate or stale completion signals become no-ops.
//! - The registry does not clean up on `TaskStopped` or `TaskFailed`.
//! - Task name is a label and a duplicate-name admission gate; reserved while the task is `Registered` or `Removing`.
//! - `list`, identity lookup, and empty checks include removing tasks.
//! - Cleanup waits for the actor completion signal and join result.
//! - `TaskRemoved` means the registry has finished cleanup for that identity.
//! - `TaskId` is the canonical identity.

use std::{
    collections::{HashMap, HashSet},
    future::Future,
    sync::Arc,
    time::Duration,
};

use tokio::sync::{Notify, RwLock, Semaphore, mpsc, oneshot, watch};
use tokio::task::{JoinError, JoinHandle};
use tokio_util::sync::CancellationToken;

use crate::core::actor::{ActorExitReason, TaskActor, TaskActorParams};
use crate::core::outcome::TaskOutcome;
use crate::error::RuntimeError;
use crate::events::{Bus, Event, EventKind};
use crate::identity::TaskId;
use crate::reasons;
use crate::tasks::TaskSpec;

/// Sender used to resolve a watched task with its final [`TaskOutcome`].
pub(crate) type OutcomeTx = oneshot::Sender<TaskOutcome>;

/// Authoritative result of one single-task or batch registry add command.
pub(crate) type AddReply = Result<(), RuntimeError>;

/// Receiver for an authoritative registry add result.
pub(crate) type AddReplyRx = oneshot::Receiver<AddReply>;

/// One task owned by the atomic static-run registration command.
pub(crate) struct AddBatchItem {
    pub(crate) id: TaskId,
    pub(crate) label: Arc<str>,
    pub(crate) spec: TaskSpec,
}

/// Authoritative result of one registry remove command.
///
/// `Ok(true)` means the registry claimed the task and sent cancellation.
/// It does not mean the actor has terminated yet.
pub(crate) type RemoveReply = Result<bool, RuntimeError>;

/// Receiver for an authoritative registry remove result.
pub(crate) type RemoveReplyRx = oneshot::Receiver<RemoveReply>;

/// Registry decision returned to one cancellation caller.
///
/// `claimed` is true only for the caller that changed `Registered` to `Removing`.
/// Every caller that observes the same removal waits on the same terminal completion.
pub(crate) struct CancelDecision {
    pub(crate) id: TaskId,
    pub(crate) claimed: bool,
    completion: RemovalCompletion,
}

impl CancelDecision {
    /// Waits until the actor is joined or force-aborted and terminal cleanup is committed.
    pub(crate) async fn wait(&self) {
        self.completion.wait().await;
    }

    /// Returns true when terminal cleanup has already been committed.
    pub(crate) fn is_complete(&self) -> bool {
        self.completion.is_complete()
    }
}

/// Authoritative result of one registry cancel command.
///
/// `Ok(None)` means the task was unknown or already terminated.
pub(crate) type CancelReply = Result<Option<CancelDecision>, RuntimeError>;

/// Receiver for an authoritative registry cancel decision.
pub(crate) type CancelReplyRx = oneshot::Receiver<CancelReply>;

/// Command sent to the registry over the management channel.
pub(crate) enum RegistryCommand {
    /// Register a task under a pre-minted runtime identity.
    Add {
        id: TaskId,
        spec: TaskSpec,
        outcome: Option<OutcomeTx>,
        reply: oneshot::Sender<AddReply>,
    },
    /// Validate and register every static-run task as one operation.
    AddBatch {
        items: Vec<AddBatchItem>,
        reply: oneshot::Sender<AddReply>,
    },
    /// Remove a task by runtime identity.
    ///
    /// The identity caller publishes `TaskRemoveRequested` before sending this.
    Remove {
        id: TaskId,
        reply: oneshot::Sender<RemoveReply>,
    },
    /// Resolve a label and claim its current owner in one registry operation.
    ///
    /// The registry publishes `TaskRemoveRequested` with the resolved identity before it attempts the state transition.
    RemoveByLabel {
        label: Arc<str>,
        reply: oneshot::Sender<RemoveReply>,
    },
    /// Claim or join cancellation by runtime identity.
    Cancel {
        id: TaskId,
        reply: oneshot::Sender<CancelReply>,
    },
    /// Resolve a label and claim or join its cancellation atomically.
    CancelByLabel {
        label: Arc<str>,
        reply: oneshot::Sender<CancelReply>,
    },
}

/// Reliable control messages that must not wait for management queue capacity.
enum RegistryControl {
    /// Confirms that every command committed before admission closed has been processed.
    Fence { reply: oneshot::Sender<()> },
}

/// Registry-owned actor handle for one registered task.
struct Handle {
    join: JoinHandle<ActorExitReason>,
    cancel: CancellationToken,
    done: Option<OutcomeTx>,
}

/// Shared terminal signal for all callers waiting on one removal.
#[derive(Clone)]
struct RemovalCompletion {
    token: CancellationToken,
}

impl RemovalCompletion {
    fn new() -> Self {
        Self {
            token: CancellationToken::new(),
        }
    }

    async fn wait(&self) {
        self.token.cancelled().await;
    }

    fn is_complete(&self) -> bool {
        self.token.is_cancelled()
    }

    fn complete(&self) {
        self.token.cancel();
    }
}

/// Lifecycle phase of one authoritative registry entry.
enum EntryState {
    /// The actor can still be claimed by remove, completion, or shutdown.
    Registered(Handle),
    /// One owner has the actor handle and is waiting for its terminal join.
    Removing { completion: RemovalCompletion },
}

/// Authoritative membership record kept until terminal join cleanup finishes.
struct Entry {
    label: Arc<str>,
    state: EntryState,
}

/// Terminal result passed from the single join owner to registry cleanup.
enum JoinCompletion {
    Joined(Result<ActorExitReason, JoinError>),
    ForceAborted,
}

/// Data needed to commit one actor's terminal registry cleanup.
struct RemovalReport {
    id: TaskId,
    outcome: Option<OutcomeTx>,
    join: JoinCompletion,
    completion: RemovalCompletion,
}

/// Registry-side work selected for one cancel command.
struct CancelAction {
    decision: CancelDecision,
    handle: Option<Handle>,
}

/// Sends one completion signal when an actor task returns, panics, or is aborted.
struct ActorCompletionGuard {
    id: TaskId,
    tx: mpsc::UnboundedSender<TaskId>,
}

impl Drop for ActorCompletionGuard {
    fn drop(&mut self) {
        let _ = self.tx.send(self.id);
    }
}

/// Registry indexes guarded by one lock.
///
/// Keeping both maps under the same lock keeps identity and label lookup in sync.
#[derive(Default)]
struct Inner {
    /// Canonical task map keyed by runtime identity.
    ///
    /// Entries stay here in both `Registered` and `Removing` phases.
    tasks: HashMap<TaskId, Entry>,

    /// Label lookup used for duplicate-name checks and label-based operations.
    by_label: HashMap<Arc<str>, TaskId>,
}

/// Mutable state for detached join tracking.
#[derive(Default)]
struct PendingInner {
    /// Number of in-flight join reporters per task identity.
    counts: HashMap<TaskId, usize>,

    /// Human labels used for shutdown diagnostics when joins do not finish in time.
    labels: HashMap<TaskId, Arc<str>>,
}

/// Tracks actor joins owned by removing entries.
///
/// This provides shutdown diagnostics and a wait barrier while the registry map remains the authority for task membership.
#[derive(Default)]
struct PendingJoins {
    inner: std::sync::Mutex<PendingInner>,
    drained: Notify,
}

impl PendingJoins {
    /// Marks one join reporter for `id` as in flight.
    fn inc(&self, id: TaskId) {
        let mut g = self.inner.lock().unwrap_or_else(|e| e.into_inner());
        *g.counts.entry(id).or_insert(0) += 1;
    }

    /// Stores the label for an in-flight join.
    ///
    /// No-op if `id` is not currently tracked.
    fn label(&self, id: TaskId, label: Arc<str>) {
        let mut g = self.inner.lock().unwrap_or_else(|e| e.into_inner());
        if g.counts.contains_key(&id) {
            g.labels.insert(id, label);
        }
    }

    /// Marks one in-flight join for `id` as finished.
    ///
    /// Wakes waiters when no joins remain.
    fn dec(&self, id: TaskId) {
        let mut g = self.inner.lock().unwrap_or_else(|e| e.into_inner());
        if let Some(n) = g.counts.get_mut(&id) {
            *n -= 1;
            if *n == 0 {
                g.counts.remove(&id);
                g.labels.remove(&id);
            }
        }
        if g.counts.is_empty() {
            self.drained.notify_waiters();
        }
    }

    /// Returns `true` if a join for `id` is still in flight.
    #[cfg(test)]
    fn contains(&self, id: TaskId) -> bool {
        self.inner
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .counts
            .contains_key(&id)
    }

    /// Returns `true` if no joins are in flight.
    fn is_empty(&self) -> bool {
        self.inner
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .counts
            .is_empty()
    }

    /// Returns labels for joins still in flight.
    ///
    /// Best-effort: an id that was incremented but not labeled yet is omitted.
    fn pending_labels(&self) -> Vec<Arc<str>> {
        self.inner
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .labels
            .values()
            .cloned()
            .collect()
    }

    /// Waits until no joins are in flight.
    ///
    /// Uses register-before-check: `notified()` is created before checking `is_empty`; a concurrent `dec` cannot lose the wakeup.
    async fn wait_drained(&self) {
        loop {
            let notified = self.drained.notified();
            tokio::pin!(notified);
            notified.as_mut().enable();
            if self.is_empty() {
                return;
            }
            notified.await;
        }
    }
}

/// Owns registered task actors and task membership.
///
/// The registry accepts add/remove commands, receives reliable actor completion
/// signals, joins actors after removal or completion, and publishes registry-level
/// lifecycle events such as `TaskAdded` and `TaskRemoved`.
///
/// # Also
///
/// - [`TaskActor`](super::actor::TaskActor) - per-task actor spawned by the registry
/// - [`SupervisorCore`](super::runtime::SupervisorCore) - sends registry commands
/// - [`TaskOutcome`] - final result for watched tasks
pub(crate) struct Registry {
    state: Arc<RwLock<Inner>>,
    bus: Bus,
    runtime_token: CancellationToken,
    semaphore: Option<Arc<Semaphore>>,
    grace: Duration,
    empty_notify: Arc<Notify>,
    cmd_rx: std::sync::Mutex<Option<mpsc::Receiver<RegistryCommand>>>,
    control_tx: mpsc::UnboundedSender<RegistryControl>,
    control_rx: std::sync::Mutex<Option<mpsc::UnboundedReceiver<RegistryControl>>>,
    completion_tx: mpsc::UnboundedSender<TaskId>,
    completion_rx: std::sync::Mutex<Option<mpsc::UnboundedReceiver<TaskId>>>,
    pending_joins: Arc<PendingJoins>,
    listener_handle: std::sync::Mutex<Option<JoinHandle<()>>>,
}

impl Registry {
    /// Creates a registry with its command receiver and runtime dependencies.
    pub fn new(
        bus: Bus,
        runtime_token: CancellationToken,
        semaphore: Option<Arc<Semaphore>>,
        grace: Duration,
        cmd_rx: mpsc::Receiver<RegistryCommand>,
    ) -> Arc<Self> {
        let (completion_tx, completion_rx) = mpsc::unbounded_channel();
        let (control_tx, control_rx) = mpsc::unbounded_channel();
        Arc::new(Self {
            state: Arc::new(RwLock::new(Inner::default())),
            bus,
            runtime_token,
            semaphore,
            grace,
            empty_notify: Arc::new(Notify::new()),
            cmd_rx: std::sync::Mutex::new(Some(cmd_rx)),
            control_tx,
            control_rx: std::sync::Mutex::new(Some(control_rx)),
            completion_tx,
            completion_rx: std::sync::Mutex::new(Some(completion_rx)),
            pending_joins: Arc::new(PendingJoins::default()),
            listener_handle: std::sync::Mutex::new(None),
        })
    }

    /// Waits for detached join reporters to finish.
    ///
    /// Join reporters own actor handles for entries in the `Removing` phase.
    /// Shutdown still needs their final `TaskRemoved` events before the subscriber listener stops.
    ///
    /// Returns labels for joins still in flight after `grace`.
    pub async fn wait_joins_within(&self, grace: Duration) -> Vec<Arc<str>> {
        let _ = tokio::time::timeout(grace, self.pending_joins.wait_drained()).await;
        self.pending_joins.pending_labels()
    }

    /// Waits until no registered or removing tasks remain.
    ///
    /// Uses register-before-check to avoid losing a wakeup.
    pub async fn wait_until_empty(&self) {
        loop {
            let notified = self.empty_notify.notified();
            tokio::pin!(notified);
            notified.as_mut().enable();
            if self.is_empty().await {
                return;
            }
            notified.await;
        }
    }

    /// Waits until every management command committed before this call has been processed.
    ///
    /// The control channel is independent of bounded management queue capacity.
    pub(crate) async fn fence(&self) -> Result<(), RuntimeError> {
        let (reply, reply_rx) = oneshot::channel();
        self.control_tx
            .send(RegistryControl::Fence { reply })
            .map_err(|_| RuntimeError::ShuttingDown)?;
        reply_rx.await.map_err(|_| RuntimeError::ShuttingDown)
    }

    /// Starts the registry listener task.
    ///
    /// The listener consumes receivers stored during construction.
    /// It listens to:
    /// - management commands from `cmd_rx`,
    /// - shutdown fences from the independent control channel,
    /// - actor identity signals from the reliable completion channel.
    ///
    /// On runtime shutdown, it closes the command receiver, drains commands that
    /// are already buffered without waiting for uncommitted reservations, cancels
    /// remaining actors with zero extra grace, and waits for join reporters.
    pub fn spawn_listener(self: Arc<Self>) {
        let mut cmd_rx = self
            .cmd_rx
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .take()
            .expect("spawn_listener called exactly once");
        let mut completion_rx = self
            .completion_rx
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .take()
            .expect("spawn_listener called exactly once");
        let mut control_rx = self
            .control_rx
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .take()
            .expect("spawn_listener called exactly once");

        let rt = self.runtime_token.clone();
        let me = self.clone();

        let handle = tokio::spawn(async move {
            loop {
                tokio::select! {
                    biased;

                    _ = rt.cancelled() => break,

                    completed = completion_rx.recv() => match completed {
                        Some(id) => me.guarded("registry", me.cleanup_task(id)).await,
                        None => break,
                    },

                    control = control_rx.recv() => match control {
                        Some(control) => me.handle_control(control, &mut cmd_rx).await,
                        None => break,
                    },

                    cmd = cmd_rx.recv() => match cmd {
                        Some(command) => me.handle_command(command).await,
                        None => break,
                    }
                }
            }

            cmd_rx.close();
            completion_rx.close();
            control_rx.close();
            while let Ok(cmd) = cmd_rx.try_recv() {
                me.handle_command(cmd).await;
            }
            while let Ok(control) = control_rx.try_recv() {
                me.handle_control(control, &mut cmd_rx).await;
            }
            me.cancel_all_within(Duration::ZERO).await;
            me.pending_joins.wait_drained().await;
        });

        *self
            .listener_handle
            .lock()
            .unwrap_or_else(|e| e.into_inner()) = Some(handle);
    }

    /// Processes one management command to its direct registry decision.
    async fn handle_command(&self, command: RegistryCommand) {
        match command {
            RegistryCommand::Add {
                id,
                spec,
                outcome,
                reply,
            } => {
                self.guarded(
                    "registry",
                    self.spawn_and_register(id, spec, outcome, reply),
                )
                .await;
            }
            RegistryCommand::AddBatch { items, reply } => {
                self.guarded("registry", self.spawn_and_register_batch(items, reply))
                    .await;
            }
            RegistryCommand::Remove { id, reply } => {
                self.guarded("registry", self.remove_task(id, reply)).await;
            }
            RegistryCommand::RemoveByLabel { label, reply } => {
                self.guarded("registry", self.remove_task_by_label(label, reply))
                    .await;
            }
            RegistryCommand::Cancel { id, reply } => {
                self.guarded("registry", self.cancel_task(id, reply)).await;
            }
            RegistryCommand::CancelByLabel { label, reply } => {
                self.guarded("registry", self.cancel_task_by_label(label, reply))
                    .await;
            }
        }
    }

    /// Drains commands already visible at the admission ordering point, then replies.
    async fn handle_control(
        &self,
        control: RegistryControl,
        cmd_rx: &mut mpsc::Receiver<RegistryCommand>,
    ) {
        match control {
            RegistryControl::Fence { reply } => {
                while let Ok(command) = cmd_rx.try_recv() {
                    self.handle_command(command).await;
                }
                let _ = reply.send(());
            }
        }
    }

    /// Waits for the registry listener task to finish.
    ///
    /// Safe to call after shutdown has started.
    /// If the listener was never started, this is a no-op.
    pub async fn join_listener(&self) {
        let handle = self
            .listener_handle
            .lock()
            .unwrap_or_else(|e| e.into_inner())
            .take();
        if let Some(handle) = handle {
            let _ = handle.await;
        }
    }

    /// Runs one listener operation under a panic boundary.
    ///
    /// A panic while processing one command/event is reported as a diagnostic event instead of killing the whole registry listener.
    async fn guarded(&self, who: &'static str, fut: impl Future<Output = ()>) {
        if let Err(msg) = crate::core::panic_guard::guarded(fut).await {
            self.bus.publish(Event::subscriber_panicked(
                who,
                format!("listener panic: {msg}"),
            ));
        }
    }

    /// Returns registered and removing tasks as `(id, label)` pairs, sorted by identity.
    pub async fn list(&self) -> Vec<(TaskId, Arc<str>)> {
        let st = self.state.read().await;
        let mut v: Vec<(TaskId, Arc<str>)> = st
            .tasks
            .iter()
            .map(|(id, entry)| (*id, Arc::clone(&entry.label)))
            .collect();
        v.sort_by_key(|(id, _)| *id);
        v
    }

    /// Returns true if `id` is registered or removing.
    #[cfg(any(test, feature = "controller"))]
    pub async fn contains(&self, id: TaskId) -> bool {
        self.state.read().await.tasks.contains_key(&id)
    }

    /// Resolves a label to the identity currently holding it (if any).
    #[cfg(test)]
    pub async fn id_for_label(&self, name: &str) -> Option<TaskId> {
        self.state.read().await.by_label.get(name).copied()
    }

    /// Returns true if no tasks are registered or removing.
    pub async fn is_empty(&self) -> bool {
        self.state.read().await.tasks.is_empty()
    }

    /// Cancels all registered tasks and waits for them within one shared grace window.
    ///
    /// Steps:
    /// - change every `Registered` entry to `Removing`,
    /// - cancel every actor token,
    /// - join each actor until the shared deadline,
    /// - abort actors that do not finish in time,
    /// - publish `TaskRemoved` for each drained task.
    ///
    /// Returns labels of tasks that were force-aborted.
    pub async fn cancel_all_within(&self, grace: Duration) -> Vec<Arc<str>> {
        let grace = grace.min(Duration::from_secs(60 * 60 * 24 * 365 * 30));
        let handles: Vec<(TaskId, Arc<str>, Handle, RemovalCompletion)> = {
            let mut st = self.state.write().await;
            let ids: Vec<TaskId> = st.tasks.keys().copied().collect();
            ids.into_iter()
                .filter_map(|id| {
                    Self::claim_registered(&mut st, &self.pending_joins, id)
                        .map(|(label, handle, completion)| (id, label, handle, completion))
                })
                .collect()
        };
        for (_, _, h, _) in &handles {
            h.cancel.cancel();
        }

        let deadline = tokio::time::Instant::now() + grace;
        let mut stuck = Vec::new();

        for (id, label, h, removal_completion) in handles {
            let mut join = h.join;
            match tokio::time::timeout_at(deadline, &mut join).await {
                Ok(res) => {
                    Self::finish_removal(
                        &self.state,
                        &self.empty_notify,
                        &self.pending_joins,
                        &self.bus,
                        RemovalReport {
                            id,
                            outcome: h.done,
                            join: JoinCompletion::Joined(res),
                            completion: removal_completion,
                        },
                    )
                    .await;
                }
                Err(_elapsed) => {
                    join.abort();
                    let _ = join.await;
                    stuck.push(Arc::clone(&label));
                    Self::finish_removal(
                        &self.state,
                        &self.empty_notify,
                        &self.pending_joins,
                        &self.bus,
                        RemovalReport {
                            id,
                            outcome: h.done,
                            join: JoinCompletion::ForceAborted,
                            completion: removal_completion,
                        },
                    )
                    .await;
                }
            }
        }
        let _ = tokio::time::timeout_at(deadline, self.pending_joins.wait_drained()).await;
        stuck
    }

    /// Spawns an actor future with a reliable identity completion signal.
    fn spawn_tracked_actor(
        id: TaskId,
        completion_tx: mpsc::UnboundedSender<TaskId>,
        future: impl Future<Output = ActorExitReason> + Send + 'static,
    ) -> JoinHandle<ActorExitReason> {
        let completion = ActorCompletionGuard {
            id,
            tx: completion_tx,
        };
        tokio::spawn(async move {
            let _completion = completion;
            future.await
        })
    }

    /// Spawns one registered actor, optionally held behind a batch start gate.
    fn spawn_entry(
        &self,
        id: TaskId,
        label: Arc<str>,
        spec: TaskSpec,
        done: Option<OutcomeTx>,
        start: Option<watch::Receiver<bool>>,
    ) -> Entry {
        let task_token = self.runtime_token.child_token();

        let actor = TaskActor::new(
            self.bus.clone(),
            Arc::clone(&label),
            spec.task().clone(),
            TaskActorParams {
                restart: spec.restart(),
                backoff: spec.backoff(),
                timeout: spec.timeout(),
                max_retries: spec.max_retries(),
            },
            self.semaphore.clone(),
            id,
        );

        let task_token_clone = task_token.clone();
        let actor_future = async move {
            if let Some(mut start) = start {
                loop {
                    if *start.borrow_and_update() {
                        break;
                    }
                    if start.changed().await.is_err() {
                        return ActorExitReason::Canceled;
                    }
                }
            }
            actor.run(task_token_clone).await
        };
        let join_handle = Self::spawn_tracked_actor(id, self.completion_tx.clone(), actor_future);

        Entry {
            label,
            state: EntryState::Registered(Handle {
                join: join_handle,
                cancel: task_token,
                done,
            }),
        }
    }

    /// Validates and registers a complete static task batch without partial start.
    async fn spawn_and_register_batch(
        &self,
        items: Vec<AddBatchItem>,
        reply: oneshot::Sender<AddReply>,
    ) {
        let mut st = self.state.write().await;
        let mut seen = HashSet::with_capacity(items.len());
        let mut conflicting_ids = HashSet::new();
        let mut first_conflict = None;

        for item in &items {
            let conflicts_with_registry = st.by_label.contains_key(&item.label);
            let repeats_in_batch = !seen.insert(Arc::clone(&item.label));
            if conflicts_with_registry || repeats_in_batch {
                first_conflict.get_or_insert_with(|| Arc::clone(&item.label));
                conflicting_ids.insert(item.id);
            }
        }

        if let Some(name) = first_conflict {
            drop(st);
            for item in items {
                let reason = if conflicting_ids.contains(&item.id) {
                    reasons::ALREADY_EXISTS
                } else {
                    reasons::BATCH_REJECTED
                };
                self.bus.publish(
                    Event::new(EventKind::TaskAddFailed)
                        .with_task(item.label)
                        .with_id(item.id)
                        .with_reason(reason),
                );
            }
            let _ = reply.send(Err(RuntimeError::TaskAlreadyExists { name }));
            return;
        }

        let (start_tx, start_rx) = watch::channel(false);
        let mut accepted = Vec::with_capacity(items.len());
        for item in items {
            let id = item.id;
            let label = item.label;
            let entry = self.spawn_entry(
                id,
                Arc::clone(&label),
                item.spec,
                None,
                Some(start_rx.clone()),
            );
            st.tasks.insert(id, entry);
            st.by_label.insert(Arc::clone(&label), id);
            accepted.push((id, label));
        }
        drop(st);

        for (id, label) in accepted {
            self.bus.publish(
                Event::new(EventKind::TaskAdded)
                    .with_task(label)
                    .with_id(id),
            );
        }
        let _ = reply.send(Ok(()));
        start_tx.send_replace(true);
    }

    /// Spawns an actor and registers it under `id`.
    ///
    /// Duplicate task names are rejected.
    ///
    /// Direct `add_and_watch` callers still receive [`RuntimeError::TaskAlreadyExists`](crate::RuntimeError::TaskAlreadyExists) because registration confirmation fails before the waiter is returned.
    async fn spawn_and_register(
        &self,
        id: TaskId,
        spec: TaskSpec,
        done: Option<OutcomeTx>,
        reply: oneshot::Sender<AddReply>,
    ) {
        let label: Arc<str> = Arc::from(spec.task().name());

        let mut st = self.state.write().await;
        if st.by_label.contains_key(&label) {
            drop(st);
            let _ = reply.send(Err(RuntimeError::TaskAlreadyExists {
                name: Arc::clone(&label),
            }));
            if let Some(done) = done {
                let _ = done.send(TaskOutcome::Rejected {
                    reason: Arc::from(reasons::ALREADY_EXISTS),
                });
            }
            self.bus.publish(
                Event::new(EventKind::TaskAddFailed)
                    .with_task(label)
                    .with_id(id)
                    .with_reason(reasons::ALREADY_EXISTS),
            );
            return;
        }

        let entry = self.spawn_entry(id, Arc::clone(&label), spec, done, None);
        st.tasks.insert(id, entry);
        st.by_label.insert(label.clone(), id);
        drop(st);

        let _ = reply.send(Ok(()));
        self.bus.publish(
            Event::new(EventKind::TaskAdded)
                .with_task(label)
                .with_id(id),
        );
    }

    /// Removes a task by identity.
    ///
    /// If the task exists, its actor token is cancelled and a detached join reporter publishes the final `TaskRemoved`.
    ///
    /// If the task is unknown or cleanup already owns it, replies `Ok(false)` without publishing a terminal event.
    async fn remove_task(&self, id: TaskId, reply: oneshot::Sender<RemoveReply>) {
        if let Some((_label, handle, completion)) = self.claim_task(id).await {
            handle.cancel.cancel();
            let _ = reply.send(Ok(true));
            self.spawn_join_report(id, handle.join, Some(self.grace), handle.done, completion);
        } else {
            let _ = reply.send(Ok(false));
        }
    }

    /// Resolves one label and claims its current owner under the same state lock.
    ///
    /// A missing label returns `Ok(false)` without a request event.
    /// An owner that is already `Removing` keeps its request event but also returns `Ok(false)`.
    async fn remove_task_by_label(&self, label: Arc<str>, reply: oneshot::Sender<RemoveReply>) {
        let claimed = {
            let mut st = self.state.write().await;
            let Some(id) = st.by_label.get(label.as_ref()).copied() else {
                drop(st);
                let _ = reply.send(Ok(false));
                return;
            };

            self.bus.publish(
                Event::new(EventKind::TaskRemoveRequested)
                    .with_task(Arc::clone(&label))
                    .with_id(id),
            );
            Self::claim_registered(&mut st, &self.pending_joins, id)
                .map(|(_entry_label, handle, completion)| (id, handle, completion))
        };

        if let Some((id, handle, completion)) = claimed {
            handle.cancel.cancel();
            let _ = reply.send(Ok(true));
            self.spawn_join_report(id, handle.join, Some(self.grace), handle.done, completion);
        } else {
            let _ = reply.send(Ok(false));
        }
    }

    /// Claims or joins cancellation by identity and returns a shared terminal decision.
    async fn cancel_task(&self, id: TaskId, reply: oneshot::Sender<CancelReply>) {
        let action = {
            let mut st = self.state.write().await;
            if !st.tasks.contains_key(&id) {
                None
            } else {
                self.bus.publish(
                    Event::new(EventKind::TaskRemoveRequested)
                        .with_id(id)
                        .with_reason("manual_cancel"),
                );
                Self::cancel_action(&mut st, &self.pending_joins, id)
            }
        };
        self.resolve_cancel_action(action, reply);
    }

    /// Resolves a label and claims or joins cancellation under the same state lock.
    async fn cancel_task_by_label(&self, label: Arc<str>, reply: oneshot::Sender<CancelReply>) {
        let action = {
            let mut st = self.state.write().await;
            let Some(id) = st.by_label.get(label.as_ref()).copied() else {
                drop(st);
                let _ = reply.send(Ok(None));
                return;
            };

            self.bus.publish(
                Event::new(EventKind::TaskRemoveRequested)
                    .with_task(label)
                    .with_id(id)
                    .with_reason("manual_cancel"),
            );
            Self::cancel_action(&mut st, &self.pending_joins, id)
        };
        self.resolve_cancel_action(action, reply);
    }

    /// Selects one cancel action while registry state is locked.
    fn cancel_action(
        st: &mut Inner,
        pending_joins: &PendingJoins,
        id: TaskId,
    ) -> Option<CancelAction> {
        let existing_completion = {
            let entry = st.tasks.get(&id)?;
            match &entry.state {
                EntryState::Registered(_) => None,
                EntryState::Removing { completion } => Some(completion.clone()),
            }
        };
        if let Some(completion) = existing_completion {
            return Some(CancelAction {
                decision: CancelDecision {
                    id,
                    claimed: false,
                    completion,
                },
                handle: None,
            });
        }

        let (_label, handle, completion) = Self::claim_registered(st, pending_joins, id)
            .expect("a registered entry must be claimable while state is locked");
        Some(CancelAction {
            decision: CancelDecision {
                id,
                claimed: true,
                completion,
            },
            handle: Some(handle),
        })
    }

    /// Sends one cancel decision and starts the join owner when this command claimed it.
    fn resolve_cancel_action(
        &self,
        action: Option<CancelAction>,
        reply: oneshot::Sender<CancelReply>,
    ) {
        let Some(CancelAction { decision, handle }) = action else {
            let _ = reply.send(Ok(None));
            return;
        };

        if let Some(handle) = handle {
            handle.cancel.cancel();
            let completion = decision.completion.clone();
            let id = decision.id;
            let _ = reply.send(Ok(Some(decision)));
            self.spawn_join_report(id, handle.join, Some(self.grace), handle.done, completion);
        } else {
            let _ = reply.send(Ok(Some(decision)));
        }
    }

    /// Cleans up a finished actor by identity.
    ///
    /// Called after the actor's reliable completion signal is received.
    /// Duplicate or stale completion signals are no-ops.
    async fn cleanup_task(&self, id: TaskId) {
        if let Some((_label, handle, completion)) = self.claim_task(id).await {
            self.spawn_join_report(id, handle.join, Some(self.grace), handle.done, completion);
        }
    }

    /// Changes one task from `Registered` to `Removing`.
    ///
    /// The winning caller gets the only actor handle.
    /// Identity and label indexes stay in the registry until that caller finishes the join.
    async fn claim_task(&self, id: TaskId) -> Option<(Arc<str>, Handle, RemovalCompletion)> {
        let mut st = self.state.write().await;
        Self::claim_registered(&mut st, &self.pending_joins, id)
    }

    /// Locked implementation of the `Registered` to `Removing` transition.
    fn claim_registered(
        st: &mut Inner,
        pending_joins: &PendingJoins,
        id: TaskId,
    ) -> Option<(Arc<str>, Handle, RemovalCompletion)> {
        let entry = st.tasks.get_mut(&id)?;
        if matches!(&entry.state, EntryState::Removing { .. }) {
            return None;
        }

        let completion = RemovalCompletion::new();
        let EntryState::Registered(handle) = std::mem::replace(
            &mut entry.state,
            EntryState::Removing {
                completion: completion.clone(),
            },
        ) else {
            unreachable!("a removing entry was checked above")
        };
        let label = Arc::clone(&entry.label);
        pending_joins.inc(id);
        pending_joins.label(id, Arc::clone(&label));
        Some((label, handle, completion))
    }

    /// Joins an actor in a detached task and reports its final result.
    ///
    /// If `force_after` is `Some`, the join is bounded by that duration.
    /// When the actor does not finish in time, it is aborted and watched tasks resolve to [`TaskOutcome::ForceAborted`].
    ///
    /// On normal join, this resolves the optional outcome sender and publishes the final `TaskRemoved`.
    fn spawn_join_report(
        &self,
        id: TaskId,
        join: JoinHandle<ActorExitReason>,
        force_after: Option<Duration>,
        done: Option<OutcomeTx>,
        removal_completion: RemovalCompletion,
    ) {
        let bus = self.bus.clone();
        let state = Arc::clone(&self.state);
        let empty_notify = Arc::clone(&self.empty_notify);
        let pending = Arc::clone(&self.pending_joins);
        tokio::spawn(async move {
            let mut join = join;
            let completion = match force_after {
                Some(grace) => match tokio::time::timeout(grace, &mut join).await {
                    Ok(res) => JoinCompletion::Joined(res),
                    Err(_) => {
                        join.abort();
                        let _ = join.await;
                        JoinCompletion::ForceAborted
                    }
                },
                None => JoinCompletion::Joined(join.await),
            };

            Self::finish_removal(
                &state,
                &empty_notify,
                &pending,
                &bus,
                RemovalReport {
                    id,
                    outcome: done,
                    join: completion,
                    completion: removal_completion,
                },
            )
            .await;
        });
    }

    /// Commits terminal cleanup for one `Removing` entry.
    ///
    /// State removal, outcome delivery, terminal events, and pending-join cleanup finish before an empty-registry waiter can continue.
    async fn finish_removal(
        state: &RwLock<Inner>,
        empty_notify: &Notify,
        pending_joins: &PendingJoins,
        bus: &Bus,
        report: RemovalReport,
    ) {
        let RemovalReport {
            id,
            outcome,
            join,
            completion: removal_completion,
        } = report;
        let mut st = state.write().await;
        let is_removing = st
            .tasks
            .get(&id)
            .is_some_and(|entry| matches!(&entry.state, EntryState::Removing { .. }));
        if !is_removing {
            drop(st);
            pending_joins.dec(id);
            removal_completion.complete();
            return;
        }

        let entry = st
            .tasks
            .remove(&id)
            .expect("the removing entry was checked above");
        let EntryState::Removing {
            completion: state_completion,
        } = entry.state
        else {
            unreachable!("the removing entry was checked above")
        };
        if st.by_label.get(entry.label.as_ref()) == Some(&id) {
            st.by_label.remove(entry.label.as_ref());
        }

        match join {
            JoinCompletion::Joined(res) => {
                Self::report_join(bus, id, &entry.label, res, outcome);
            }
            JoinCompletion::ForceAborted => {
                if let Some(done) = outcome {
                    let _ = done.send(TaskOutcome::ForceAborted);
                }
                bus.publish(
                    Event::new(EventKind::TaskRemoved)
                        .with_task(Arc::clone(&entry.label))
                        .with_id(id)
                        .with_reason("force_terminated_after_grace"),
                );
            }
        }
        pending_joins.dec(id);
        state_completion.complete();
        removal_completion.complete();

        let is_empty = st.tasks.is_empty();
        drop(st);
        if is_empty {
            empty_notify.notify_waiters();
        }
    }

    /// Reports the result of a joined actor.
    ///
    /// Sends the watched [`TaskOutcome`] if present, publishes `ActorDead` for an actor panic, and always publishes `TaskRemoved` for this joined actor.
    fn report_join(
        bus: &Bus,
        id: TaskId,
        name: &str,
        res: Result<ActorExitReason, JoinError>,
        done: Option<OutcomeTx>,
    ) {
        if let Err(e) = &res
            && e.is_panic()
        {
            bus.publish(
                Event::new(EventKind::ActorDead)
                    .with_task(name)
                    .with_id(id)
                    .with_reason("actor_panic"),
            );
        }
        if let Some(done) = done {
            let _ = done.send(Self::outcome_of(res));
        }
        bus.publish(
            Event::new(EventKind::TaskRemoved)
                .with_task(name)
                .with_id(id),
        );
    }

    /// Maps a joined actor result to the public [`TaskOutcome`].
    fn outcome_of(res: Result<ActorExitReason, JoinError>) -> TaskOutcome {
        match res {
            Ok(ActorExitReason::Completed) => TaskOutcome::Completed,
            Ok(ActorExitReason::Canceled) => TaskOutcome::Canceled,
            Ok(ActorExitReason::Exhausted {
                reason,
                exit_code,
                source,
            }) => TaskOutcome::Failed {
                reason,
                exit_code,
                source,
            },
            Ok(ActorExitReason::Fatal {
                reason,
                exit_code,
                source,
            }) => TaskOutcome::Fatal {
                reason,
                exit_code,
                source,
            },
            Err(e) if e.is_panic() => TaskOutcome::Panicked,
            Err(_aborted) => TaskOutcome::ForceAborted,
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn pending_wait_drained_resolves_after_last_dec() {
        let p = Arc::new(PendingJoins::default());
        let a = TaskId::next();
        let b = TaskId::next();
        p.inc(a);
        p.inc(b);
        assert!(!p.is_empty());

        let p2 = Arc::clone(&p);
        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(20)).await;
            p2.dec(a);
            p2.dec(b);
        });

        tokio::time::timeout(Duration::from_secs(1), p.wait_drained())
            .await
            .expect("wait_drained must resolve once every join is decremented");
        assert!(p.is_empty(), "no joins should remain after draining");
    }

    #[tokio::test]
    async fn pending_wait_drained_returns_immediately_when_empty() {
        let p = PendingJoins::default();
        tokio::time::timeout(Duration::from_millis(100), p.wait_drained())
            .await
            .expect("an empty PendingJoins must resolve immediately");
    }

    fn registry() -> Arc<Registry> {
        let bus = Bus::new(64);
        let token = CancellationToken::new();
        let (_tx, rx) = mpsc::channel(64);
        Registry::new(bus, token, None, Duration::from_secs(5), rx)
    }

    #[tokio::test(flavor = "current_thread")]
    async fn terminal_cleanup_wakes_all_empty_waiters() {
        use tokio::sync::Barrier;

        let registry = registry();
        let id = TaskId::next();
        let label: Arc<str> = Arc::from("empty-waiters");
        let completion = RemovalCompletion::new();
        let mut state = registry.state.write().await;
        state.by_label.insert(Arc::clone(&label), id);
        state.tasks.insert(
            id,
            Entry {
                label: Arc::clone(&label),
                state: EntryState::Removing {
                    completion: completion.clone(),
                },
            },
        );
        registry.pending_joins.inc(id);
        registry.pending_joins.label(id, label);

        let ready = Arc::new(Barrier::new(3));
        let first_registry = Arc::clone(&registry);
        let first_ready = Arc::clone(&ready);
        let first = tokio::spawn(async move {
            first_ready.wait().await;
            first_registry.wait_until_empty().await;
        });
        let second_registry = Arc::clone(&registry);
        let second_ready = Arc::clone(&ready);
        let second = tokio::spawn(async move {
            second_ready.wait().await;
            second_registry.wait_until_empty().await;
        });

        ready.wait().await;
        tokio::task::yield_now().await;
        drop(state);

        let state_barrier = registry.state.write().await;
        drop(state_barrier);
        assert!(!first.is_finished());
        assert!(!second.is_finished());

        Registry::finish_removal(
            &registry.state,
            &registry.empty_notify,
            &registry.pending_joins,
            &registry.bus,
            RemovalReport {
                id,
                outcome: None,
                join: JoinCompletion::Joined(Ok(ActorExitReason::Completed)),
                completion,
            },
        )
        .await;

        tokio::time::timeout(Duration::from_secs(1), first)
            .await
            .expect("the first empty waiter must wake")
            .expect("the first empty waiter must not panic");
        tokio::time::timeout(Duration::from_secs(1), second)
            .await
            .expect("the second empty waiter must wake")
            .expect("the second empty waiter must not panic");
        assert!(registry.is_empty().await);
        assert_eq!(registry.id_for_label("empty-waiters").await, None);
        assert!(registry.pending_joins.is_empty());
    }

    fn started_registry(
        bus_capacity: usize,
        grace: Duration,
    ) -> (
        Arc<Registry>,
        Bus,
        CancellationToken,
        mpsc::Sender<RegistryCommand>,
    ) {
        let bus = Bus::new(bus_capacity);
        let token = CancellationToken::new();
        let (tx, rx) = mpsc::channel(64);
        let registry = Registry::new(bus.clone(), token.clone(), None, grace, rx);
        registry.clone().spawn_listener();
        (registry, bus, token, tx)
    }

    fn send_add(
        tx: &mpsc::Sender<RegistryCommand>,
        id: TaskId,
        spec: TaskSpec,
        outcome: Option<OutcomeTx>,
    ) -> AddReplyRx {
        let (reply, reply_rx) = oneshot::channel();
        tx.try_send(RegistryCommand::Add {
            id,
            spec,
            outcome,
            reply,
        })
        .expect("registry command channel must stay open");
        reply_rx
    }

    fn batch_item(id: TaskId, spec: TaskSpec) -> AddBatchItem {
        AddBatchItem {
            id,
            label: Arc::from(spec.task().name()),
            spec,
        }
    }

    fn send_batch(tx: &mpsc::Sender<RegistryCommand>, items: Vec<AddBatchItem>) -> AddReplyRx {
        let (reply, reply_rx) = oneshot::channel();
        tx.try_send(RegistryCommand::AddBatch { items, reply })
            .expect("registry command channel must stay open");
        reply_rx
    }

    fn send_remove(tx: &mpsc::Sender<RegistryCommand>, id: TaskId) -> RemoveReplyRx {
        let (reply, reply_rx) = oneshot::channel();
        tx.try_send(RegistryCommand::Remove { id, reply })
            .expect("registry command channel must stay open");
        reply_rx
    }

    fn send_cancel(tx: &mpsc::Sender<RegistryCommand>, id: TaskId) -> CancelReplyRx {
        let (reply, reply_rx) = oneshot::channel();
        tx.try_send(RegistryCommand::Cancel { id, reply })
            .expect("registry command channel must stay open");
        reply_rx
    }

    async fn receive_reply<T>(reply: oneshot::Receiver<T>, name: &str) -> T {
        tokio::time::timeout(Duration::from_secs(2), reply)
            .await
            .unwrap_or_else(|_| panic!("{name} timed out"))
            .unwrap_or_else(|_| panic!("{name} sender was dropped"))
    }

    async fn receive_completion(
        completion_rx: &mut mpsc::UnboundedReceiver<TaskId>,
        name: &str,
    ) -> TaskId {
        tokio::time::timeout(Duration::from_secs(2), completion_rx.recv())
            .await
            .unwrap_or_else(|_| panic!("{name} timed out"))
            .unwrap_or_else(|| panic!("{name} channel was closed"))
    }

    async fn stop_registry(registry: &Registry, token: &CancellationToken) {
        token.cancel();
        tokio::time::timeout(Duration::from_secs(2), registry.join_listener())
            .await
            .expect("registry listener must stop");
    }

    #[tokio::test(flavor = "current_thread")]
    async fn add_reply_commits_state_without_event_confirmation() {
        use crate::{TaskContext, TaskFn, TaskRef};
        use tokio::sync::broadcast::error::TryRecvError;

        let (registry, bus, token, tx) = started_registry(1, Duration::from_secs(1));
        let mut stale_events = bus.subscribe();
        let id = TaskId::next();
        let task: TaskRef = TaskFn::arc("reply-add", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });

        let reply = send_add(&tx, id, TaskSpec::restartable(task), None);
        assert!(
            receive_reply(reply, "add reply").await.is_ok(),
            "registry must accept a unique task"
        );
        assert!(
            registry.contains(id).await,
            "reply requires committed id state"
        );
        assert_eq!(
            registry.id_for_label("reply-add").await,
            Some(id),
            "reply requires committed label state"
        );
        assert_eq!(registry.list().await, vec![(id, Arc::from("reply-add"))]);

        for _ in 0..4 {
            bus.publish(Event::new(EventKind::TaskStarting).with_task("noise"));
        }
        assert!(
            matches!(stale_events.try_recv(), Err(TryRecvError::Lagged(_))),
            "the observer must lag in this regression setup"
        );
        assert!(
            registry.contains(id).await,
            "event lag must not change the authoritative add result"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn batch_reply_commits_every_task_as_one_registry_decision() {
        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let mut expected = Vec::new();
        let mut items = Vec::new();
        for label in ["batch-a", "batch-b", "batch-c"] {
            let id = TaskId::next();
            let task: TaskRef = TaskFn::arc(label, |ctx: TaskContext| async move {
                ctx.cancelled().await;
                Ok(())
            });
            expected.push((id, Arc::from(label)));
            items.push(batch_item(id, TaskSpec::restartable(task)));
        }
        expected.sort_by_key(|(id, _)| *id);

        let result = receive_reply(send_batch(&tx, items), "batch add reply").await;
        assert!(result.is_ok(), "unique batch must be accepted: {result:?}");
        assert_eq!(registry.list().await, expected);

        let added: Vec<_> = std::iter::from_fn(|| events.try_recv().ok())
            .filter(|event| event.kind == EventKind::TaskAdded)
            .collect();
        assert_eq!(added.len(), 3);

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn dropped_batch_reply_still_starts_after_all_added_events() {
        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let (body_tx, mut body_rx) = mpsc::unbounded_channel();
        let mut items = Vec::new();
        for label in ["dropped-batch-a", "dropped-batch-b"] {
            let id = TaskId::next();
            let body_tx = body_tx.clone();
            let task: TaskRef = TaskFn::arc(label, move |_ctx: TaskContext| {
                let _ = body_tx.send(id);
                async { Ok(()) }
            });
            items.push(batch_item(id, TaskSpec::once(task)));
        }
        drop(body_tx);

        let reply = send_batch(&tx, items);
        drop(reply);
        let first = receive_completion(&mut body_rx, "first batch body").await;
        let second = receive_completion(&mut body_rx, "second batch body").await;
        assert_ne!(first, second);
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("both one-shot batch tasks must finish");

        let observed: Vec<_> = std::iter::from_fn(|| events.try_recv().ok()).collect();
        let added: Vec<_> = observed
            .iter()
            .filter(|event| event.kind == EventKind::TaskAdded)
            .collect();
        let starting: Vec<_> = observed
            .iter()
            .filter(|event| event.kind == EventKind::TaskStarting)
            .collect();
        assert_eq!(added.len(), 2);
        assert_eq!(starting.len(), 2);
        let last_added = added.iter().map(|event| event.seq).max().unwrap();
        let first_starting = starting.iter().map(|event| event.seq).min().unwrap();
        assert!(
            last_added < first_starting,
            "the batch start gate must keep bodies behind all TaskAdded events"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn duplicate_inside_batch_rejects_every_item_without_starting_bodies() {
        use std::sync::atomic::{AtomicUsize, Ordering};

        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let runs = Arc::new(AtomicUsize::new(0));
        let mut items = Vec::new();
        let mut ids = Vec::new();
        for label in ["unique", "duplicate", "duplicate"] {
            let runs = Arc::clone(&runs);
            let task: TaskRef = TaskFn::arc(label, move |_ctx: TaskContext| {
                runs.fetch_add(1, Ordering::SeqCst);
                async { Ok(()) }
            });
            let id = TaskId::next();
            ids.push(id);
            items.push(batch_item(id, TaskSpec::once(task)));
        }

        let result = receive_reply(send_batch(&tx, items), "duplicate batch reply").await;
        assert!(
            matches!(
                result,
                Err(RuntimeError::TaskAlreadyExists { ref name }) if name.as_ref() == "duplicate"
            ),
            "the first conflicting input label must reject the batch: {result:?}"
        );
        assert!(registry.list().await.is_empty());
        assert_eq!(runs.load(Ordering::SeqCst), 0);

        let observed: Vec<_> = std::iter::from_fn(|| events.try_recv().ok()).collect();
        assert_eq!(
            observed
                .iter()
                .filter(|event| event.kind == EventKind::TaskAdded)
                .count(),
            0
        );
        let failed: Vec<_> = observed
            .into_iter()
            .filter(|event| event.kind == EventKind::TaskAddFailed)
            .collect();
        assert_eq!(failed.len(), 3);
        assert_eq!(failed[0].id, Some(ids[0]));
        assert_eq!(failed[0].reason.as_deref(), Some(reasons::BATCH_REJECTED));
        assert_eq!(failed[1].id, Some(ids[1]));
        assert_eq!(failed[1].reason.as_deref(), Some(reasons::BATCH_REJECTED));
        assert_eq!(failed[2].id, Some(ids[2]));
        assert_eq!(failed[2].reason.as_deref(), Some(reasons::ALREADY_EXISTS));

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn batch_conflict_with_registered_or_removing_label_starts_no_new_body() {
        use std::sync::atomic::{AtomicUsize, Ordering};

        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let (registry, _bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let started = Arc::new(Notify::new());
        let cancellation_seen = Arc::new(Notify::new());
        let release = Arc::new(Notify::new());
        let started_by_task = Arc::clone(&started);
        let seen_by_task = Arc::clone(&cancellation_seen);
        let release_by_task = Arc::clone(&release);
        let existing: TaskRef = TaskFn::arc("reserved-batch-name", move |ctx: TaskContext| {
            let started = Arc::clone(&started_by_task);
            let cancellation_seen = Arc::clone(&seen_by_task);
            let release = Arc::clone(&release_by_task);
            async move {
                started.notify_one();
                ctx.cancelled().await;
                cancellation_seen.notify_one();
                release.notified().await;
                Err(TaskError::Canceled)
            }
        });
        let existing_id = TaskId::next();
        assert!(
            receive_reply(
                send_add(&tx, existing_id, TaskSpec::restartable(existing), None,),
                "existing add reply",
            )
            .await
            .is_ok()
        );
        tokio::time::timeout(Duration::from_secs(2), started.notified())
            .await
            .expect("the existing task body must start before removal");

        let candidate_runs = Arc::new(AtomicUsize::new(0));
        let make_candidate = |label: &'static str| {
            let runs = Arc::clone(&candidate_runs);
            let task: TaskRef = TaskFn::arc(label, move |_ctx: TaskContext| {
                runs.fetch_add(1, Ordering::SeqCst);
                async { Ok(()) }
            });
            batch_item(TaskId::next(), TaskSpec::once(task))
        };

        let registered_result = receive_reply(
            send_batch(
                &tx,
                vec![
                    make_candidate("registered-peer"),
                    make_candidate("reserved-batch-name"),
                ],
            ),
            "registered conflict batch",
        )
        .await;
        assert!(matches!(
            registered_result,
            Err(RuntimeError::TaskAlreadyExists { name })
                if name.as_ref() == "reserved-batch-name"
        ));
        assert_eq!(candidate_runs.load(Ordering::SeqCst), 0);
        assert_eq!(
            registry.list().await,
            vec![(existing_id, Arc::from("reserved-batch-name"))]
        );

        assert!(matches!(
            receive_reply(send_remove(&tx, existing_id), "existing remove reply").await,
            Ok(true)
        ));
        tokio::time::timeout(Duration::from_secs(2), cancellation_seen.notified())
            .await
            .expect("the existing task must enter Removing");

        let removing_result = receive_reply(
            send_batch(
                &tx,
                vec![
                    make_candidate("removing-peer"),
                    make_candidate("reserved-batch-name"),
                ],
            ),
            "removing conflict batch",
        )
        .await;
        assert!(matches!(
            removing_result,
            Err(RuntimeError::TaskAlreadyExists { name })
                if name.as_ref() == "reserved-batch-name"
        ));
        assert_eq!(candidate_runs.load(Ordering::SeqCst), 0);
        assert_eq!(
            registry.list().await,
            vec![(existing_id, Arc::from("reserved-batch-name"))]
        );

        release.notify_one();
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("the existing removing task must finish");
        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn duplicate_add_reply_rejects_without_starting_body() {
        use std::sync::atomic::{AtomicUsize, Ordering};

        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, _bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let first_id = TaskId::next();
        let first: TaskRef = TaskFn::arc("duplicate", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });
        assert!(
            receive_reply(
                send_add(&tx, first_id, TaskSpec::restartable(first), None),
                "first add reply",
            )
            .await
            .is_ok()
        );

        let runs = Arc::new(AtomicUsize::new(0));
        let duplicate_runs = Arc::clone(&runs);
        let duplicate: TaskRef = TaskFn::arc("duplicate", move |_ctx: TaskContext| {
            duplicate_runs.fetch_add(1, Ordering::SeqCst);
            async { Ok(()) }
        });
        let second_id = TaskId::next();
        let (outcome, outcome_rx) = oneshot::channel();
        let duplicate_reply = receive_reply(
            send_add(&tx, second_id, TaskSpec::once(duplicate), Some(outcome)),
            "duplicate add reply",
        )
        .await;

        assert!(
            matches!(
                duplicate_reply,
                Err(RuntimeError::TaskAlreadyExists { name }) if name.as_ref() == "duplicate"
            ),
            "duplicate add must return its authoritative rejection"
        );
        assert!(!registry.contains(second_id).await);
        assert_eq!(registry.id_for_label("duplicate").await, Some(first_id));
        assert_eq!(runs.load(Ordering::SeqCst), 0, "rejected body must not run");
        assert!(matches!(
            receive_reply(outcome_rx, "duplicate outcome").await,
            TaskOutcome::Rejected { reason } if reason.as_ref() == reasons::ALREADY_EXISTS
        ));

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn remove_reply_claims_once_before_terminal_completion() {
        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let cancellation_seen = Arc::new(Notify::new());
        let release = Arc::new(Notify::new());
        let seen_by_task = Arc::clone(&cancellation_seen);
        let task_release = Arc::clone(&release);
        let task: TaskRef = TaskFn::arc("remove-once", move |ctx: TaskContext| {
            let seen = Arc::clone(&seen_by_task);
            let release = Arc::clone(&task_release);
            async move {
                ctx.cancelled().await;
                seen.notify_one();
                release.notified().await;
                Err(TaskError::Canceled)
            }
        });
        let id = TaskId::next();
        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::restartable(task), None),
                "setup add reply",
            )
            .await
            .is_ok()
        );
        while events.try_recv().is_ok() {}

        assert!(
            matches!(
                receive_reply(send_remove(&tx, id), "first remove reply").await,
                Ok(true)
            ),
            "the first remove must claim the task"
        );
        tokio::time::timeout(Duration::from_secs(2), cancellation_seen.notified())
            .await
            .expect("the task must observe cancellation");
        assert!(registry.pending_joins.contains(id));
        assert!(
            registry.contains(id).await,
            "a removing task must keep its registry identity"
        );
        assert_eq!(
            registry.list().await,
            vec![(id, Arc::from("remove-once"))],
            "a removing task must stay visible in registry listings"
        );
        assert_eq!(registry.id_for_label("remove-once").await, Some(id));
        assert!(
            tokio::time::timeout(Duration::from_millis(20), registry.wait_until_empty())
                .await
                .is_err(),
            "the registry cannot become empty before the actor join"
        );
        while let Ok(event) = events.try_recv() {
            assert_ne!(
                event.kind,
                EventKind::TaskRemoved,
                "remove reply must not wait for or invent terminal completion"
            );
        }

        assert!(
            matches!(
                receive_reply(send_remove(&tx, id), "second remove reply").await,
                Ok(false)
            ),
            "a second remove cannot claim the same task"
        );

        let joined_cancel = receive_reply(send_cancel(&tx, id), "joined cancel reply")
            .await
            .expect("the cancel command must succeed")
            .expect("the removing task must expose its completion");
        assert!(
            !joined_cancel.claimed,
            "cancel must join an existing Remove instead of claiming again"
        );
        assert!(
            !joined_cancel.is_complete(),
            "joining cancellation cannot complete before the actor join"
        );

        release.notify_one();
        tokio::time::timeout(Duration::from_secs(2), joined_cancel.wait())
            .await
            .expect("joined cancellation must finish with the Remove owner");
        tokio::time::timeout(
            Duration::from_secs(2),
            registry.pending_joins.wait_drained(),
        )
        .await
        .expect("the released task must finish its join");
        assert!(!registry.contains(id).await);
        assert_eq!(registry.id_for_label("remove-once").await, None);
        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn concurrent_cancel_commands_share_one_terminal_completion() {
        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(5));
        let mut events = bus.subscribe();
        let cancellation_seen = Arc::new(Notify::new());
        let release = Arc::new(Notify::new());
        let seen_by_task = Arc::clone(&cancellation_seen);
        let task_release = Arc::clone(&release);
        let task: TaskRef = TaskFn::arc("shared-cancel", move |ctx: TaskContext| {
            let seen = Arc::clone(&seen_by_task);
            let release = Arc::clone(&task_release);
            async move {
                ctx.cancelled().await;
                seen.notify_one();
                release.notified().await;
                Err(TaskError::Canceled)
            }
        });
        let id = TaskId::next();
        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::restartable(task), None),
                "shared cancel add reply",
            )
            .await
            .is_ok()
        );
        while events.try_recv().is_ok() {}

        const CALLERS: usize = 8;
        let replies: Vec<_> = (0..CALLERS).map(|_| send_cancel(&tx, id)).collect();
        let mut decisions = Vec::with_capacity(CALLERS);
        for reply in replies {
            decisions.push(
                receive_reply(reply, "concurrent cancel reply")
                    .await
                    .expect("cancel command must succeed")
                    .expect("the task must still be removing"),
            );
        }
        tokio::time::timeout(Duration::from_secs(2), cancellation_seen.notified())
            .await
            .expect("the task must observe one cancellation");

        assert_eq!(
            decisions.iter().filter(|decision| decision.claimed).count(),
            1,
            "exactly one cancellation command may claim the task"
        );
        assert!(decisions.iter().all(|decision| !decision.is_complete()));
        assert!(registry.contains(id).await);
        assert!(
            std::iter::from_fn(|| events.try_recv().ok())
                .all(|event| event.id != Some(id) || event.kind != EventKind::TaskRemoved),
            "terminal cleanup cannot happen before the task is released"
        );

        release.notify_one();
        for decision in &decisions {
            tokio::time::timeout(Duration::from_secs(2), decision.wait())
                .await
                .expect("all cancel callers must share terminal completion");
        }
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("terminal cleanup must remove the task");
        let removed = std::iter::from_fn(|| events.try_recv().ok())
            .filter(|event| event.id == Some(id) && event.kind == EventKind::TaskRemoved)
            .count();
        assert_eq!(
            removed, 1,
            "shared cancellation must publish one terminal event"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn removing_task_keeps_label_reserved_until_terminal_join() {
        use std::sync::atomic::{AtomicUsize, Ordering};

        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let (registry, _bus, token, tx) = started_registry(64, Duration::from_secs(5));
        let cancellation_seen = Arc::new(Notify::new());
        let release = Arc::new(Notify::new());
        let seen_by_task = Arc::clone(&cancellation_seen);
        let task_release = Arc::clone(&release);
        let first: TaskRef = TaskFn::arc("reserved-name", move |ctx: TaskContext| {
            let seen = Arc::clone(&seen_by_task);
            let release = Arc::clone(&task_release);
            async move {
                ctx.cancelled().await;
                seen.notify_one();
                release.notified().await;
                Err(TaskError::Canceled)
            }
        });
        let first_id = TaskId::next();
        assert!(
            receive_reply(
                send_add(&tx, first_id, TaskSpec::restartable(first), None),
                "reserved-name add reply",
            )
            .await
            .is_ok()
        );
        assert!(matches!(
            receive_reply(send_remove(&tx, first_id), "reserved-name remove reply").await,
            Ok(true)
        ));
        tokio::time::timeout(Duration::from_secs(2), cancellation_seen.notified())
            .await
            .expect("the old task must observe cancellation");

        let duplicate_runs = Arc::new(AtomicUsize::new(0));
        let runs_by_task = Arc::clone(&duplicate_runs);
        let duplicate: TaskRef = TaskFn::arc("reserved-name", move |_ctx: TaskContext| {
            runs_by_task.fetch_add(1, Ordering::SeqCst);
            async { Ok(()) }
        });
        let duplicate_id = TaskId::next();
        let duplicate_reply = receive_reply(
            send_add(&tx, duplicate_id, TaskSpec::once(duplicate), None),
            "removing duplicate add reply",
        )
        .await;
        assert!(
            matches!(
                duplicate_reply,
                Err(RuntimeError::TaskAlreadyExists { name })
                    if name.as_ref() == "reserved-name"
            ),
            "a removing task must keep its label reserved"
        );
        assert_eq!(
            duplicate_runs.load(Ordering::SeqCst),
            0,
            "a rejected replacement body must not run"
        );
        assert_eq!(registry.id_for_label("reserved-name").await, Some(first_id));
        assert_eq!(
            registry.list().await,
            vec![(first_id, Arc::from("reserved-name"))]
        );
        assert!(
            tokio::time::timeout(Duration::from_millis(20), registry.wait_until_empty())
                .await
                .is_err(),
            "terminal join must control when the registry becomes empty"
        );

        release.notify_one();
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("terminal join must release the old task identity");
        assert_eq!(registry.id_for_label("reserved-name").await, None);
        assert!(!registry.pending_joins.contains(first_id));

        let replacement: TaskRef = TaskFn::arc("reserved-name", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });
        let replacement_id = TaskId::next();
        assert!(
            receive_reply(
                send_add(
                    &tx,
                    replacement_id,
                    TaskSpec::restartable(replacement),
                    None,
                ),
                "replacement add reply",
            )
            .await
            .is_ok(),
            "the label must be reusable after terminal cleanup"
        );
        assert_eq!(
            registry.id_for_label("reserved-name").await,
            Some(replacement_id)
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn unknown_remove_replies_false_without_pending_join() {
        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let unknown = TaskId::next();

        assert!(
            matches!(
                receive_reply(send_remove(&tx, unknown), "unknown remove reply").await,
                Ok(false)
            ),
            "unknown remove must return false"
        );
        assert!(matches!(
            receive_reply(
                send_remove(&tx, TaskId::next()),
                "unknown remove barrier reply",
            )
            .await,
            Ok(false)
        ));
        assert!(
            registry.pending_joins.is_empty(),
            "unknown removal must not leak pending join state"
        );
        assert!(
            std::iter::from_fn(|| events.try_recv().ok())
                .all(|event| event.id != Some(unknown) || event.kind != EventKind::TaskRemoved),
            "unknown removal must not invent a terminal event"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn dropped_add_reply_does_not_stop_command_processing() {
        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let first_id = TaskId::next();
        let first: TaskRef = TaskFn::arc("dropped-add-a", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });
        drop(send_add(&tx, first_id, TaskSpec::restartable(first), None));

        let second_id = TaskId::next();
        let second: TaskRef = TaskFn::arc("dropped-add-b", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });
        assert!(
            receive_reply(
                send_add(&tx, second_id, TaskSpec::restartable(second), None),
                "second add reply",
            )
            .await
            .is_ok()
        );

        assert!(registry.contains(first_id).await);
        assert!(registry.contains(second_id).await);
        let mut added = 0;
        while let Ok(event) = events.try_recv() {
            if event.kind == EventKind::TaskAdded {
                added += 1;
            }
        }
        assert_eq!(added, 2, "a dropped reply must not suppress TaskAdded");

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn dropped_remove_reply_does_not_skip_join_cleanup() {
        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let cancellation_seen = Arc::new(Notify::new());
        let release = Arc::new(Notify::new());
        let seen_by_task = Arc::clone(&cancellation_seen);
        let task_release = Arc::clone(&release);
        let task: TaskRef = TaskFn::arc("dropped-remove", move |ctx: TaskContext| {
            let seen = Arc::clone(&seen_by_task);
            let release = Arc::clone(&task_release);
            async move {
                ctx.cancelled().await;
                seen.notify_one();
                release.notified().await;
                Err(TaskError::Canceled)
            }
        });
        let id = TaskId::next();
        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::restartable(task), None),
                "setup add reply",
            )
            .await
            .is_ok()
        );
        while events.try_recv().is_ok() {}

        drop(send_remove(&tx, id));
        assert!(
            matches!(
                receive_reply(
                    send_remove(&tx, TaskId::next()),
                    "synchronizing remove reply",
                )
                .await,
                Ok(false)
            ),
            "the listener must process commands after a dropped reply"
        );
        tokio::time::timeout(Duration::from_secs(2), cancellation_seen.notified())
            .await
            .expect("dropped receiver must not suppress cancellation");

        release.notify_one();
        tokio::time::timeout(
            Duration::from_secs(2),
            registry.pending_joins.wait_drained(),
        )
        .await
        .expect("dropped receiver must not suppress join cleanup");
        let mut saw_removed = false;
        while let Ok(event) = events.try_recv() {
            if event.kind == EventKind::TaskRemoved && event.id == Some(id) {
                saw_removed = true;
            }
        }
        assert!(saw_removed, "join cleanup must still publish TaskRemoved");

        stop_registry(&registry, &token).await;
    }

    #[tokio::test]
    async fn wait_joins_within_reports_stuck_labels_then_drains() {
        let reg = registry();

        assert!(
            reg.wait_joins_within(Duration::from_millis(50))
                .await
                .is_empty(),
            "an empty join set must drain immediately"
        );

        let id = TaskId::next();
        reg.pending_joins.inc(id);
        reg.pending_joins.label(id, Arc::from("stuck-task"));
        let stuck = reg.wait_joins_within(Duration::from_millis(30)).await;
        assert_eq!(
            stuck,
            vec![Arc::<str>::from("stuck-task")],
            "an in-flight join must be reported with its label on timeout"
        );

        let p = Arc::clone(&reg.pending_joins);
        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(20)).await;
            p.dec(id);
        });
        assert!(
            reg.wait_joins_within(Duration::from_secs(1))
                .await
                .is_empty(),
            "must drain once the in-flight join is decremented"
        );
    }

    #[tokio::test(flavor = "current_thread")]
    async fn completion_guard_signals_on_panic_and_abort_before_first_poll() {
        use std::sync::atomic::{AtomicBool, Ordering};

        let (completion_tx, mut completion_rx) = mpsc::unbounded_channel();

        let panic_id = TaskId::next();
        let panic_handle =
            Registry::spawn_tracked_actor(panic_id, completion_tx.clone(), async move {
                panic!("outer actor panic")
            });
        let panic_result = panic_handle.await;
        assert!(
            panic_result.is_err_and(|error| error.is_panic()),
            "outer actor panic must stay visible through JoinError"
        );
        assert_eq!(
            receive_completion(&mut completion_rx, "panic completion").await,
            panic_id
        );

        let polled = Arc::new(AtomicBool::new(false));
        let polled_by_task = Arc::clone(&polled);
        let abort_id = TaskId::next();
        let abort_handle = Registry::spawn_tracked_actor(abort_id, completion_tx, async move {
            polled_by_task.store(true, Ordering::SeqCst);
            std::future::pending::<()>().await;
            ActorExitReason::Completed
        });
        abort_handle.abort();
        let abort_result = abort_handle.await;
        assert!(
            abort_result.is_err_and(|error| error.is_cancelled()),
            "aborted actor must return a cancelled JoinError"
        );
        assert!(
            !polled.load(Ordering::SeqCst),
            "the abort regression requires abort-before-first-poll"
        );
        assert_eq!(
            receive_completion(&mut completion_rx, "abort completion").await,
            abort_id
        );
        assert!(
            completion_rx.try_recv().is_err(),
            "each actor exit must send one completion identity"
        );
    }

    #[tokio::test(flavor = "current_thread")]
    async fn natural_completion_cleans_registry_when_event_observer_lags() {
        use crate::{TaskContext, TaskFn, TaskRef};
        use tokio::sync::broadcast::error::TryRecvError;

        let (registry, bus, token, tx) = started_registry(1, Duration::from_secs(1));
        let mut stale_events = bus.subscribe();
        let task: TaskRef = TaskFn::arc("completion-no-bus", |_ctx: TaskContext| async { Ok(()) });
        let id = TaskId::next();
        let (outcome, outcome_rx) = oneshot::channel();

        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::once(task), Some(outcome)),
                "fast add reply",
            )
            .await
            .is_ok()
        );
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("completion channel must remove the finished task");
        assert!(
            registry
                .wait_joins_within(Duration::from_secs(2))
                .await
                .is_empty()
        );
        assert!(matches!(
            receive_reply(outcome_rx, "fast task outcome").await,
            TaskOutcome::Completed
        ));
        assert_eq!(registry.id_for_label("completion-no-bus").await, None);
        assert!(
            matches!(stale_events.try_recv(), Err(TryRecvError::Lagged(_))),
            "the observer must lose terminal events in this regression setup"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn forged_terminal_event_does_not_remove_running_actor() {
        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let _observer = bus.subscribe();
        assert_eq!(
            bus.receiver_count(),
            1,
            "the registry listener must not subscribe to the event bus"
        );
        let id = TaskId::next();
        let task: TaskRef = TaskFn::arc("ignore-terminal-event", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });
        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::restartable(task), None),
                "running add reply",
            )
            .await
            .is_ok()
        );

        bus.publish(
            Event::new(EventKind::ActorExhausted)
                .with_task("ignore-terminal-event")
                .with_id(id),
        );

        let barrier_id = TaskId::next();
        let barrier: TaskRef = TaskFn::arc("event-barrier", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Ok(())
        });
        assert!(
            receive_reply(
                send_add(&tx, barrier_id, TaskSpec::restartable(barrier), None,),
                "barrier add reply",
            )
            .await
            .is_ok()
        );
        assert!(
            registry.contains(id).await,
            "terminal events are observability and cannot trigger cleanup"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn outer_actor_panic_is_reaped_by_completion_channel() {
        let (registry, bus, token, _tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let id = TaskId::next();
        let label: Arc<str> = Arc::from("outer-panic");
        let (done, done_rx) = oneshot::channel();

        let mut state = registry.state.write().await;
        let join = Registry::spawn_tracked_actor(id, registry.completion_tx.clone(), async move {
            panic!("outer actor panic")
        });
        state.by_label.insert(Arc::clone(&label), id);
        state.tasks.insert(
            id,
            Entry {
                label: Arc::clone(&label),
                state: EntryState::Registered(Handle {
                    join,
                    cancel: CancellationToken::new(),
                    done: Some(done),
                }),
            },
        );
        drop(state);

        assert!(matches!(
            receive_reply(done_rx, "panic outcome").await,
            TaskOutcome::Panicked
        ));
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("panicked actor must leave the registry");
        assert!(
            registry
                .wait_joins_within(Duration::from_secs(2))
                .await
                .is_empty()
        );

        let mut actor_dead = 0;
        let mut task_removed = 0;
        while let Ok(event) = events.try_recv() {
            if event.id == Some(id) && event.kind == EventKind::ActorDead {
                actor_dead += 1;
            }
            if event.id == Some(id) && event.kind == EventKind::TaskRemoved {
                task_removed += 1;
            }
        }
        assert_eq!(actor_dead, 1);
        assert_eq!(task_removed, 1);

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn remove_path_owns_cleanup_when_completion_signal_arrives() {
        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(1));
        let mut events = bus.subscribe();
        let cancellation_seen = Arc::new(Notify::new());
        let release = Arc::new(Notify::new());
        let seen_by_task = Arc::clone(&cancellation_seen);
        let task_release = Arc::clone(&release);
        let task: TaskRef = TaskFn::arc("remove-completion-race", move |ctx: TaskContext| {
            let seen = Arc::clone(&seen_by_task);
            let release = Arc::clone(&task_release);
            async move {
                ctx.cancelled().await;
                seen.notify_one();
                release.notified().await;
                Err(TaskError::Canceled)
            }
        });
        let id = TaskId::next();
        let (done, done_rx) = oneshot::channel();
        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::restartable(task), Some(done),),
                "race add reply",
            )
            .await
            .is_ok()
        );
        while events.try_recv().is_ok() {}

        assert!(matches!(
            receive_reply(send_remove(&tx, id), "race remove reply").await,
            Ok(true)
        ));
        tokio::time::timeout(Duration::from_secs(2), cancellation_seen.notified())
            .await
            .expect("removed task must observe cancellation");
        release.notify_one();
        assert!(matches!(
            receive_reply(done_rx, "race outcome").await,
            TaskOutcome::Canceled
        ));
        tokio::time::timeout(
            Duration::from_secs(2),
            registry.pending_joins.wait_drained(),
        )
        .await
        .expect("remove-owned join must drain");

        assert!(matches!(
            receive_reply(send_remove(&tx, TaskId::next()), "completion barrier reply",).await,
            Ok(false)
        ));
        let removed_count = std::iter::from_fn(|| events.try_recv().ok())
            .filter(|event| event.id == Some(id) && event.kind == EventKind::TaskRemoved)
            .count();
        assert_eq!(
            removed_count, 1,
            "stale completion signal must not duplicate terminal cleanup"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test(flavor = "current_thread")]
    async fn completion_claim_before_remove_emits_one_terminal_event() {
        use crate::{TaskContext, TaskFn, TaskRef};

        let (registry, bus, token, tx) = started_registry(64, Duration::from_secs(5));
        let mut events = bus.subscribe();
        let release = Arc::new(Notify::new());
        let task_release = Arc::clone(&release);
        let task: TaskRef = TaskFn::arc("completion-first", move |_ctx: TaskContext| {
            let release = Arc::clone(&task_release);
            async move {
                release.notified().await;
                Ok(())
            }
        });
        let id = TaskId::next();
        let (done, mut done_rx) = oneshot::channel();
        assert!(
            receive_reply(
                send_add(&tx, id, TaskSpec::once(task), Some(done)),
                "completion-first add reply",
            )
            .await
            .is_ok()
        );
        while events.try_recv().is_ok() {}

        registry
            .completion_tx
            .send(id)
            .expect("completion receiver must be open");
        assert!(matches!(
            receive_reply(
                send_remove(&tx, TaskId::next()),
                "completion claim barrier reply",
            )
            .await,
            Ok(false)
        ));
        assert!(registry.pending_joins.contains(id));
        assert!(registry.contains(id).await);
        assert_eq!(registry.id_for_label("completion-first").await, Some(id));
        assert!(
            tokio::time::timeout(Duration::from_millis(20), registry.wait_until_empty())
                .await
                .is_err(),
            "completion ownership must retain membership until join"
        );
        assert!(matches!(
            receive_reply(send_remove(&tx, id), "completion-first remove reply").await,
            Ok(false)
        ));
        let joined_cancel = receive_reply(send_cancel(&tx, id), "completion-first cancel reply")
            .await
            .expect("the cancel command must succeed")
            .expect("the completion-owned removal must still exist");
        assert!(
            !joined_cancel.claimed,
            "cancel must join the completion-plane owner"
        );
        assert!(!joined_cancel.is_complete());
        assert!(
            std::iter::from_fn(|| events.try_recv().ok())
                .all(|event| event.id != Some(id) || event.kind != EventKind::TaskRemoved),
            "remove must not report termination while cleanup is still joining"
        );

        release.notify_one();
        tokio::time::timeout(Duration::from_secs(2), joined_cancel.wait())
            .await
            .expect("cancel must finish with the completion-plane owner");
        assert!(
            matches!(done_rx.try_recv(), Ok(TaskOutcome::Completed)),
            "watched outcome must be ready before terminal completion is signalled"
        );
        tokio::time::timeout(Duration::from_secs(2), registry.wait_until_empty())
            .await
            .expect("completion-owned join must finish registry cleanup");
        assert!(!registry.pending_joins.contains(id));

        assert!(matches!(
            receive_reply(
                send_remove(&tx, TaskId::next()),
                "duplicate completion barrier reply",
            )
            .await,
            Ok(false)
        ));
        let removed_count = std::iter::from_fn(|| events.try_recv().ok())
            .filter(|event| event.id == Some(id) && event.kind == EventKind::TaskRemoved)
            .count();
        assert_eq!(
            removed_count, 1,
            "completion-first race must publish one terminal event"
        );

        stop_registry(&registry, &token).await;
    }

    #[tokio::test]
    async fn shutdown_drains_buffered_command_and_never_silently_drops() {
        use crate::{TaskContext, TaskError, TaskFn, TaskRef};

        let bus = Bus::new(64);
        let token = CancellationToken::new();
        let (tx, rx) = mpsc::channel(1);
        let reg = Registry::new(bus, token.clone(), None, Duration::from_millis(50), rx);

        let task: TaskRef = TaskFn::arc("buffered", |ctx: TaskContext| async move {
            ctx.cancelled().await;
            Err(TaskError::Canceled)
        });
        let (done_tx, done_rx) = oneshot::channel();
        let (reply_tx, reply_rx) = oneshot::channel();
        let id = TaskId::next();
        tx.try_send(RegistryCommand::Add {
            id,
            spec: TaskSpec::restartable(task),
            outcome: Some(done_tx),
            reply: reply_tx,
        })
        .expect("channel is open before shutdown");

        token.cancel();
        reg.clone().spawn_listener();
        tokio::time::timeout(Duration::from_secs(2), reg.join_listener())
            .await
            .expect("join_listener must not hang");

        let reply = tokio::time::timeout(Duration::from_secs(1), reply_rx)
            .await
            .expect("buffered Add reply must resolve")
            .expect("buffered Add reply sender must not be dropped");
        assert!(
            reply.is_ok(),
            "buffered Add must be registered before drain"
        );

        let outcome = tokio::time::timeout(Duration::from_secs(1), done_rx)
            .await
            .expect("watcher must resolve")
            .expect("watcher sender must not be dropped — the buffered Add must be acted on");
        assert!(
            matches!(outcome, TaskOutcome::Canceled | TaskOutcome::ForceAborted),
            "a buffered task drained at shutdown must terminate, got {outcome:?}"
        );

        assert!(
            reg.pending_joins.is_empty(),
            "wait_drained must leave no in-flight joins after shutdown"
        );

        let (reply, _reply_rx) = oneshot::channel();
        assert!(
            tx.try_send(RegistryCommand::Remove {
                id: TaskId::next(),
                reply,
            })
            .is_err(),
            "after shutdown the command channel is closed; sends must return Err"
        );
    }
}