running-process 4.10.13

Subprocess and PTY runtime for the running-process project
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
//! Process-global Tokio runtime and actor command boundary for async processes.
//!
//! A process actor is the exclusive owner of one platform child. Public async
//! handles communicate only through commands, so later sync compatibility
//! adapters can block over the same engine without duplicating child state.

use std::future::Future;
use std::io;
use std::pin::Pin;
use std::process::{ExitStatus, Output};
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::{Arc, OnceLock};
use std::task::Poll;
use std::time::Duration;

use running_process_platform_internal::{
    PlatformChild, PlatformLifecycle, PlatformOutput, PlatformStdin, SpawnSpec,
};
use tokio::runtime::{Builder, Runtime};
use tokio::sync::{mpsc, oneshot, watch};

use crate::{
    AsyncProcessSessionChunk, AsyncProcessSessionEvent, AsyncProcessSessionOptions, ProcessError,
    SharedOutputCursor, SharedOutputLog, StreamKind,
};

#[path = "process_output_shutdown.rs"]
mod output_shutdown;
use output_shutdown::SessionOutputProducer;
pub(crate) use output_shutdown::SessionOutputShutdown;

static PROCESS_RUNTIME: OnceLock<Runtime> = OnceLock::new();
const DEFAULT_OUTPUT_LOG_CAPACITY: usize = 16 * 1024 * 1024;
// Tokio reserves the low three permit bits for internal bookkeeping. Passing
// a greater capacity to `mpsc::channel` panics instead of returning an error.
const MAX_MPSC_CAPACITY: usize = usize::MAX >> 3;

/// Return the library-owned runtime used by process actors.
pub(crate) fn runtime() -> &'static Runtime {
    PROCESS_RUNTIME.get_or_init(|| {
        Builder::new_multi_thread()
            .worker_threads(runtime_worker_threads())
            .enable_io()
            .enable_time()
            .thread_name("running-process-actor")
            .build()
            .expect("process runtime must initialize")
    })
}

/// Run one sync compatibility operation on the process-global actor runtime.
///
/// Blocking adapters deliberately reject calls made from an existing Tokio
/// runtime. Blocking that worker would deadlock actor progress, so callers in
/// async code must use the native async method instead.
pub(crate) fn block_on<F>(future: F) -> Result<F::Output, ProcessError>
where
    F: std::future::Future,
{
    if tokio::runtime::Handle::try_current().is_ok() {
        return Err(ProcessError::RuntimeContext);
    }
    Ok(runtime().block_on(future))
}

fn runtime_worker_threads() -> usize {
    std::thread::available_parallelism()
        .map(usize::from)
        .unwrap_or(2)
        .clamp(2, 4)
}

/// Command handle for one actor-owned process.
pub(crate) struct ActorProcess {
    commands: mpsc::Sender<Command>,
    output_log: SharedOutputLog,
}

