summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 0df2754e60b8fc27dbc2819b0bc1f515c3d3b353 (plain)
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
use std::{io, io::Write};
use thiserror::Error;

mod parser;

use parser::Command;

fn prompt() -> Result<(), ShackleError> {
    print!("> ");
    io::stdout().flush()?;
    Ok(())
}

fn read_stdin() -> Result<String, ShackleError> {
    let mut buffer = String::new();
    io::stdin().read_line(&mut buffer)?;
    Ok(buffer)
}

fn main() -> Result<(), ShackleError> {
    loop {
        prompt()?;
        let user_input = read_stdin()?;

        match user_input.parse::<Command>() {
            Err(unknown_input) => {
                println!("Unknown input \"{}\"", unknown_input);
            }
            Ok(Command::Whitespace) => {}
            Ok(Command::Exit) => {
                break;
            }
            Ok(Command::GitInit(repo_name)) => {
                println!("Successfully created {}.git", repo_name);
            }
        }
    }
    Ok(())
}

#[derive(Error, Debug)]
enum ShackleError {
    #[error(transparent)]
    IoError(#[from] io::Error),
}