aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_prompt/src/lib.rs
blob: fc77faa92ecf2608b5ac85dd8568145d2b380e60 (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
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
// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only

//! The Whirl Shell, for local interaction.

#![feature(
  type_ascription,
  hash_set_entry,
  decl_macro,
  proc_macro_hygiene,
  stmt_expr_attributes
)]
#![deny(
  warnings,
  nonstandard_style,
  unused,
  future_incompatible,
  rust_2018_idioms,
  unsafe_code
)]
#![deny(clippy::all, clippy::nursery, clippy::pedantic)]
#![recursion_limit = "128"]
#![doc(
  html_logo_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png",
  html_favicon_url = "https://raw.githubusercontent.com/Whirlsplash/assets/master/Whirl.png"
)]

mod builtins;
mod structure;

use {
  crate::{
    builtins::{
      builtin_cat, builtin_clear, builtin_config, builtin_echo, builtin_fetch,
      builtin_help, builtin_history, builtin_ls, structures::BuiltIn,
    },
    structure::Command,
  },
  std::{io, io::Write, str::FromStr},
  whirl_config::Config,
};

pub struct Prompt {
  history: Vec<String>,
}
impl Prompt {
  /// Begin handling user input as the prompt.
  #[allow(clippy::unused_async)]
  pub async fn handle() -> ! {
    let mut prompt = Self { history: vec![] };

    loop {
      Self::write_prompt();
      let command = Self::read_command();
      prompt.process_command(&Self::tokenize_command(&command));
    }
  }

  fn write_prompt() {
    print!("{} ", Config::get().whirlsplash.prompt.ps1);
    io::stdout().flush().unwrap();
  }

  fn read_command() -> String {
    let mut input = String::new();
    io::stdin()
      .read_line(&mut input)
      .expect("failed to read command from stdin");

    if input.len() <= 1 {
      input = "null".to_string();
    }

    input
  }

  fn tokenize_command(c: &str) -> Command {
    let mut command_split: Vec<String> =
      c.split_whitespace().map(std::string::ToString::to_string).collect();

    Command { keyword: command_split.remove(0), args: command_split }
  }

  // TODO: Find a way to make this access itself `history` doesn't have to be
  // passed everytime.
  fn process_command(&mut self, c: &Command) -> i32 {
    let exit_code = match BuiltIn::from_str(&c.keyword) {
      Ok(BuiltIn::Echo) => builtin_echo(&c.args),
      Ok(BuiltIn::Exit) => std::process::exit(0),
      Ok(BuiltIn::History) => builtin_history(&self.history),
      Ok(BuiltIn::Null) => 0,
      Ok(BuiltIn::Help) => builtin_help(),
      Ok(BuiltIn::Ls) => builtin_ls(),
      Ok(BuiltIn::Cat) => builtin_cat(&c.args),
      Ok(BuiltIn::Config) => builtin_config(&c.args),
      Ok(BuiltIn::Fetch) => builtin_fetch(&c.args),
      Ok(BuiltIn::Clear) => builtin_clear(),
      _ => {
        println!("wsh: command not found: {}", &c.keyword);
        1
      }
    };

    if c.keyword != "null" {
      self.history.push(c.to_line());
    }

    exit_code
  }
}

#[cfg(test)]
mod tokenize_command {
  use crate::Prompt;

  #[test]
  #[ignore]
  fn empty_command() { assert_eq!("", Prompt::tokenize_command("").keyword) }

  #[test]
  fn test_keyword() {
    assert_eq!("test", Prompt::tokenize_command("test").keyword);
  }

  #[test]
  fn no_arg() { assert_eq!(0, Prompt::tokenize_command("test").args.len()) }

  #[test]
  fn one_arg() {
    assert_eq!(1, Prompt::tokenize_command("test one").args.len());
  }

  #[test]
  fn multi_arg() {
    assert_eq!(3, Prompt::tokenize_command("test one two three").args.len());
  }

  #[test]
  #[ignore]
  fn quotes() {
    assert_eq!(
      2,
      Prompt::tokenize_command("test \"one two\" three").args.len()
    );
  }
}