impl ActorProcess {
    /// Spawn a process actor and wait until the actor has attempted creation.
    pub(crate) async fn start(spec: SpawnSpec) -> Result<Self, ProcessError> {
        let (commands, receiver) = mpsc::channel(16);
        let (started_tx, started_rx) = oneshot::channel();
        let output_log = SharedOutputLog::new(DEFAULT_OUTPUT_LOG_CAPACITY);
        runtime().spawn(run_actor(spec, receiver, started_tx, output_log.clone()));

        started_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Spawn)?;
        Ok(Self {
            commands,
            output_log,
        })
    }

    pub(crate) fn output_cursor(&self) -> SharedOutputCursor {
        self.output_log.cursor()
    }

    pub(crate) async fn pid(&self) -> Result<u32, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::Pid(reply_tx)).await?;
        reply_rx.await.map_err(|_| ProcessError::NotRunning)?
    }

    pub(crate) async fn wait(&self) -> Result<ExitStatus, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::Wait(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    /// Report the exit status if the actor has already observed it.
    ///
    /// This never waits. While an output capture is in flight the actor is
    /// selecting on capture completion rather than the lifecycle handle, so
    /// exit is reported once that capture finishes.
    pub(crate) async fn poll(&self) -> Result<Option<ExitStatus>, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::Poll(reply_tx)).await?;
        reply_rx.await.map_err(|_| ProcessError::NotRunning)
    }

    /// Signal the child's process group to shut down gracefully.
    ///
    /// `Ok(false)` means the child has no group of its own, so there was
    /// nothing addressable to signal.
    pub(crate) async fn terminate_group_soft(&self) -> Result<bool, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::TerminateGroupSoft(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    pub(crate) async fn kill(&self) -> Result<(), ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::Kill(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    pub(crate) async fn output(&self) -> Result<Output, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::Output {
            limit: None,
            reply: reply_tx,
        })
        .await?;
        reply_rx.await.map_err(|_| ProcessError::NotRunning)?
    }

    pub(crate) async fn output_bounded(&self, limit: usize) -> Result<Output, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::Output {
            limit: Some(limit),
            reply: reply_tx,
        })
        .await?;
        reply_rx.await.map_err(|_| ProcessError::NotRunning)?
    }

    pub(crate) async fn write_stdin(&self, bytes: Vec<u8>) -> Result<(), ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::WriteStdin {
            bytes,
            reply: reply_tx,
        })
        .await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    pub(crate) async fn close_stdin(&self) -> Result<(), ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(Command::CloseStdin(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    async fn send(&self, command: Command) -> Result<(), ProcessError> {
        self.commands
            .send(command)
            .await
            .map_err(|_| ProcessError::NotRunning)
    }
}

/// Terminal-owner command handle for the continuously pumped session actor.
///
/// Unlike [`ActorProcess`], this deliberately has no clone implementation:
/// dropping its only owner activates the configured terminal cleanup policy.
pub(crate) struct SessionProcess {
    commands: mpsc::Sender<SessionCommand>,
    stdin: Option<mpsc::Sender<SessionStdinRequest>>,
    owner_drop: Option<oneshot::Sender<()>>,
    exit_status: watch::Receiver<SessionExitState>,
    pid: u32,
    max_stdin_write: usize,
    output_shutdown: SessionOutputShutdown,
}

impl SessionProcess {
    pub(crate) async fn start(
        spec: SpawnSpec,
        options: AsyncProcessSessionOptions,
    ) -> Result<(Self, mpsc::Receiver<AsyncProcessSessionEvent>), ProcessError> {
        validate_session_options(options)?;

        let (commands, receiver) = mpsc::channel(options.max_queued_chunks);
        let (owner_drop, owner_drop_rx) = oneshot::channel();
        let (exit_tx, exit_status) = watch::channel(SessionExitState::Running);
        let (started_tx, started_rx) = oneshot::channel();
        let (output_tx, output_rx) = mpsc::channel(options.max_queued_chunks);
        let (output_shutdown, output_producer) = SessionOutputShutdown::new(output_tx);
        runtime().spawn(run_session_actor(
            spec,
            options,
            receiver,
            owner_drop_rx,
            exit_tx,
            started_tx,
            output_producer,
        ));

        let started = started_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Spawn)?;
        Ok((
            Self {
                commands,
                stdin: started.stdin,
                owner_drop: Some(owner_drop),
                exit_status,
                pid: started.pid,
                max_stdin_write: options.max_chunk_bytes,
                output_shutdown,
            },
            output_rx,
        ))
    }

    pub(crate) fn pid(&self) -> u32 {
        self.pid
    }

    pub(crate) fn output_shutdown(&self) -> SessionOutputShutdown {
        self.output_shutdown.clone()
    }

    pub(crate) fn request_output_shutdown(&self) {
        self.output_shutdown.request();
    }

    pub(crate) async fn wait(&self) -> Result<ExitStatus, ProcessError> {
        let mut exit_status = self.exit_status.clone();
        loop {
            let state = { exit_status.borrow_and_update().clone() };
            match state {
                SessionExitState::Running => {
                    exit_status
                        .changed()
                        .await
                        .map_err(|_| ProcessError::NotRunning)?;
                }
                SessionExitState::Exited(status) => return Ok(status),
                SessionExitState::Failed(error) => return Err(ProcessError::Io(error.into_io())),
            }
        }
    }

    pub(crate) async fn poll(&self) -> Result<Option<ExitStatus>, ProcessError> {
        match self.exit_status.borrow().clone() {
            SessionExitState::Running => Ok(None),
            SessionExitState::Exited(status) => Ok(Some(status)),
            SessionExitState::Failed(error) => Err(ProcessError::Io(error.into_io())),
        }
    }

    pub(crate) async fn kill(&self) -> Result<(), ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(SessionCommand::Kill(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)?;
        self.wait().await.map(|_| ())
    }

    pub(crate) async fn terminate_group_soft(&self) -> Result<bool, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(SessionCommand::TerminateGroupSoft(reply_tx))
            .await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    pub(crate) async fn write_stdin(&self, bytes: Vec<u8>) -> Result<(), ProcessError> {
        if bytes.len() > self.max_stdin_write {
            return Err(ProcessError::Io(io::Error::new(
                io::ErrorKind::InvalidInput,
                "session stdin write exceeds max_chunk_bytes",
            )));
        }
        let (reply_tx, reply_rx) = oneshot::channel();
        let stdin = self.stdin.as_ref().ok_or(ProcessError::NotRunning)?;
        stdin
            .send(SessionStdinRequest {
                bytes,
                reply: reply_tx,
            })
            .await
            .map_err(|_| ProcessError::NotRunning)?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    pub(crate) async fn close_stdin(&self) -> Result<(), ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(SessionCommand::CloseStdin(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    pub(crate) async fn cpu_time(&self) -> Result<Option<Duration>, ProcessError> {
        let (reply_tx, reply_rx) = oneshot::channel();
        self.send(SessionCommand::CpuTime(reply_tx)).await?;
        reply_rx
            .await
            .map_err(|_| ProcessError::NotRunning)?
            .map_err(ProcessError::Io)
    }

    async fn send(&self, command: SessionCommand) -> Result<(), ProcessError> {
        self.commands
            .send(command)
            .await
            .map_err(|_| ProcessError::NotRunning)
    }
}

impl Drop for SessionProcess {
    fn drop(&mut self) {
        if let Some(owner_drop) = self.owner_drop.take() {
            // This zero-byte terminal signal is independent of bounded stdin
            // and output queues, so a full queue cannot orphan the child.
            let _ = owner_drop.send(());
        }
    }
}

enum SessionCommand {
    Kill(oneshot::Sender<io::Result<()>>),
    TerminateGroupSoft(oneshot::Sender<io::Result<bool>>),
    CloseStdin(oneshot::Sender<io::Result<()>>),
    CpuTime(oneshot::Sender<io::Result<Option<Duration>>>),
}

struct SessionStdinRequest {
    bytes: Vec<u8>,
    reply: oneshot::Sender<io::Result<()>>,
}

struct SessionStdinWorker {
    task: tokio::task::JoinHandle<()>,
}

struct SessionStarted {
    pid: u32,
    stdin: Option<mpsc::Sender<SessionStdinRequest>>,
}

#[derive(Clone)]
enum SessionExitState {
    Running,
    Exited(ExitStatus),
    Failed(SessionExitError),
}

#[derive(Clone)]
struct SessionExitError {
    kind: io::ErrorKind,
    message: Arc<str>,
}

impl SessionExitError {
    fn from_io(error: &io::Error) -> Self {
        Self {
            kind: error.kind(),
            message: Arc::from(error.to_string()),
        }
    }

    fn into_io(self) -> io::Error {
        io::Error::new(self.kind, self.message.to_string())
    }
}

struct SessionPump {
    task: tokio::task::JoinHandle<io::Result<()>>,
}

/// State shared with output pumps after the direct lifecycle observes exit.
///
/// The public `None` policy needs an explicit state distinct from the period
/// before direct exit: both wait indefinitely, but only the former means a
/// descendant-held pipe is intentional rather than still being monitored for
/// the direct child's transition.
#[derive(Clone, Copy)]
enum PostExitPipeReadPolicy {
    BeforeDirectExit,
    WaitForEof,
    AbandonAfter(Duration),
}

struct SessionActor<'a> {
    lifecycle: PlatformLifecycle,
    signal: running_process_platform_internal::PlatformEmergencySignal,
    stdin_worker: Option<SessionStdinWorker>,
    stdout: Option<PlatformOutput>,
    stderr: Option<PlatformOutput>,
    options: AsyncProcessSessionOptions,
    commands: &'a mut mpsc::Receiver<SessionCommand>,
    owner_drop: &'a mut oneshot::Receiver<()>,
    exit_tx: watch::Sender<SessionExitState>,
    output_producer: SessionOutputProducer,
}

fn validate_session_options(options: AsyncProcessSessionOptions) -> Result<(), ProcessError> {
    if options.max_queued_chunks == 0 {
        return Err(invalid_session_options(
            "max_queued_chunks must be greater than zero",
        ));
    }
    if options.max_queued_chunks > MAX_MPSC_CAPACITY {
        return Err(invalid_session_options(
            "max_queued_chunks exceeds Tokio's bounded queue capacity",
        ));
    }
    if options.max_chunk_bytes == 0 {
        return Err(invalid_session_options(
            "max_chunk_bytes must be greater than zero",
        ));
    }
    if options
        .max_queued_chunks
        .checked_add(4)
        .and_then(|chunks| chunks.checked_mul(options.max_chunk_bytes))
        .is_none()
    {
        return Err(invalid_session_options(
            "session output byte bound overflows usize",
        ));
    }
    Ok(())
}

fn invalid_session_options(message: &'static str) -> ProcessError {
    ProcessError::Io(io::Error::new(io::ErrorKind::InvalidInput, message))
}

async fn run_session_actor(
    spec: SpawnSpec,
    options: AsyncProcessSessionOptions,
    mut commands: mpsc::Receiver<SessionCommand>,
    mut owner_drop: oneshot::Receiver<()>,
    exit_tx: watch::Sender<SessionExitState>,
    started: oneshot::Sender<io::Result<SessionStarted>>,
    output_producer: SessionOutputProducer,
) {
    let child = match spec.spawn().await {
        Ok(child) => child,
        Err(error) => {
            let _ = started.send(Err(error));
            return;
        }
    };
    let Some(pid) = child.id() else {
        let _ = started.send(Err(io::Error::other(
            "spawned child has no numeric identifier",
        )));
        return;
    };
    let (lifecycle, signal, stdin, stdout, stderr) = child.into_actor_parts();
    let (stdin, stdin_worker) = start_session_stdin(stdin, options.max_queued_chunks);
    let _ = started.send(Ok(SessionStarted { pid, stdin }));
    serve_session_child(SessionActor {
        lifecycle,
        signal,
        stdin_worker,
        stdout,
        stderr,
        options,
        commands: &mut commands,
        owner_drop: &mut owner_drop,
        exit_tx,
        output_producer,
    })
    .await;
}

async fn serve_session_child(actor: SessionActor<'_>) {
    let SessionActor {
        mut lifecycle,
        signal,
        mut stdin_worker,
        stdout,
        stderr,
        options,
        commands,
        owner_drop,
        exit_tx,
        output_producer,
    } = actor;
    let SessionOutputProducer {
        events: output_tx,
        shutdown,
        completion,
    } = output_producer;
    // Even actor unwind requests cleanup; it cannot leave detached pumps
    // parked forever. Sender disappearance remains failure, not an ack.
    let _shutdown_on_exit = shutdown.guard();
    let (post_exit_grace, post_exit_grace_rx) =
        watch::channel(PostExitPipeReadPolicy::BeforeDirectExit);
    let mut pumps = Vec::with_capacity(2);
    if let Some(stdout) = stdout {
        pumps.push(start_session_pump(
            stdout,
            StreamKind::Stdout,
            options.max_chunk_bytes,
            output_tx.clone(),
            shutdown.clone(),
            post_exit_grace_rx.clone(),
        ));
    }
    if let Some(stderr) = stderr {
        pumps.push(start_session_pump(
            stderr,
            StreamKind::Stderr,
            options.max_chunk_bytes,
            output_tx.clone(),
            shutdown.clone(),
            post_exit_grace_rx,
        ));
    }
    let mut output_tx = Some(output_tx);
    if pumps.is_empty() {
        drop(output_tx.take());
        completion.send_replace(Some(Ok(())));
    }
    let mut output_error = None;
    let mut exit_status = None;
    let mut lifecycle_done = false;
    let mut commands_open = true;
    let mut owner_drop_open = true;
    let mut owner_dropped = false;

    loop {
        if owner_dropped && lifecycle_done && pumps.is_empty() {
            return;
        }

        tokio::select! {
            result = lifecycle.wait(), if !lifecycle_done => {
                lifecycle_done = true;
                match result {
                    Ok(status) => {
                        exit_status = Some(status);
                        let _ = exit_tx.send(SessionExitState::Exited(status));
                        post_exit_grace.send_replace(match options.post_exit_grace {
                            Some(grace) => PostExitPipeReadPolicy::AbandonAfter(grace),
                            None => PostExitPipeReadPolicy::WaitForEof,
                        });
                        if pumps.is_empty() {
                            drop(output_tx.take());
                        }
                    }
                    Err(error) => {
                        let _ = exit_tx.send(SessionExitState::Failed(SessionExitError::from_io(&error)));
                        // Preserve the lifecycle failure, but keep joining
                        // output cleanup before the actor can disappear.
                        shutdown.request();
                    }
                }
            }
            command = commands.recv(), if commands_open => {
                match command {
                    None => {
                        commands_open = false;
                        owner_drop_open = false;
                        owner_dropped = true;
                        close_session_stdin(&mut stdin_worker);
                        if options.kill_on_drop && exit_status.is_none() {
                            let _ = start_session_kill(&signal, &mut lifecycle);
                        }
                    }
                    Some(SessionCommand::Kill(reply)) => {
                        if exit_status.is_some() {
                            let _ = reply.send(Ok(()));
                        } else {
                            match start_session_kill(&signal, &mut lifecycle) {
                                Ok(()) => { let _ = reply.send(Ok(())); }
                                Err(error) => { let _ = reply.send(Err(error)); }
                            }
                        }
                    }
                    Some(SessionCommand::TerminateGroupSoft(reply)) => {
                        if exit_status.is_some() {
                            let _ = reply.send(Ok(false));
                        } else {
                            let _ = reply.send(signal.terminate_group_soft());
                        }
                    }
                    Some(SessionCommand::CloseStdin(reply)) => {
                        close_session_stdin(&mut stdin_worker);
                        let _ = reply.send(Ok(()));
                    }
                    Some(SessionCommand::CpuTime(reply)) => {
                        let _ = reply.send(signal.cpu_time());
                    }
                }
            }
            _ = &mut *owner_drop, if owner_drop_open => {
                owner_drop_open = false;
                commands_open = false;
                owner_dropped = true;
                close_session_stdin(&mut stdin_worker);
                if options.kill_on_drop && exit_status.is_none() {
                    let _ = start_session_kill(&signal, &mut lifecycle);
                }
            }
            (index, result) = next_session_pump(&mut pumps), if !pumps.is_empty() => {
                pumps.swap_remove(index);
                if let Err(error) = result {
                    output_error.get_or_insert_with(|| SessionExitError::from_io(&error));
                    shutdown.request();
                }
                if pumps.is_empty() {
                    drop(output_tx.take());
                    completion.send_replace(Some(output_error.take().map_or(Ok(()), Err)));
                }
            }
        }
    }
}

fn start_session_pump(
    mut output: PlatformOutput,
    stream: StreamKind,
    max_chunk_bytes: usize,
    output_tx: mpsc::Sender<AsyncProcessSessionEvent>,
    shutdown: SessionOutputShutdown,
    post_exit_grace: watch::Receiver<PostExitPipeReadPolicy>,
) -> SessionPump {
    let task = runtime().spawn(async move {
        let pumping = {
            let pump = pump_session_output(
                &mut output,
                stream,
                max_chunk_bytes,
                output_tx,
                post_exit_grace,
            );
            tokio::pin!(pump);
            let caught = std::future::poll_fn(|cx| {
                match std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
                    #[cfg(test)]
                    shutdown.maybe_panic();
                    pump.as_mut().poll(cx)
                })) {
                    Ok(Poll::Ready(())) => Poll::Ready(Ok(())),
                    Ok(Poll::Pending) => Poll::Pending,
                    Err(_) => Poll::Ready(Err(io::Error::other("session output pump panicked"))),
                }
            });
            tokio::select! {
                biased;
                _ = shutdown.requested() => Ok(()),
                result = caught => result,
            }
        };
        // The borrowing pump/send future and its scratch/event storage are
        // gone, but the reader remains owned until native I/O completes.
        #[cfg(test)]
        shutdown.pause_before_cleanup().await;
        let cleanup = output.shutdown().await;
        pumping.and(cleanup)
    });
    SessionPump { task }
}

