nushell/src/main.rs

342 lines
11 KiB
Rust
Raw Normal View History

2021-10-02 15:10:28 +02:00
use std::{cell::RefCell, io::Write, rc::Rc};
2021-09-25 16:56:33 +02:00
2021-10-15 22:42:36 +02:00
use dialoguer::{
console::{Style, Term},
theme::ColorfulTheme,
Select,
};
use miette::{IntoDiagnostic, Result};
2021-10-02 15:10:28 +02:00
use nu_cli::{report_error, NuCompleter, NuHighlighter, NuValidator, NushellPrompt};
2021-09-03 00:58:15 +02:00
use nu_command::create_default_context;
2021-08-10 20:51:08 +02:00
use nu_engine::eval_block;
2021-09-10 00:09:40 +02:00
use nu_parser::parse;
2021-09-03 04:15:01 +02:00
use nu_protocol::{
2021-09-25 16:47:23 +02:00
ast::Call,
2021-10-02 15:10:28 +02:00
engine::{EngineState, EvaluationContext, Stack, StateWorkingSet},
2021-10-25 08:31:39 +02:00
IntoPipelineData, PipelineData, ShellError, Value,
2021-09-03 04:15:01 +02:00
};
use reedline::{Completer, CompletionActionHandler, DefaultPrompt, LineBuffer, Prompt};
2021-06-30 03:42:56 +02:00
2021-08-10 20:57:08 +02:00
#[cfg(test)]
mod tests;
2021-10-02 15:10:28 +02:00
// Name of environment variable where the prompt could be stored
const PROMPT_COMMAND: &str = "PROMPT_COMMAND";
struct FuzzyCompletion {
completer: Box<dyn Completer>,
}
impl CompletionActionHandler for FuzzyCompletion {
fn handle(&mut self, present_buffer: &mut LineBuffer) {
let completions = self
.completer
.complete(present_buffer.get_buffer(), present_buffer.offset());
if completions.is_empty() {
// do nothing
} else if completions.len() == 1 {
let span = completions[0].0;
let mut offset = present_buffer.offset();
offset += completions[0].1.len() - (span.end - span.start);
// TODO improve the support for multiline replace
present_buffer.replace(span.start..span.end, &completions[0].1);
present_buffer.set_insertion_point(offset);
} else {
let selections: Vec<_> = completions.iter().map(|(_, string)| string).collect();
let _ = crossterm::terminal::disable_raw_mode();
println!();
2021-10-15 22:52:03 +02:00
let theme = ColorfulTheme {
active_item_style: Style::new().for_stderr().on_green().black(),
..Default::default()
};
2021-10-15 22:42:36 +02:00
let result = Select::with_theme(&theme)
.default(0)
.items(&selections[..])
.interact_on_opt(&Term::stdout())
.unwrap();
let _ = crossterm::terminal::enable_raw_mode();
2021-10-15 22:42:36 +02:00
if let Some(result) = result {
let span = completions[result].0;
2021-10-15 22:42:36 +02:00
let mut offset = present_buffer.offset();
offset += completions[result].1.len() - (span.end - span.start);
2021-10-15 22:42:36 +02:00
// TODO improve the support for multiline replace
present_buffer.replace(span.start..span.end, &completions[result].1);
present_buffer.set_insertion_point(offset);
}
}
}
}
fn main() -> Result<()> {
2021-09-21 21:37:16 +02:00
miette::set_panic_hook();
let miette_hook = std::panic::take_hook();
std::panic::set_hook(Box::new(move |x| {
crossterm::terminal::disable_raw_mode().unwrap();
miette_hook(x);
}));
2021-09-21 21:37:16 +02:00
2021-10-25 08:31:39 +02:00
let mut engine_state = create_default_context();
2021-07-17 08:31:34 +02:00
if let Some(path) = std::env::args().nth(1) {
let file = std::fs::read(&path).into_diagnostic()?;
2021-07-23 07:14:49 +02:00
2021-07-30 23:26:05 +02:00
let (block, delta) = {
2021-10-25 08:31:39 +02:00
let mut working_set = StateWorkingSet::new(&engine_state);
2021-09-06 22:41:30 +02:00
let (output, err) = parse(&mut working_set, Some(&path), &file, false);
2021-07-30 23:26:05 +02:00
if let Some(err) = err {
report_error(&working_set, &err);
2021-07-30 23:26:05 +02:00
std::process::exit(1);
}
(output, working_set.render())
};
2021-07-16 08:24:46 +02:00
2021-10-25 08:31:39 +02:00
EngineState::merge_delta(&mut engine_state, delta);
2021-10-25 08:31:39 +02:00
let mut stack = nu_protocol::engine::Stack::new();
2021-10-25 08:31:39 +02:00
match eval_block(&engine_state, &mut stack, &block, PipelineData::new()) {
Ok(pipeline_data) => {
println!("{}", pipeline_data.collect_string());
2021-07-30 22:02:16 +02:00
}
Err(err) => {
2021-10-25 08:31:39 +02:00
let working_set = StateWorkingSet::new(&engine_state);
report_error(&working_set, &err);
2021-07-30 22:02:16 +02:00
std::process::exit(1);
}
}
2021-06-30 03:42:56 +02:00
Ok(())
} else {
use reedline::{FileBackedHistory, Reedline, Signal};
2021-09-10 00:09:40 +02:00
let completer = NuCompleter::new(engine_state.clone());
2021-09-22 05:14:57 +02:00
let mut entry_num = 0;
2021-09-09 11:06:55 +02:00
2021-10-02 15:10:28 +02:00
let default_prompt = DefaultPrompt::new(1);
let mut nu_prompt = NushellPrompt::new();
2021-10-25 08:31:39 +02:00
let mut stack = nu_protocol::engine::Stack::new();
2021-10-13 05:57:05 +02:00
// Load config startup file
if let Some(mut config_path) = nu_path::config_dir() {
config_path.push("nushell");
config_path.push("config.nu");
// FIXME: remove this message when we're ready
println!("Loading config from: {:?}", config_path);
if config_path.exists() {
let config_filename = config_path.to_string_lossy().to_owned();
if let Ok(contents) = std::fs::read_to_string(&config_path) {
2021-10-25 08:31:39 +02:00
eval_source(&mut engine_state, &mut stack, &contents, &config_filename);
2021-10-13 05:57:05 +02:00
}
}
}
loop {
2021-10-25 08:31:39 +02:00
let mut line_editor = Reedline::create()
.into_diagnostic()?
.with_history(Box::new(
FileBackedHistory::with_file(1000, "history.txt".into()).into_diagnostic()?,
))
.into_diagnostic()?
.with_highlighter(Box::new(NuHighlighter {
engine_state: engine_state.clone(),
}))
.with_completion_action_handler(Box::new(FuzzyCompletion {
completer: Box::new(completer.clone()),
}))
// .with_completion_action_handler(Box::new(
// ListCompletionHandler::default().with_completer(Box::new(completer)),
// ))
.with_validator(Box::new(NuValidator {
engine_state: engine_state.clone(),
}));
2021-10-02 15:10:28 +02:00
let prompt = update_prompt(
PROMPT_COMMAND,
2021-10-25 08:31:39 +02:00
&engine_state,
2021-10-02 15:10:28 +02:00
&stack,
&mut nu_prompt,
&default_prompt,
);
2021-09-22 05:14:57 +02:00
entry_num += 1;
2021-10-02 15:10:28 +02:00
let input = line_editor.read_line(prompt);
match input {
2021-08-09 07:29:25 +02:00
Ok(Signal::Success(s)) => {
if s.trim() == "exit" {
break;
2021-09-03 00:58:15 +02:00
} else if s.trim() == "vars" {
2021-10-25 08:31:39 +02:00
engine_state.print_vars();
2021-09-03 00:58:15 +02:00
continue;
} else if s.trim() == "decls" {
2021-10-25 08:31:39 +02:00
engine_state.print_decls();
2021-09-03 00:58:15 +02:00
continue;
} else if s.trim() == "blocks" {
2021-10-25 08:31:39 +02:00
engine_state.print_blocks();
2021-09-03 00:58:15 +02:00
continue;
} else if s.trim() == "stack" {
stack.print_stack();
continue;
2021-09-25 18:28:15 +02:00
} else if s.trim() == "contents" {
2021-10-25 08:31:39 +02:00
engine_state.print_contents();
2021-09-25 18:28:15 +02:00
continue;
}
2021-10-25 08:31:39 +02:00
let mut engine_state = engine_state.clone();
2021-10-13 05:57:05 +02:00
eval_source(
2021-10-25 08:31:39 +02:00
&mut engine_state,
&mut stack,
2021-10-13 05:57:05 +02:00
&s,
&format!("entry #{}", entry_num),
);
}
2021-08-09 07:29:25 +02:00
Ok(Signal::CtrlC) => {
println!("Ctrl-c");
}
2021-08-09 07:29:25 +02:00
Ok(Signal::CtrlD) => {
break;
}
2021-08-09 07:29:25 +02:00
Ok(Signal::CtrlL) => {
line_editor.clear_screen().into_diagnostic()?;
}
2021-08-09 07:29:25 +02:00
Err(err) => {
2021-09-07 09:41:52 +02:00
let message = err.to_string();
if !message.contains("duration") {
println!("Error: {:?}", err);
}
2021-08-09 07:29:25 +02:00
}
}
}
2021-06-30 03:42:56 +02:00
Ok(())
}
}
2021-09-25 17:58:50 +02:00
2021-10-25 08:31:39 +02:00
fn print_value(value: Value, engine_state: &EngineState) -> Result<(), ShellError> {
2021-09-25 17:58:50 +02:00
// If the table function is in the declarations, then we can use it
// to create the table value that will be printed in the terminal
let output = match engine_state.find_decl("table".as_bytes()) {
Some(decl_id) => {
2021-10-25 08:31:39 +02:00
let mut stack = Stack::new();
let table = engine_state.get_decl(decl_id).run(
engine_state,
&mut stack,
&Call::new(),
value.into_pipeline_data(),
)?;
table.collect_string()
2021-09-25 17:58:50 +02:00
}
None => value.into_string(),
};
let stdout = std::io::stdout();
match stdout.lock().write_all(output.as_bytes()) {
Ok(_) => (),
Err(err) => eprintln!("{}", err),
};
Ok(())
}
2021-10-02 15:10:28 +02:00
fn update_prompt<'prompt>(
env_variable: &str,
2021-10-25 08:31:39 +02:00
engine_state: &EngineState,
2021-10-02 15:10:28 +02:00
stack: &Stack,
nu_prompt: &'prompt mut NushellPrompt,
default_prompt: &'prompt DefaultPrompt,
) -> &'prompt dyn Prompt {
let prompt_command = match stack.get_env_var(env_variable) {
Some(prompt) => prompt,
None => return default_prompt as &dyn Prompt,
};
// Checking if the PROMPT_COMMAND is the same to avoid evaluating constantly
// the same command, thus saturating the contents in the EngineState
if !nu_prompt.is_new_prompt(prompt_command.as_str()) {
return nu_prompt as &dyn Prompt;
}
let (block, delta) = {
2021-10-25 08:31:39 +02:00
let mut working_set = StateWorkingSet::new(&engine_state);
2021-10-02 15:10:28 +02:00
let (output, err) = parse(&mut working_set, None, prompt_command.as_bytes(), false);
if let Some(err) = err {
report_error(&working_set, &err);
return default_prompt as &dyn Prompt;
}
(output, working_set.render())
};
2021-10-25 08:31:39 +02:00
let mut stack = stack.clone();
2021-10-02 15:10:28 +02:00
2021-10-25 08:31:39 +02:00
let evaluated_prompt = match eval_block(&engine_state, &mut stack, &block, PipelineData::new())
{
Ok(pipeline_data) => pipeline_data.collect_string(),
2021-10-02 15:10:28 +02:00
Err(err) => {
2021-10-25 08:31:39 +02:00
let working_set = StateWorkingSet::new(&engine_state);
2021-10-02 15:10:28 +02:00
report_error(&working_set, &err);
return default_prompt as &dyn Prompt;
}
};
nu_prompt.update_prompt(prompt_command, evaluated_prompt);
nu_prompt as &dyn Prompt
}
2021-10-13 05:57:05 +02:00
fn eval_source(
2021-10-25 08:31:39 +02:00
engine_state: &mut EngineState,
stack: &mut Stack,
2021-10-13 05:57:05 +02:00
source: &str,
fname: &str,
) -> bool {
let (block, delta) = {
2021-10-25 08:31:39 +02:00
let mut working_set = StateWorkingSet::new(&engine_state);
2021-10-13 05:57:05 +02:00
let (output, err) = parse(
&mut working_set,
Some(fname), // format!("entry #{}", entry_num)
source.as_bytes(),
false,
);
if let Some(err) = err {
report_error(&working_set, &err);
return false;
}
(output, working_set.render())
};
2021-10-25 08:31:39 +02:00
EngineState::merge_delta(engine_state, delta);
2021-10-13 05:57:05 +02:00
2021-10-25 08:31:39 +02:00
match eval_block(&engine_state, stack, &block, PipelineData::new()) {
Ok(pipeline_data) => {
if let Err(err) = print_value(pipeline_data.into_value(), &engine_state) {
let working_set = StateWorkingSet::new(&engine_state);
2021-10-13 05:57:05 +02:00
report_error(&working_set, &err);
return false;
}
}
Err(err) => {
2021-10-25 08:31:39 +02:00
let working_set = StateWorkingSet::new(&engine_state);
2021-10-13 05:57:05 +02:00
report_error(&working_set, &err);
return false;
}
}
true
}