aboutsummaryrefslogtreecommitdiffstats
path: root/src/repl.rs
blob: e54eb2216160e8cdafce329fa1a84bf9949d5152 (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
72
73
74
75
76
77
78
79
80
81
use futures::future::{Future, IntoFuture};
use futures::stream::Stream;
use std::io::Write;

#[derive(Debug)]
enum Error {
    ReadError(crate::readline::Error),
    EvalError(crate::process::Error),
    PrintError(std::io::Error),
}

pub fn repl() {
    let loop_stream = futures::stream::unfold(false, |done| {
        if done {
            return None;
        }

        let repl = read().and_then(|line| {
            eprint!("running '{}'\r\n", line);
            eval(&line).fold(None, |acc, event| match event {
                crate::process::ProcessEvent::Output(out) => {
                    match print(&out) {
                        Ok(()) => futures::future::ok(acc),
                        Err(e) => futures::future::err(e),
                    }
                }
                crate::process::ProcessEvent::Exit(status) => {
                    futures::future::ok(Some(status))
                }
            })
        });

        Some(repl.then(move |res| match res {
            Ok(Some(status)) => {
                eprint!("process exited with status {}\r\n", status);
                return Ok((done, false));
            }
            Ok(None) => {
                eprint!("process exited weirdly?\r\n");
                return Ok((done, false));
            }
            Err(Error::ReadError(crate::readline::Error::EOF)) => {
                return Ok((done, true));
            }
            Err(Error::EvalError(crate::process::Error::ParserError(
                crate::parser::Error::CommandRequired,
            ))) => {
                return Ok((done, false));
            }
            Err(e) => {
                let stderr = std::io::stderr();
                let mut stderr = stderr.lock();
                write!(stderr, "error: {:?}\r\n", e).unwrap();
                stderr.flush().unwrap();
                return Ok((done, false));
            }
        }))
    });
    tokio::run(loop_stream.collect().map(|_| ()));
}

fn read() -> impl futures::future::Future<Item = String, Error = Error> {
    crate::readline::readline("$ ", true).map_err(|e| Error::ReadError(e))
}

fn eval(
    line: &str,
) -> impl futures::stream::Stream<Item = crate::process::ProcessEvent, Error = Error>
{
    crate::process::spawn(line)
        .into_future()
        .flatten_stream()
        .map_err(|e| Error::EvalError(e))
}

fn print(out: &[u8]) -> Result<(), Error> {
    let stdout = std::io::stdout();
    let mut stdout = stdout.lock();
    stdout.write(out).map_err(|e| Error::PrintError(e))?;
    stdout.flush().map_err(|e| Error::PrintError(e))
}