async fn next_session_pump(pumps: &mut [SessionPump]) -> (usize, io::Result<()>) {
    std::future::poll_fn(|cx| {
        for (index, pump) in pumps.iter_mut().enumerate() {
            if let Poll::Ready(result) = Pin::new(&mut pump.task).poll(cx) {
                return Poll::Ready((
                    index,
                    result.map_err(io::Error::other).and_then(|value| value),
                ));
            }
        }
        Poll::Pending
    })
    .await
}

async fn pump_session_output(
    output: &mut PlatformOutput,
    stream: StreamKind,
    max_chunk_bytes: usize,
    output_tx: mpsc::Sender<AsyncProcessSessionEvent>,
    mut post_exit_grace: watch::Receiver<PostExitPipeReadPolicy>,
) {
    let mut bytes = vec![0_u8; max_chunk_bytes];
    let mut deliver = true;
    // This budget starts on the first read after direct exit, then counts
    // only time actually waiting on the pipe. Queue delivery deliberately
    // pauses it, so bounded consumer backpressure cannot lose readable data.
    let mut post_exit_read_budget = None;
    loop {
        match read_session_chunk(
            output,
            &mut bytes,
            &mut post_exit_grace,
            &mut post_exit_read_budget,
        )
        .await
        {
            SessionRead::Abandoned => {
                // The timer only runs while an actual pipe read is pending.
                // It is therefore impossible to mistake queue backpressure
                // for a descendant holding the write end open.
                if deliver {
                    let _ = output_tx
                        .send(AsyncProcessSessionEvent::StreamAbandoned(stream))
                        .await;
                }
                return;
            }
            SessionRead::Read(Err(error)) => {
                if deliver {
                    let _ = output_tx
                        .send(AsyncProcessSessionEvent::StreamError {
                            stream,
                            kind: error.kind(),
                            message: error.to_string(),
                            raw_os_error: error.raw_os_error(),
                        })
                        .await;
                }
                return;
            }
            SessionRead::Read(Ok(0)) => {
                if deliver {
                    let _ = output_tx
                        .send(AsyncProcessSessionEvent::StreamEof(stream))
                        .await;
                }
                return;
            }
            SessionRead::Read(Ok(size)) => {
                if deliver {
                    let event = AsyncProcessSessionEvent::Chunk(AsyncProcessSessionChunk {
                        stream,
                        bytes: bytes[..size].to_vec(),
                    });
                    if output_tx.send(event).await.is_err() {
                        // A caller may explicitly detach while retaining
                        // `kill_on_drop = false`. Keep draining this pipe so
                        // the direct child can progress and be reaped.
                        deliver = false;
                    }
                }
            }
        }
    }
}

