aboutsummaryrefslogtreecommitdiffstats
path: root/examples/async-std.rs
blob: b5215490a2314138bd4de9aea7a2fe759465d2ec (plain) (blame)
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
use async_std::io::prelude::WriteExt as _;
use async_std::io::ReadExt as _;
use async_std::prelude::FutureExt as _;
use pty_process::Command as _;
use std::os::unix::process::ExitStatusExt as _;

mod raw_guard;

async fn run(
    child: &pty_process::async_std::Child,
) -> std::result::Result<(), Box<dyn std::error::Error + '_>> {
    let _raw = raw_guard::RawGuard::new();

    let ex = async_executor::Executor::new();

    let input = ex.spawn(async {
        let mut buf = [0_u8; 4096];
        let mut stdin = async_std::io::stdin();
        loop {
            match stdin.read(&mut buf).await {
                Ok(bytes) => {
                    child.pty().write_all(&buf[..bytes]).await.unwrap();
                }
                Err(e) => {
                    eprintln!("stdin read failed: {:?}", e);
                    break;
                }
            }
        }
    });
    let output = ex.spawn(async {
        let mut buf = [0_u8; 4096];
        let mut stdout = async_std::io::stdout();
        loop {
            match child.pty().read(&mut buf).await {
                Ok(bytes) => {
                    stdout.write_all(&buf[..bytes]).await.unwrap();
                    stdout.flush().await.unwrap();
                }
                Err(e) => {
                    // EIO means that the process closed the other
                    // end of the pty
                    if e.raw_os_error() != Some(libc::EIO) {
                        eprintln!("pty read failed: {:?}", e);
                    }
                    break;
                }
            }
        }
    });

    ex.run(input.race(output)).await;

    Ok(())
}

fn main() {
    let status = async_std::task::block_on(async {
        let mut child = async_std::process::Command::new("sleep")
            .args(&["500"])
            .spawn_pty(Some(&pty_process::Size::new(24, 80)))
            .unwrap();
        run(&child).await.unwrap();
        child.status().await.unwrap()
    });
    std::process::exit(
        status
            .code()
            .unwrap_or_else(|| status.signal().unwrap_or(0) + 128),
    );
}