如何创建一个在 a 终止tokio::process::Child
而不关闭的情况下完成的未来stdin
。我知道try_wait
可以测试一个进程是否在没有关闭的情况下终止stdin
,但我希望这种行为具有未来的语义。
我试图为这个问题准备一个 MRE,我的代码stdin
在调用后由于写入而出现恐慌,但我观察到的与等待方法wait
的文档中所述的行为不匹配。我希望看到线路因管道破裂而崩溃,因为应该由.tokio::process::Child
stdin.write_u8(24).await.unwrap();
stdin
wait
use tokio::{time, io::AsyncWriteExt}; // 1.0.1
use std::time::Duration;
#[tokio::main]
pub async fn main() {
let mut child = tokio::process::Command::new("nano")
.stdin(std::process::Stdio::piped())
.spawn()
.unwrap();
let mut stdin = child.stdin.take().unwrap();
let tasklet = tokio::spawn(async move {
child.wait().await
});
// this delay should give tokio::spawn plenty of time to spin up
// and call `wait` on the child (closing stdin)
time::sleep(Duration::from_millis(1000)).await;
// write character 24 (CANcel, ^X) to stdin to close nano
stdin.write_u8(24).await.unwrap();
match tasklet.await {
Ok(exit_result) => match exit_result {
Ok(exit_status) => eprintln!("exit_status: {}", exit_status),
Err(terminate_error) => eprintln!("terminate_error: {}", terminate_error)
}
Err(join_error) => eprintln!("join_error: {}", join_error)
}
}