enum SessionRead {
    Read(io::Result<usize>),
    Abandoned,
}

async fn read_session_chunk(
    output: &mut PlatformOutput,
    bytes: &mut [u8],
    post_exit_grace: &mut watch::Receiver<PostExitPipeReadPolicy>,
    post_exit_read_budget: &mut Option<Duration>,
) -> SessionRead {
    loop {
        let policy = { *post_exit_grace.borrow_and_update() };
        match policy {
            PostExitPipeReadPolicy::AbandonAfter(grace) => {
                let remaining = *post_exit_read_budget.get_or_insert(grace);
                let read_started = tokio::time::Instant::now();
                match read_before_post_exit_abandon(output.read_chunk(bytes), remaining).await {
                    SessionRead::Read(result) => {
                        *post_exit_read_budget =
                            Some(remaining.saturating_sub(read_started.elapsed()));
                        return SessionRead::Read(result);
                    }
                    SessionRead::Abandoned => return SessionRead::Abandoned,
                }
            }
            PostExitPipeReadPolicy::WaitForEof => {
                return SessionRead::Read(output.read_chunk(bytes).await);
            }
            PostExitPipeReadPolicy::BeforeDirectExit => {
                tokio::select! {
                    result = output.read_chunk(bytes) => return SessionRead::Read(result),
                    changed = post_exit_grace.changed() => {
                        if changed.is_err() {
                            return SessionRead::Read(output.read_chunk(bytes).await);
                        }
                    }
                }
            }
        }
    }
}

