2023-01-20 22:20:38 +01:00
|
|
|
mod command;
|
2022-01-18 09:48:28 +01:00
|
|
|
mod config_files;
|
2023-04-05 21:34:47 +02:00
|
|
|
mod ide;
|
2022-01-18 09:48:28 +01:00
|
|
|
mod logger;
|
2023-02-05 22:20:35 +01:00
|
|
|
mod run;
|
2023-01-20 19:44:49 +01:00
|
|
|
mod signals;
|
2023-01-20 22:20:38 +01:00
|
|
|
mod terminal;
|
2022-02-09 23:08:16 +01:00
|
|
|
mod test_bins;
|
2021-08-10 20:57:08 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
|
|
|
|
2023-01-20 22:20:38 +01:00
|
|
|
use crate::{
|
|
|
|
command::parse_commandline_args,
|
2023-02-05 22:20:35 +01:00
|
|
|
config_files::set_config_path,
|
2023-01-20 22:20:38 +01:00
|
|
|
logger::{configure, logger},
|
|
|
|
terminal::acquire_terminal,
|
|
|
|
};
|
2023-01-27 00:56:55 +01:00
|
|
|
use command::gather_commandline_args;
|
2023-01-24 21:28:59 +01:00
|
|
|
use log::Level;
|
2022-01-18 09:48:28 +01:00
|
|
|
use miette::Result;
|
2023-03-20 05:05:22 +01:00
|
|
|
use nu_cli::gather_parent_env_vars;
|
|
|
|
use nu_command::{create_default_context, get_init_cwd};
|
2023-04-12 19:36:29 +02:00
|
|
|
use nu_protocol::{report_error_new, Span, Value};
|
2023-01-20 22:20:38 +01:00
|
|
|
use nu_protocol::{util::BufferedReader, PipelineData, RawStream};
|
2023-01-24 21:28:59 +01:00
|
|
|
use nu_utils::utils::perf;
|
2023-02-05 22:20:35 +01:00
|
|
|
use run::{run_commands, run_file, run_repl};
|
2023-01-20 19:44:49 +01:00
|
|
|
use signals::{ctrlc_protection, sigquit_protection};
|
2022-01-26 15:42:39 +01:00
|
|
|
use std::{
|
2022-05-17 20:28:18 +02:00
|
|
|
io::BufReader,
|
2023-01-23 19:57:40 +01:00
|
|
|
str::FromStr,
|
2023-01-20 19:44:49 +01:00
|
|
|
sync::{atomic::AtomicBool, Arc},
|
2022-01-26 15:42:39 +01:00
|
|
|
};
|
2022-09-29 20:37:48 +02:00
|
|
|
|
2021-09-20 23:37:26 +02:00
|
|
|
fn main() -> Result<()> {
|
2023-01-24 21:28:59 +01:00
|
|
|
let entire_start_time = std::time::Instant::now();
|
|
|
|
let mut start_time = std::time::Instant::now();
|
2021-10-01 18:39:50 +02:00
|
|
|
let miette_hook = std::panic::take_hook();
|
|
|
|
std::panic::set_hook(Box::new(move |x| {
|
2021-12-04 13:38:21 +01:00
|
|
|
crossterm::terminal::disable_raw_mode().expect("unable to disable raw mode");
|
2021-10-01 18:39:50 +02:00
|
|
|
miette_hook(x);
|
|
|
|
}));
|
2021-09-21 21:37:16 +02:00
|
|
|
|
2022-01-04 23:30:34 +01:00
|
|
|
// Get initial current working directory.
|
2022-03-16 19:17:06 +01:00
|
|
|
let init_cwd = get_init_cwd();
|
2023-04-10 00:56:47 +02:00
|
|
|
let mut engine_state = nu_cli::add_cli_context(create_default_context());
|
2021-07-17 08:31:34 +02:00
|
|
|
|
2022-01-24 16:05:19 +01:00
|
|
|
// Custom additions
|
|
|
|
let delta = {
|
|
|
|
let mut working_set = nu_protocol::engine::StateWorkingSet::new(&engine_state);
|
|
|
|
working_set.add_decl(Box::new(nu_cli::NuHighlight));
|
2022-02-18 19:43:34 +01:00
|
|
|
working_set.add_decl(Box::new(nu_cli::Print));
|
2022-01-24 16:05:19 +01:00
|
|
|
working_set.render()
|
|
|
|
};
|
2022-07-14 16:09:27 +02:00
|
|
|
|
|
|
|
if let Err(err) = engine_state.merge_delta(delta) {
|
|
|
|
report_error_new(&engine_state, &err);
|
|
|
|
}
|
2022-01-24 16:05:19 +01:00
|
|
|
|
2021-10-28 06:13:10 +02:00
|
|
|
let ctrlc = Arc::new(AtomicBool::new(false));
|
2023-01-20 19:44:49 +01:00
|
|
|
// TODO: make this conditional in the future
|
|
|
|
ctrlc_protection(&mut engine_state, &ctrlc);
|
|
|
|
sigquit_protection(&mut engine_state);
|
2022-06-09 14:08:15 +02:00
|
|
|
|
2023-01-27 00:56:55 +01:00
|
|
|
let (args_to_nushell, script_name, args_to_script) = gather_commandline_args();
|
|
|
|
let parsed_nu_cli_args = parse_commandline_args(&args_to_nushell.join(" "), &mut engine_state)
|
2023-01-20 19:44:49 +01:00
|
|
|
.unwrap_or_else(|_| std::process::exit(1));
|
|
|
|
|
2023-03-09 03:59:33 +01:00
|
|
|
engine_state.is_interactive = parsed_nu_cli_args.interactive_shell.is_some();
|
|
|
|
engine_state.is_login = parsed_nu_cli_args.login_shell.is_some();
|
|
|
|
|
2023-02-02 00:03:05 +01:00
|
|
|
let use_color = engine_state.get_config().use_ansi_coloring;
|
2023-02-05 22:20:35 +01:00
|
|
|
if let Some(level) = parsed_nu_cli_args
|
|
|
|
.log_level
|
|
|
|
.as_ref()
|
|
|
|
.map(|level| level.item.clone())
|
|
|
|
{
|
2023-01-24 21:28:59 +01:00
|
|
|
let level = if Level::from_str(&level).is_ok() {
|
|
|
|
level
|
|
|
|
} else {
|
|
|
|
eprintln!(
|
|
|
|
"ERROR: log library did not recognize log level '{level}', using default 'info'"
|
|
|
|
);
|
|
|
|
"info".to_string()
|
|
|
|
};
|
|
|
|
let target = parsed_nu_cli_args
|
|
|
|
.log_target
|
2023-02-05 22:20:35 +01:00
|
|
|
.as_ref()
|
|
|
|
.map(|target| target.item.clone())
|
2023-01-24 21:28:59 +01:00
|
|
|
.unwrap_or_else(|| "stderr".to_string());
|
|
|
|
|
|
|
|
logger(|builder| configure(&level, &target, builder))?;
|
|
|
|
// info!("start logging {}:{}:{}", file!(), line!(), column!());
|
2023-02-02 00:03:05 +01:00
|
|
|
perf(
|
|
|
|
"start logging",
|
|
|
|
start_time,
|
|
|
|
file!(),
|
|
|
|
line!(),
|
|
|
|
column!(),
|
|
|
|
use_color,
|
|
|
|
);
|
2023-01-24 21:28:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
start_time = std::time::Instant::now();
|
2023-01-20 19:44:49 +01:00
|
|
|
set_config_path(
|
|
|
|
&mut engine_state,
|
|
|
|
&init_cwd,
|
|
|
|
"config.nu",
|
|
|
|
"config-path",
|
|
|
|
&parsed_nu_cli_args.config_file,
|
|
|
|
);
|
|
|
|
|
|
|
|
set_config_path(
|
|
|
|
&mut engine_state,
|
|
|
|
&init_cwd,
|
|
|
|
"env.nu",
|
|
|
|
"env-path",
|
|
|
|
&parsed_nu_cli_args.env_file,
|
|
|
|
);
|
2023-02-02 00:03:05 +01:00
|
|
|
perf(
|
|
|
|
"set_config_path",
|
|
|
|
start_time,
|
|
|
|
file!(),
|
|
|
|
line!(),
|
|
|
|
column!(),
|
|
|
|
use_color,
|
|
|
|
);
|
2023-01-20 19:44:49 +01:00
|
|
|
|
2023-01-24 21:28:59 +01:00
|
|
|
start_time = std::time::Instant::now();
|
2023-01-20 19:44:49 +01:00
|
|
|
// keep this condition in sync with the branches below
|
2023-03-09 03:59:33 +01:00
|
|
|
acquire_terminal(parsed_nu_cli_args.commands.is_none() && script_name.is_empty());
|
2023-02-02 00:03:05 +01:00
|
|
|
perf(
|
|
|
|
"acquire_terminal",
|
|
|
|
start_time,
|
|
|
|
file!(),
|
|
|
|
line!(),
|
|
|
|
column!(),
|
|
|
|
use_color,
|
|
|
|
);
|
2023-01-20 19:44:49 +01:00
|
|
|
|
2023-04-12 19:36:29 +02:00
|
|
|
if let Some(include_path) = &parsed_nu_cli_args.include_path {
|
|
|
|
engine_state.add_env_var(
|
|
|
|
"NU_LIB_DIRS".into(),
|
|
|
|
Value::List {
|
|
|
|
vals: vec![Value::test_string(&include_path.item)],
|
|
|
|
span: Span::test_data(),
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-04-05 21:34:47 +02:00
|
|
|
// IDE commands
|
|
|
|
if let Some(ide_goto_def) = parsed_nu_cli_args.ide_goto_def {
|
|
|
|
ide::goto_def(&mut engine_state, &script_name, &ide_goto_def);
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
} else if let Some(ide_hover) = parsed_nu_cli_args.ide_hover {
|
|
|
|
ide::hover(&mut engine_state, &script_name, &ide_hover);
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
} else if let Some(ide_complete) = parsed_nu_cli_args.ide_complete {
|
2023-04-12 19:36:29 +02:00
|
|
|
let cwd = std::env::current_dir().expect("Could not get current working directory.");
|
|
|
|
engine_state.add_env_var("PWD".into(), Value::test_string(cwd.to_string_lossy()));
|
|
|
|
|
2023-04-05 21:34:47 +02:00
|
|
|
ide::complete(Arc::new(engine_state), &script_name, &ide_complete);
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
} else if parsed_nu_cli_args.ide_check.is_some() {
|
|
|
|
ide::check(&mut engine_state, &script_name);
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2023-01-24 21:28:59 +01:00
|
|
|
start_time = std::time::Instant::now();
|
2023-01-20 19:44:49 +01:00
|
|
|
if let Some(testbin) = &parsed_nu_cli_args.testbin {
|
|
|
|
// Call out to the correct testbin
|
|
|
|
match testbin.item.as_str() {
|
|
|
|
"echo_env" => test_bins::echo_env(true),
|
|
|
|
"echo_env_stderr" => test_bins::echo_env(false),
|
|
|
|
"cococo" => test_bins::cococo(),
|
|
|
|
"meow" => test_bins::meow(),
|
|
|
|
"meowb" => test_bins::meowb(),
|
|
|
|
"relay" => test_bins::relay(),
|
|
|
|
"iecho" => test_bins::iecho(),
|
|
|
|
"fail" => test_bins::fail(),
|
|
|
|
"nonu" => test_bins::nonu(),
|
|
|
|
"chop" => test_bins::chop(),
|
|
|
|
"repeater" => test_bins::repeater(),
|
special-case ExternalStream in bytes starts-with (#8203)
# Description
`bytes starts-with` converts the input into a `Value` before running
.starts_with to find if the binary matches. This has two side effects:
it makes the code simpler, only dealing in whole values, and simplifying
a lot of input pipeline handling and value transforming it would
otherwise have to do. _Especially_ in the presence of a cell path to
drill into. It also makes buffers the entire input into memory, which
can take up a lot of memory when dealing with large files, especially if
you only want to check the first few bytes (like for a magic number).
This PR adds a special branch on PipelineData::ExternalStream with a
streaming version of starts_with.
# User-Facing Changes
Opening large files and running bytes starts-with on them will not take
a long time.
# Tests + Formatting
Don't forget to add tests that cover your changes.
Make sure you've run and fixed any issues with these commands:
- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect` to check that you're using the standard code
style
- `cargo test --workspace` to check that all tests pass
# Drawbacks
Streaming checking is more complicated, and there may be bugs. I tested
it with multiple chunks with string data and binary data and it seems to
work alright up to 8k and over bytes, though.
The existing `operate` method still exists because the way it handles
cell paths and values is complicated. This causes some "code
duplication", or at least some intent duplication, between the value
code and the streaming code. This might be worthwhile considering the
performance gains (approaching infinity on larger inputs).
Another thing to consider is that my ExternalStream branch considers
string data as valid input. The operate branch only parses Binary
values, so it would fail. `open` is kind of unpredictable on whether it
returns string data or binary data, even when passing `--raw`. I think
this can be a problem but not really one I'm trying to tackle in this
PR, so, it's worth considering.
2023-02-26 15:17:44 +01:00
|
|
|
"repeat_bytes" => test_bins::repeat_bytes(),
|
2023-01-20 19:44:49 +01:00
|
|
|
"nu_repl" => test_bins::nu_repl(),
|
2023-02-24 21:39:52 +01:00
|
|
|
"input_bytes_length" => test_bins::input_bytes_length(),
|
2023-01-20 19:44:49 +01:00
|
|
|
_ => std::process::exit(1),
|
|
|
|
}
|
|
|
|
std::process::exit(0)
|
|
|
|
}
|
2023-02-02 00:03:05 +01:00
|
|
|
perf(
|
|
|
|
"run test_bins",
|
|
|
|
start_time,
|
|
|
|
file!(),
|
|
|
|
line!(),
|
|
|
|
column!(),
|
|
|
|
use_color,
|
|
|
|
);
|
2023-01-24 21:28:59 +01:00
|
|
|
|
|
|
|
start_time = std::time::Instant::now();
|
2023-01-20 19:44:49 +01:00
|
|
|
let input = if let Some(redirect_stdin) = &parsed_nu_cli_args.redirect_stdin {
|
|
|
|
let stdin = std::io::stdin();
|
|
|
|
let buf_reader = BufReader::new(stdin);
|
|
|
|
|
|
|
|
PipelineData::ExternalStream {
|
|
|
|
stdout: Some(RawStream::new(
|
|
|
|
Box::new(BufferedReader::new(buf_reader)),
|
|
|
|
Some(ctrlc),
|
|
|
|
redirect_stdin.span,
|
|
|
|
None,
|
|
|
|
)),
|
|
|
|
stderr: None,
|
|
|
|
exit_code: None,
|
|
|
|
span: redirect_stdin.span,
|
|
|
|
metadata: None,
|
|
|
|
trim_end_newline: false,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
PipelineData::empty()
|
|
|
|
};
|
2023-02-02 00:03:05 +01:00
|
|
|
perf(
|
|
|
|
"redirect stdin",
|
|
|
|
start_time,
|
|
|
|
file!(),
|
|
|
|
line!(),
|
|
|
|
column!(),
|
|
|
|
use_color,
|
|
|
|
);
|
2022-10-21 17:20:21 +02:00
|
|
|
|
2023-01-24 21:28:59 +01:00
|
|
|
start_time = std::time::Instant::now();
|
2023-01-20 19:44:49 +01:00
|
|
|
// First, set up env vars as strings only
|
|
|
|
gather_parent_env_vars(&mut engine_state, &init_cwd);
|
2023-02-02 00:03:05 +01:00
|
|
|
perf(
|
|
|
|
"gather env vars",
|
|
|
|
start_time,
|
|
|
|
file!(),
|
|
|
|
line!(),
|
|
|
|
column!(),
|
|
|
|
use_color,
|
|
|
|
);
|
2022-02-09 23:08:16 +01:00
|
|
|
|
2023-02-05 22:20:35 +01:00
|
|
|
if let Some(commands) = parsed_nu_cli_args.commands.clone() {
|
|
|
|
run_commands(
|
2023-01-20 19:44:49 +01:00
|
|
|
&mut engine_state,
|
2023-02-05 22:20:35 +01:00
|
|
|
parsed_nu_cli_args,
|
2023-02-02 00:03:05 +01:00
|
|
|
use_color,
|
2023-02-05 22:20:35 +01:00
|
|
|
&commands,
|
2023-01-20 19:44:49 +01:00
|
|
|
input,
|
2023-03-24 16:41:33 +01:00
|
|
|
entire_start_time,
|
2023-02-05 22:20:35 +01:00
|
|
|
)
|
2023-03-09 03:59:33 +01:00
|
|
|
} else if !script_name.is_empty() {
|
2023-02-05 22:20:35 +01:00
|
|
|
run_file(
|
2023-01-20 19:44:49 +01:00
|
|
|
&mut engine_state,
|
2023-02-05 22:20:35 +01:00
|
|
|
parsed_nu_cli_args,
|
2023-02-02 00:03:05 +01:00
|
|
|
use_color,
|
2023-01-20 19:44:49 +01:00
|
|
|
script_name,
|
2023-02-05 22:20:35 +01:00
|
|
|
args_to_script,
|
2023-01-20 19:44:49 +01:00
|
|
|
input,
|
2023-02-05 22:20:35 +01:00
|
|
|
)
|
2023-01-20 19:44:49 +01:00
|
|
|
} else {
|
2023-03-09 03:59:33 +01:00
|
|
|
engine_state.is_interactive = true;
|
FEATURE: add the startup time to `$nu` (#8353)
# Description
in https://github.com/nushell/nushell/issues/8311 and the discord
server, the idea of moving the default banner from the `rust` source to
the `nushell` standar library has emerged :yum:
however, in order to do this, one need to have access to all the
variables used in the default banner => all of them are accessible
because known constants, except for the startup time of the shell, which
is not anywhere in the shell...
#### this PR adds exactly this, i.e. the new `startup_time` to the `$nu`
variable, which is computed to have the exact same value as the value
shown in the banner.
## the changes
in order to achieve this, i had to
- add `startup_time` as an `i64` to the `EngineState` => this is, to the
best of my knowledge, the easiest way to pass such an information around
down to where the banner startup time is computed and where the `$nu`
variable is evaluated
- add `startup-time` to the `$nu` variable and use the `EngineState`
getter for `startup_time` to show it as a `Value::Duration`
- pass `engine_state` as a `&mut`able argument from `main.rs` down to
`repl.rs` to allow the setter to change the value of `startup_time` =>
without this, the value would not change and would show `-1ns` as the
default value...
- the value of the startup time is computed in `evaluate_repl` in
`repl.rs`, only once at the beginning, and the same value is used in the
default banner :ok_hand:
# User-Facing Changes
one can now access to the same time as shown in the default banner with
```bash
$nu.startup-time
```
# Tests + Formatting
- :green_circle: `cargo fmt --all`
- :green_circle: `cargo clippy --workspace -- -D warnings -D
clippy::unwrap_used -A clippy::needless_collect`
- :green_circle: `cargo test --workspace`
# After Submitting
```
$nothing
```
2023-03-09 21:18:58 +01:00
|
|
|
run_repl(&mut engine_state, parsed_nu_cli_args, entire_start_time)
|
2022-01-26 15:42:39 +01:00
|
|
|
}
|
|
|
|
}
|