/// Await a pipe read until the cumulative post-exit read budget expires.
///
/// At the exact expiry boundary both futures can be ready. Buffered pipe data
/// is still observable and must win: the grace only abandons a genuinely
/// pending read, never bytes the kernel already made available.
async fn read_before_post_exit_abandon<F>(read: F, remaining: Duration) -> SessionRead
where
    F: std::future::Future<Output = io::Result<usize>>,
{
    tokio::select! {
        biased;
        result = read => SessionRead::Read(result),
        _ = tokio::time::sleep(remaining) => SessionRead::Abandoned,
    }
}

fn start_session_stdin(
    stdin: Option<PlatformStdin>,
    queue_capacity: usize,
) -> (
    Option<mpsc::Sender<SessionStdinRequest>>,
    Option<SessionStdinWorker>,
) {
    let Some(mut stdin) = stdin else {
        return (None, None);
    };
    let (sender, mut receiver) = mpsc::channel::<SessionStdinRequest>(queue_capacity);
    let task = runtime().spawn(async move {
        while let Some(request) = receiver.recv().await {
            let result = stdin.write(&request.bytes).await;
            let _ = request.reply.send(result);
        }
    });
    (Some(sender), Some(SessionStdinWorker { task }))
}

fn close_session_stdin(worker: &mut Option<SessionStdinWorker>) {
    if let Some(worker) = worker.take() {
        // Dropping the task owns and closes the pipe immediately. It does not
        // wait behind a blocked child read, so lifecycle commands stay live.
        worker.task.abort();
    }
}

fn start_session_kill(
    signal: &running_process_platform_internal::PlatformEmergencySignal,
    lifecycle: &mut PlatformLifecycle,
) -> io::Result<()> {
    match signal.kill() {
        Ok(()) => Ok(()),
        // No launch-bound out-of-band signal is not a reason to abandon the
        // actor-owned child handle. `start_kill` uses that owned handle rather
        // than a cached PID, including on pidfd-restricted Linux hosts.
        Err(error)
            if matches!(
                error.kind(),
                io::ErrorKind::Unsupported | io::ErrorKind::BrokenPipe
            ) =>
        {
            lifecycle.start_kill()
        }
        Err(error) => Err(error),
    }
}

enum Command {
    Pid(oneshot::Sender<Result<u32, ProcessError>>),
    Wait(oneshot::Sender<io::Result<ExitStatus>>),
    Poll(oneshot::Sender<Option<ExitStatus>>),
    Kill(oneshot::Sender<io::Result<()>>),
    TerminateGroupSoft(oneshot::Sender<io::Result<bool>>),
    Output {
        limit: Option<usize>,
        reply: oneshot::Sender<Result<Output, ProcessError>>,
    },
    WriteStdin {
        bytes: Vec<u8>,
        reply: oneshot::Sender<io::Result<()>>,
    },
    CloseStdin(oneshot::Sender<io::Result<()>>),
}

async fn run_actor(
    spec: SpawnSpec,
    mut commands: mpsc::Receiver<Command>,
    started: oneshot::Sender<io::Result<()>>,
    output_log: SharedOutputLog,
) {
    let child = match spec.spawn().await {
        Ok(child) => {
            let _ = started.send(Ok(()));
            child
        }
        Err(error) => {
            let _ = started.send(Err(error));
            return;
        }
    };
    let pid = child.id();
    serve_child(child, pid, &mut commands, output_log).await;
}

async fn serve_child(
    child: PlatformChild,
    pid: Option<u32>,
    commands: &mut mpsc::Receiver<Command>,
    output_log: SharedOutputLog,
) {
    let (lifecycle, signal, mut stdin, mut stdout, mut stderr) = child.into_actor_parts();
    let mut lifecycle = Some(lifecycle);
    let mut exit_status = None;
    let mut waiters: Vec<oneshot::Sender<io::Result<ExitStatus>>> = Vec::new();
    let mut kill_waiters: Vec<oneshot::Sender<io::Result<()>>> = Vec::new();
    let mut capture_completion: Option<oneshot::Receiver<Result<Output, CaptureError>>> = None;
    let mut capture_reply: Option<oneshot::Sender<Result<Output, ProcessError>>> = None;
    let mut capture_kill: Option<mpsc::UnboundedSender<oneshot::Sender<io::Result<()>>>> = None;

    loop {
        let event = if let Some(completion) = capture_completion.as_mut() {
            tokio::select! {
                result = completion => ActorEvent::Capture(result),
                command = commands.recv() => ActorEvent::Command(command),
            }
        } else if exit_status.is_some() {
            ActorEvent::Command(commands.recv().await)
        } else {
            let lifecycle = lifecycle
                .as_mut()
                .expect("live actor retains its lifecycle capability");
            tokio::select! {
                result = lifecycle.wait() => ActorEvent::Exit(result),
                command = commands.recv() => ActorEvent::Command(command),
            }
        };

        match event {
            ActorEvent::Exit(Ok(status)) => {
                for waiter in waiters.drain(..) {
                    let _ = waiter.send(Ok(status));
                }
                for waiter in kill_waiters.drain(..) {
                    let _ = waiter.send(Ok(()));
                }
                exit_status = Some(status);
            }
            ActorEvent::Exit(Err(error)) => {
                for waiter in waiters.drain(..) {
                    let _ = waiter.send(Err(io::Error::new(error.kind(), error.to_string())));
                }
                for waiter in kill_waiters.drain(..) {
                    let _ = waiter.send(Err(io::Error::new(error.kind(), error.to_string())));
                }
                return;
            }
            ActorEvent::Capture(Ok(Ok(output))) => {
                let status = output.status;
                if let Some(reply) = capture_reply.take() {
                    let _ = reply.send(Ok(output));
                }
                for waiter in waiters.drain(..) {
                    let _ = waiter.send(Ok(status));
                }
                for waiter in kill_waiters.drain(..) {
                    let _ = waiter.send(Ok(()));
                }
                return;
            }
            ActorEvent::Capture(Ok(Err(error))) => {
                let process_error = error.into_process_error();
                if let Some(reply) = capture_reply.take() {
                    let _ = reply.send(Err(process_error));
                }
                let error = io::Error::other("async output capture failed");
                for waiter in waiters.drain(..) {
                    let _ = waiter.send(Err(io::Error::new(error.kind(), error.to_string())));
                }
                for waiter in kill_waiters.drain(..) {
                    let _ = waiter.send(Err(io::Error::new(error.kind(), error.to_string())));
                }
                return;
            }
            ActorEvent::Capture(Err(_)) => {
                if let Some(reply) = capture_reply.take() {
                    let _ = reply.send(Err(ProcessError::NotRunning));
                }
                for waiter in waiters.drain(..) {
                    let _ = waiter.send(Err(not_running_error()));
                }
                for waiter in kill_waiters.drain(..) {
                    let _ = waiter.send(Err(not_running_error()));
                }
                return;
            }
            ActorEvent::Command(None) => return,
            ActorEvent::Command(Some(Command::Pid(reply))) => {
                let _ = reply.send(pid.ok_or(ProcessError::NotRunning));
            }
            ActorEvent::Command(Some(Command::Wait(reply))) => {
                if let Some(status) = exit_status {
                    let _ = reply.send(Ok(status));
                } else {
                    waiters.push(reply);
                }
            }
            ActorEvent::Command(Some(Command::Poll(reply))) => {
                let _ = reply.send(exit_status);
            }
            ActorEvent::Command(Some(Command::TerminateGroupSoft(reply))) => {
                if exit_status.is_some() {
                    // Nothing left to ask nicely. Report "no group signalled"
                    // rather than an error: the child is already gone.
                    let _ = reply.send(Ok(false));
                } else {
                    // AsyncProcess predates session identity capabilities and
                    // retains its macOS raw child-group compatibility path.
                    // AsyncProcessSession uses the identity-safe method in
                    // its separate actor loop above.
                    let _ = reply.send(signal.terminate_group_soft_legacy());
                }
            }
            ActorEvent::Command(Some(Command::Kill(reply))) => {
                if exit_status.is_some() {
                    let _ = reply.send(Ok(()));
                } else if let Some(capture_kill) = capture_kill.as_ref() {
                    // The capture task still owns the direct child handle.
                    // Forward to that owner so pidfd-restricted hosts retain
                    // an identity-safe direct kill while pipes are draining.
                    if let Err(error) = capture_kill.send(reply) {
                        let _ = error.0.send(Err(not_running_error()));
                    }
                } else {
                    let result = match signal.kill() {
                        Ok(()) => Ok(()),
                        Err(error)
                            if matches!(
                                error.kind(),
                                io::ErrorKind::Unsupported | io::ErrorKind::BrokenPipe
                            ) =>
                        {
                            lifecycle
                                .as_mut()
                                .ok_or_else(not_running_error)
                                .and_then(PlatformLifecycle::start_kill)
                        }
                        Err(error) => Err(error),
                    };
                    match result {
                        Ok(()) => kill_waiters.push(reply),
                        Err(error) => {
                            let _ = reply.send(Err(error));
                        }
                    }
                }
            }
            ActorEvent::Command(Some(Command::Output { limit, reply })) => {
                if capture_completion.is_some() {
                    let _ = reply.send(Err(ProcessError::NotRunning));
                    continue;
                }

                // Capture owns the lifecycle and both output endpoints in a
                // task on the process-global runtime. The actor retains the
                // emergency signal and command receiver, so kill and queued
                // waits remain responsive while pipes drain.
                drop(stdin.take());
                let lifecycle = lifecycle
                    .take()
                    .expect("capture starts with the lifecycle capability");
                let stdout = stdout.take();
                let stderr = stderr.take();
                let known_exit_status = exit_status;
                let capture_log = output_log.clone();
                let completion_log = output_log.clone();
                let (capture_tx, capture_rx) = oneshot::channel();
                let (capture_kill_tx, capture_kill_rx) = mpsc::unbounded_channel();
                runtime().spawn(async move {
                    let result = capture_output(
                        lifecycle,
                        stdout,
                        stderr,
                        known_exit_status,
                        limit,
                        capture_log,
                        capture_kill_rx,
                    )
                    .await;
                    completion_log.close();
                    let _ = capture_tx.send(result);
                });
                capture_completion = Some(capture_rx);
                capture_reply = Some(reply);
                capture_kill = Some(capture_kill_tx);
            }
            ActorEvent::Command(Some(Command::WriteStdin { bytes, reply })) => {
                let result = match stdin.as_mut() {
                    Some(stdin) => stdin.write(&bytes).await,
                    None => Err(not_running_error()),
                };
                let _ = reply.send(result);
            }
            ActorEvent::Command(Some(Command::CloseStdin(reply))) => {
                drop(stdin.take());
                let _ = reply.send(Ok(()));
            }
        }
    }
}

enum ActorEvent {
    Exit(io::Result<ExitStatus>),
    Capture(Result<Result<Output, CaptureError>, oneshot::error::RecvError>),
    Command(Option<Command>),
}

enum CaptureError {
    Io(io::Error),
    Limit(usize),
}

impl CaptureError {
    fn into_process_error(self) -> ProcessError {
        match self {
            Self::Io(error) => ProcessError::Io(error),
            Self::Limit(limit) => ProcessError::OutputLimitExceeded { limit },
        }
    }
}

async fn capture_output(
    mut lifecycle: PlatformLifecycle,
    stdout: Option<PlatformOutput>,
    stderr: Option<PlatformOutput>,
    exit_status: Option<ExitStatus>,
    limit: Option<usize>,
    output_log: SharedOutputLog,
    mut kill_requests: mpsc::UnboundedReceiver<oneshot::Sender<io::Result<()>>>,
) -> Result<Output, CaptureError> {
    let budget = limit.map(|limit| Arc::new(CaptureBudget::new(limit)));
    let stdout = runtime().spawn(read_output(
        stdout,
        budget.clone(),
        output_log.clone(),
        StreamKind::Stdout,
    ));
    let stderr = runtime().spawn(read_output(stderr, budget, output_log, StreamKind::Stderr));
    let mut kill_replies = Vec::new();
    let mut kill_requests_open = true;
    let status = match exit_status {
        Some(status) => Ok(status),
        None => loop {
            tokio::select! {
                status = lifecycle.wait() => break status,
                request = kill_requests.recv(), if kill_requests_open => match request {
                    Some(reply) => match lifecycle.start_kill() {
                        Ok(()) => kill_replies.push(reply),
                        Err(error) => { let _ = reply.send(Err(error)); }
                    },
                    None => kill_requests_open = false,
                }
            }
        },
    };
    let status = status.map_err(CaptureError::Io)?;
    for reply in kill_replies {
        let _ = reply.send(Ok(()));
    }
    let stdout = stdout
        .await
        .map_err(|error| CaptureError::Io(io::Error::other(error.to_string())))??;
    let stderr = stderr
        .await
        .map_err(|error| CaptureError::Io(io::Error::other(error.to_string())))??;
    Ok(Output {
        status,
        stdout,
        stderr,
    })
}

struct CaptureBudget {
    limit: usize,
    used: AtomicUsize,
}

impl CaptureBudget {
    fn new(limit: usize) -> Self {
        Self {
            limit,
            used: AtomicUsize::new(0),
        }
    }
}

async fn read_output(
    output: Option<PlatformOutput>,
    budget: Option<Arc<CaptureBudget>>,
    output_log: SharedOutputLog,
    stream: StreamKind,
) -> Result<Vec<u8>, CaptureError> {
    let Some(mut output) = output else {
        return Ok(Vec::new());
    };
    let mut bytes = Vec::new();
    let mut chunk = [0_u8; 8192];
    let mut overflowed = false;
    loop {
        let size = output
            .read_chunk(&mut chunk)
            .await
            .map_err(CaptureError::Io)?;
        if size == 0 {
            break;
        }
        output_log.append(stream, chunk[..size].to_vec());
        if overflowed {
            continue;
        }
        if let Some(budget) = &budget {
            let used = budget.used.fetch_add(size, Ordering::AcqRel);
            if used.saturating_add(size) > budget.limit {
                overflowed = true;
                continue;
            }
        }
        bytes.extend_from_slice(&chunk[..size]);
    }
    if let Some(budget) = budget.filter(|_| overflowed) {
        Err(CaptureError::Limit(budget.limit))
    } else {
        Ok(bytes)
    }
}

fn not_running_error() -> io::Error {
    io::Error::new(
        io::ErrorKind::BrokenPipe,
        "process actor no longer owns a child",
    )
}

#[cfg(test)]
mod tests {
    use std::time::Duration;

    use super::{
        capture_output, runtime, runtime_worker_threads, ActorProcess, Command,
        DEFAULT_OUTPUT_LOG_CAPACITY,
    };
    use crate::SharedOutputLog;
    use running_process_platform_internal::{shell_spec, SpawnSpec, StreamMode};
    use tokio::sync::{mpsc, oneshot};

    #[test]
    fn process_runtime_worker_count_is_bounded() {
        assert!((2..=4).contains(&runtime_worker_threads()));
    }

    #[tokio::test]
    async fn actors_share_the_process_global_runtime() {
        let spec = shell_spec("exit 0")
            .stdin(StreamMode::Null)
            .stdout(StreamMode::Piped)
            .stderr(StreamMode::Piped);
        let process = ActorProcess::start(spec).await.expect("actor starts");
        assert_eq!(runtime().handle().id(), runtime().handle().id());
        assert!(process
            .output()
            .await
            .expect("actor output")
            .status
            .success());
    }

    /// A long-lived child spawned *without* a shell.
    ///
    /// `shell_spec` was the obvious choice and the wrong one: whether
    /// `/bin/sh -c "sleep 300"` execs `sleep` or forks it is shell- and
    /// image-dependent. When it forks, killing the shell leaves the grandchild
    /// holding the inherited stdout/stderr pipes, so capture never sees EOF.
    /// The capture kill lane must still acknowledge once it reaps the direct
    /// child; otherwise that retained pipe turns a kill into a hang. Exec'ing
    /// the sleeper directly removes the ambiguity.
    ///
    /// 300s rather than 30s so the bound below has an order of magnitude of
    /// headroom before "the child exited by itself" could be mistaken for
    /// "the kill worked".
    fn long_lived_piped_child() -> SpawnSpec {
        #[cfg(windows)]
        let spec = SpawnSpec::new("ping").arg("-n").arg("300").arg("127.0.0.1");
        #[cfg(not(windows))]
        let spec = SpawnSpec::new("sleep").arg("300");
        spec.stdout(StreamMode::Piped).stderr(StreamMode::Piped)
    }

    /// How long a kill may take before the test calls it blocked.
    ///
    /// The bound has to sit between "kill was delivered" and "the child just
    /// exited on its own", or the test proves nothing either way. These
    /// complete in ~7ms in the normal test job, but under coverage
    /// instrumentation the capture task -- which must reap the direct child
    /// before it acknowledges a kill, even while output keeps draining --
    /// competes for the same small shared runtime as every other test in the
    /// binary, and 2s was not enough headroom.
    /// Widening alone was not either: a 10s bound still timed out. So the
    /// children now live 300s instead of 30s, which buys this 30s bound a 10x
    /// margin while keeping "the child exited by itself" far out of reach. A
    /// failure here is now a real hang, not a slow runner.
    const NOT_BLOCKED: Duration = Duration::from_secs(30);

    #[tokio::test]
    async fn kill_is_delivered_while_an_actor_wait_is_pending() {
        let spec = long_lived_piped_child().stdin(StreamMode::Null);

        let process = ActorProcess::start(spec).await.expect("actor starts");
        let (wait_tx, wait_rx) = oneshot::channel();
        process
            .commands
            .send(Command::Wait(wait_tx))
            .await
            .expect("wait command is accepted");

        tokio::time::timeout(NOT_BLOCKED, process.kill())
            .await
            .expect("kill is not blocked by wait")
            .expect("kill succeeds");
        let status = tokio::time::timeout(NOT_BLOCKED, wait_rx)
            .await
            .expect("waiter is released")
            .expect("actor replies")
            .expect("wait succeeds");
        assert!(!status.success());
    }

    #[tokio::test]
    async fn kill_is_delivered_while_output_is_draining() {
        // The original coverage-only failure became easier to reproduce as
        // more tests shared this runtime. Keep several captures pending at
        // once so this regression exercises that scheduler/pipe pressure,
        // rather than proving only the unloaded single-child case.
        const CONCURRENT_CAPTURES: usize = 8;
        let mut pending = Vec::with_capacity(CONCURRENT_CAPTURES);
        for _ in 0..CONCURRENT_CAPTURES {
            let spec = long_lived_piped_child().stdin(StreamMode::Piped);
            let process = ActorProcess::start(spec).await.expect("actor starts");
            let (output_tx, output_rx) = oneshot::channel();
            process
                .commands
                .send(Command::Output {
                    limit: None,
                    reply: output_tx,
                })
                .await
                .expect("output command is accepted");
            pending.push((process, output_rx));
        }

        tokio::time::timeout(NOT_BLOCKED, async {
            for (process, _) in &pending {
                process.kill().await.expect("kill succeeds");
            }
        })
        .await
        .expect("kills are not blocked by concurrent output capture");

        tokio::time::timeout(NOT_BLOCKED, async {
            for (_, output_rx) in pending {
                let output = output_rx
                    .await
                    .expect("actor replies")
                    .expect("capture succeeds");
                assert!(!output.status.success());
            }
        })
        .await
        .expect("all output captures complete");
    }

    #[tokio::test]
    async fn closed_capture_kill_channel_does_not_starve_lifecycle_reap() {
        let child = shell_spec("exit 0")
            .stdout(StreamMode::Piped)
            .stderr(StreamMode::Piped)
            .spawn()
            .await
            .expect("spawn capture child");
        let (lifecycle, _signal, _stdin, stdout, stderr) = child.into_actor_parts();
        let (kill_tx, kill_rx) = mpsc::unbounded_channel();
        drop(kill_tx);

        let capture = tokio::time::timeout(
            Duration::from_secs(1),
            capture_output(
                lifecycle,
                stdout,
                stderr,
                None,
                None,
                SharedOutputLog::new(DEFAULT_OUTPUT_LOG_CAPACITY),
                kill_rx,
            ),
        )
        .await
        .expect("closed kill channel cannot hot-loop");
        let output = match capture {
            Ok(output) => output,
            Err(_) => panic!("capture completes"),
        };
        assert!(output.status.success());
    }

    #[tokio::test]
    async fn buffered_output_wins_zero_post_exit_grace() {
        let result =
            super::read_before_post_exit_abandon(std::future::ready(Ok(3)), Duration::ZERO).await;
        assert!(matches!(result, super::SessionRead::Read(Ok(3))));
    }

    #[tokio::test(start_paused = true)]
    async fn buffered_output_wins_at_post_exit_grace_expiry_boundary() {
        let read_ready_at_deadline = tokio::time::sleep(Duration::from_secs(1));
        let task = tokio::spawn(super::read_before_post_exit_abandon(
            async move {
                read_ready_at_deadline.await;
                Ok(7)
            },
            Duration::from_secs(1),
        ));
        tokio::task::yield_now().await;
        tokio::time::advance(Duration::from_secs(1)).await;

        let result = task.await.expect("read/grace task joins");
        assert!(matches!(result, super::SessionRead::Read(Ok(7))));
    }
}