mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 08:23:24 +01:00
Error on non-zero exit statuses (#13515)
# Description This PR makes it so that non-zero exit codes and termination by signal are treated as a normal `ShellError`. Currently, these are silent errors. That is, if an external command fails, then it's code block is aborted, but the parent block can sometimes continue execution. E.g., see #8569 and this example: ```nushell [1 2] | each { ^false } ``` Before this would give: ``` ╭───┬──╮ │ 0 │ │ │ 1 │ │ ╰───┴──╯ ``` Now, this shows an error: ``` Error: nu:🐚:eval_block_with_input × Eval block failed with pipeline input ╭─[entry #1:1:2] 1 │ [1 2] | each { ^false } · ┬ · ╰── source value ╰──── Error: nu:🐚:non_zero_exit_code × External command had a non-zero exit code ╭─[entry #1:1:17] 1 │ [1 2] | each { ^false } · ──┬── · ╰── exited with code 1 ╰──── ``` This PR fixes #12874, fixes #5960, fixes #10856, and fixes #5347. This PR also partially addresses #10633 and #10624 (only the last command of a pipeline is currently checked). It looks like #8569 is already fixed, but this PR will make sure it is definitely fixed (fixes #8569). # User-Facing Changes - Non-zero exit codes and termination by signal now cause an error to be thrown. - The error record value passed to a `catch` block may now have an `exit_code` column containing the integer exit code if the error was due to an external command. - Adds new config values, `display_errors.exit_code` and `display_errors.termination_signal`, which determine whether an error message should be printed in the respective error cases. For non-interactive sessions, these are set to `true`, and for interactive sessions `display_errors.exit_code` is false (via the default config). # Tests Added a few tests. # After Submitting - Update docs and book. - Future work: - Error if other external commands besides the last in a pipeline exit with a non-zero exit code. Then, deprecate `do -c` since this will be the default behavior everywhere. - Add a better mechanism for exit codes and deprecate `$env.LAST_EXIT_CODE` (it's buggy).
This commit is contained in:
parent
6c1c7f9509
commit
3d008e2c4e
@ -2,10 +2,10 @@ use crate::util::eval_source;
|
|||||||
#[cfg(feature = "plugin")]
|
#[cfg(feature = "plugin")]
|
||||||
use nu_path::canonicalize_with;
|
use nu_path::canonicalize_with;
|
||||||
#[cfg(feature = "plugin")]
|
#[cfg(feature = "plugin")]
|
||||||
use nu_protocol::{engine::StateWorkingSet, report_error, ParseError, PluginRegistryFile, Spanned};
|
use nu_protocol::{engine::StateWorkingSet, ParseError, PluginRegistryFile, Spanned};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{EngineState, Stack},
|
engine::{EngineState, Stack},
|
||||||
report_error_new, HistoryFileFormat, PipelineData,
|
report_shell_error, HistoryFileFormat, PipelineData,
|
||||||
};
|
};
|
||||||
#[cfg(feature = "plugin")]
|
#[cfg(feature = "plugin")]
|
||||||
use nu_utils::perf;
|
use nu_utils::perf;
|
||||||
@ -36,7 +36,7 @@ pub fn read_plugin_file(
|
|||||||
.and_then(|p| Path::new(&p.item).extension())
|
.and_then(|p| Path::new(&p.item).extension())
|
||||||
.is_some_and(|ext| ext == "nu")
|
.is_some_and(|ext| ext == "nu")
|
||||||
{
|
{
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: "Wrong plugin file format".into(),
|
error: "Wrong plugin file format".into(),
|
||||||
@ -81,7 +81,7 @@ pub fn read_plugin_file(
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: format!(
|
error: format!(
|
||||||
@ -113,7 +113,7 @@ pub fn read_plugin_file(
|
|||||||
Ok(contents) => contents,
|
Ok(contents) => contents,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
log::warn!("Failed to read plugin registry file: {err:?}");
|
log::warn!("Failed to read plugin registry file: {err:?}");
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: format!(
|
error: format!(
|
||||||
@ -146,7 +146,7 @@ pub fn read_plugin_file(
|
|||||||
nu_plugin_engine::load_plugin_file(&mut working_set, &contents, span);
|
nu_plugin_engine::load_plugin_file(&mut working_set, &contents, span);
|
||||||
|
|
||||||
if let Err(err) = engine_state.merge_delta(working_set.render()) {
|
if let Err(err) = engine_state.merge_delta(working_set.render()) {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,7 +166,7 @@ pub fn add_plugin_file(
|
|||||||
) {
|
) {
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
let working_set = StateWorkingSet::new(engine_state);
|
use nu_protocol::report_parse_error;
|
||||||
|
|
||||||
if let Ok(cwd) = engine_state.cwd_as_string(None) {
|
if let Ok(cwd) = engine_state.cwd_as_string(None) {
|
||||||
if let Some(plugin_file) = plugin_file {
|
if let Some(plugin_file) = plugin_file {
|
||||||
@ -181,8 +181,8 @@ pub fn add_plugin_file(
|
|||||||
engine_state.plugin_path = Some(path)
|
engine_state.plugin_path = Some(path)
|
||||||
} else {
|
} else {
|
||||||
// It's an error if the directory for the plugin file doesn't exist.
|
// It's an error if the directory for the plugin file doesn't exist.
|
||||||
report_error(
|
report_parse_error(
|
||||||
&working_set,
|
&StateWorkingSet::new(engine_state),
|
||||||
&ParseError::FileNotFound(
|
&ParseError::FileNotFound(
|
||||||
path_dir.to_string_lossy().into_owned(),
|
path_dir.to_string_lossy().into_owned(),
|
||||||
plugin_file.span,
|
plugin_file.span,
|
||||||
@ -214,7 +214,8 @@ pub fn eval_config_contents(
|
|||||||
let prev_file = engine_state.file.take();
|
let prev_file = engine_state.file.take();
|
||||||
engine_state.file = Some(config_path.clone());
|
engine_state.file = Some(config_path.clone());
|
||||||
|
|
||||||
eval_source(
|
// TODO: ignore this error?
|
||||||
|
let _ = eval_source(
|
||||||
engine_state,
|
engine_state,
|
||||||
stack,
|
stack,
|
||||||
&contents,
|
&contents,
|
||||||
@ -230,11 +231,11 @@ pub fn eval_config_contents(
|
|||||||
match engine_state.cwd(Some(stack)) {
|
match engine_state.cwd(Some(stack)) {
|
||||||
Ok(cwd) => {
|
Ok(cwd) => {
|
||||||
if let Err(e) = engine_state.merge_env(stack, cwd) {
|
if let Err(e) = engine_state.merge_env(stack, cwd) {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -280,7 +281,7 @@ pub fn migrate_old_plugin_file(engine_state: &EngineState, storage_path: &str) -
|
|||||||
let old_contents = match std::fs::read(&old_plugin_file_path) {
|
let old_contents = match std::fs::read(&old_plugin_file_path) {
|
||||||
Ok(old_contents) => old_contents,
|
Ok(old_contents) => old_contents,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: "Can't read old plugin file to migrate".into(),
|
error: "Can't read old plugin file to migrate".into(),
|
||||||
@ -349,7 +350,7 @@ pub fn migrate_old_plugin_file(engine_state: &EngineState, storage_path: &str) -
|
|||||||
.map_err(|e| e.into())
|
.map_err(|e| e.into())
|
||||||
.and_then(|file| contents.write_to(file, None))
|
.and_then(|file| contents.write_to(file, None))
|
||||||
{
|
{
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
&engine_state,
|
&engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: "Failed to save migrated plugin file".into(),
|
error: "Failed to save migrated plugin file".into(),
|
||||||
|
@ -2,9 +2,10 @@ use log::info;
|
|||||||
use nu_engine::{convert_env_values, eval_block};
|
use nu_engine::{convert_env_values, eval_block};
|
||||||
use nu_parser::parse;
|
use nu_parser::parse;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
|
cli_error::report_compile_error,
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error, PipelineData, ShellError, Spanned, Value,
|
report_parse_error, report_parse_warning, PipelineData, ShellError, Spanned, Value,
|
||||||
};
|
};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
@ -61,16 +62,16 @@ pub fn evaluate_commands(
|
|||||||
|
|
||||||
let output = parse(&mut working_set, None, commands.item.as_bytes(), false);
|
let output = parse(&mut working_set, None, commands.item.as_bytes(), false);
|
||||||
if let Some(warning) = working_set.parse_warnings.first() {
|
if let Some(warning) = working_set.parse_warnings.first() {
|
||||||
report_error(&working_set, warning);
|
report_parse_warning(&working_set, warning);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(err) = working_set.compile_errors.first() {
|
if let Some(err) = working_set.compile_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_compile_error(&working_set, err);
|
||||||
// Not a fatal error, for now
|
// Not a fatal error, for now
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,11 +93,7 @@ pub fn evaluate_commands(
|
|||||||
t_mode.coerce_str()?.parse().unwrap_or_default();
|
t_mode.coerce_str()?.parse().unwrap_or_default();
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(status) = pipeline.print(engine_state, stack, no_newline, false)? {
|
pipeline.print(engine_state, stack, no_newline, false)?;
|
||||||
if status.code() != 0 {
|
|
||||||
std::process::exit(status.code())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
info!("evaluate {}:{}:{}", file!(), line!(), column!());
|
info!("evaluate {}:{}:{}", file!(), line!(), column!());
|
||||||
|
|
||||||
|
@ -4,9 +4,10 @@ use nu_engine::{convert_env_values, eval_block};
|
|||||||
use nu_parser::parse;
|
use nu_parser::parse;
|
||||||
use nu_path::canonicalize_with;
|
use nu_path::canonicalize_with;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
|
cli_error::report_compile_error,
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error, PipelineData, ShellError, Span, Value,
|
report_parse_error, report_parse_warning, PipelineData, ShellError, Span, Value,
|
||||||
};
|
};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
@ -77,17 +78,17 @@ pub fn evaluate_file(
|
|||||||
let block = parse(&mut working_set, Some(file_path_str), &file, false);
|
let block = parse(&mut working_set, Some(file_path_str), &file, false);
|
||||||
|
|
||||||
if let Some(warning) = working_set.parse_warnings.first() {
|
if let Some(warning) = working_set.parse_warnings.first() {
|
||||||
report_error(&working_set, warning);
|
report_parse_warning(&working_set, warning);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If any parse errors were found, report the first error and exit.
|
// If any parse errors were found, report the first error and exit.
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(err) = working_set.compile_errors.first() {
|
if let Some(err) = working_set.compile_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_compile_error(&working_set, err);
|
||||||
// Not a fatal error, for now
|
// Not a fatal error, for now
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,11 +119,7 @@ pub fn evaluate_file(
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Print the pipeline output of the last command of the file.
|
// Print the pipeline output of the last command of the file.
|
||||||
if let Some(status) = pipeline.print(engine_state, stack, true, false)? {
|
pipeline.print(engine_state, stack, true, false)?;
|
||||||
if status.code() != 0 {
|
|
||||||
std::process::exit(status.code())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Invoke the main command with arguments.
|
// Invoke the main command with arguments.
|
||||||
// Arguments with whitespaces are quoted, thus can be safely concatenated by whitespace.
|
// Arguments with whitespaces are quoted, thus can be safely concatenated by whitespace.
|
||||||
@ -140,7 +137,7 @@ pub fn evaluate_file(
|
|||||||
};
|
};
|
||||||
|
|
||||||
if exit_code != 0 {
|
if exit_code != 0 {
|
||||||
std::process::exit(exit_code)
|
std::process::exit(exit_code);
|
||||||
}
|
}
|
||||||
|
|
||||||
info!("evaluate {}:{}:{}", file!(), line!(), column!());
|
info!("evaluate {}:{}:{}", file!(), line!(), column!());
|
||||||
|
@ -3,7 +3,7 @@ use log::trace;
|
|||||||
use nu_engine::ClosureEvalOnce;
|
use nu_engine::ClosureEvalOnce;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{EngineState, Stack},
|
engine::{EngineState, Stack},
|
||||||
report_error_new, Config, PipelineData, Value,
|
report_shell_error, Config, PipelineData, Value,
|
||||||
};
|
};
|
||||||
use reedline::Prompt;
|
use reedline::Prompt;
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ fn get_prompt_string(
|
|||||||
|
|
||||||
result
|
result
|
||||||
.map_err(|err| {
|
.map_err(|err| {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
})
|
})
|
||||||
.ok()
|
.ok()
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ use nu_parser::{lex, parse, trim_quotes_str};
|
|||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
config::NuCursorShape,
|
config::NuCursorShape,
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error_new, HistoryConfig, HistoryFileFormat, PipelineData, ShellError, Span, Spanned,
|
report_shell_error, HistoryConfig, HistoryFileFormat, PipelineData, ShellError, Span, Spanned,
|
||||||
Value,
|
Value,
|
||||||
};
|
};
|
||||||
use nu_utils::{
|
use nu_utils::{
|
||||||
@ -88,7 +88,7 @@ pub fn evaluate_repl(
|
|||||||
let start_time = std::time::Instant::now();
|
let start_time = std::time::Instant::now();
|
||||||
// Translate environment variables from Strings to Values
|
// Translate environment variables from Strings to Values
|
||||||
if let Err(e) = convert_env_values(engine_state, &unique_stack) {
|
if let Err(e) = convert_env_values(engine_state, &unique_stack) {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
perf!("translate env vars", start_time, use_color);
|
perf!("translate env vars", start_time, use_color);
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ pub fn evaluate_repl(
|
|||||||
Value::string("0823", Span::unknown()),
|
Value::string("0823", Span::unknown()),
|
||||||
);
|
);
|
||||||
|
|
||||||
unique_stack.add_env_var("LAST_EXIT_CODE".into(), Value::int(0, Span::unknown()));
|
unique_stack.set_last_exit_code(0, Span::unknown());
|
||||||
|
|
||||||
let mut line_editor = get_line_editor(engine_state, nushell_path, use_color)?;
|
let mut line_editor = get_line_editor(engine_state, nushell_path, use_color)?;
|
||||||
let temp_file = temp_dir().join(format!("{}.nu", uuid::Uuid::new_v4()));
|
let temp_file = temp_dir().join(format!("{}.nu", uuid::Uuid::new_v4()));
|
||||||
@ -286,7 +286,7 @@ fn loop_iteration(ctx: LoopContext) -> (bool, Stack, Reedline) {
|
|||||||
// Before doing anything, merge the environment from the previous REPL iteration into the
|
// Before doing anything, merge the environment from the previous REPL iteration into the
|
||||||
// permanent state.
|
// permanent state.
|
||||||
if let Err(err) = engine_state.merge_env(&mut stack, cwd) {
|
if let Err(err) = engine_state.merge_env(&mut stack, cwd) {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
}
|
}
|
||||||
// Check whether $env.NU_USE_IR is set, so that the user can change it in the REPL
|
// Check whether $env.NU_USE_IR is set, so that the user can change it in the REPL
|
||||||
// Temporary while IR eval is optional
|
// Temporary while IR eval is optional
|
||||||
@ -302,7 +302,7 @@ fn loop_iteration(ctx: LoopContext) -> (bool, Stack, Reedline) {
|
|||||||
// fire the "pre_prompt" hook
|
// fire the "pre_prompt" hook
|
||||||
if let Some(hook) = engine_state.get_config().hooks.pre_prompt.clone() {
|
if let Some(hook) = engine_state.get_config().hooks.pre_prompt.clone() {
|
||||||
if let Err(err) = eval_hook(engine_state, &mut stack, None, vec![], &hook, "pre_prompt") {
|
if let Err(err) = eval_hook(engine_state, &mut stack, None, vec![], &hook, "pre_prompt") {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
perf!("pre-prompt hook", start_time, use_color);
|
perf!("pre-prompt hook", start_time, use_color);
|
||||||
@ -312,7 +312,7 @@ fn loop_iteration(ctx: LoopContext) -> (bool, Stack, Reedline) {
|
|||||||
// fire the "env_change" hook
|
// fire the "env_change" hook
|
||||||
let env_change = engine_state.get_config().hooks.env_change.clone();
|
let env_change = engine_state.get_config().hooks.env_change.clone();
|
||||||
if let Err(error) = hook::eval_env_change_hook(env_change, engine_state, &mut stack) {
|
if let Err(error) = hook::eval_env_change_hook(env_change, engine_state, &mut stack) {
|
||||||
report_error_new(engine_state, &error)
|
report_shell_error(engine_state, &error)
|
||||||
}
|
}
|
||||||
perf!("env-change hook", start_time, use_color);
|
perf!("env-change hook", start_time, use_color);
|
||||||
|
|
||||||
@ -386,7 +386,7 @@ fn loop_iteration(ctx: LoopContext) -> (bool, Stack, Reedline) {
|
|||||||
trace!("adding menus");
|
trace!("adding menus");
|
||||||
line_editor =
|
line_editor =
|
||||||
add_menus(line_editor, engine_reference, &stack_arc, config).unwrap_or_else(|e| {
|
add_menus(line_editor, engine_reference, &stack_arc, config).unwrap_or_else(|e| {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
Reedline::create()
|
Reedline::create()
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -506,7 +506,7 @@ fn loop_iteration(ctx: LoopContext) -> (bool, Stack, Reedline) {
|
|||||||
&hook,
|
&hook,
|
||||||
"pre_execution",
|
"pre_execution",
|
||||||
) {
|
) {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -808,7 +808,7 @@ fn do_auto_cd(
|
|||||||
) {
|
) {
|
||||||
let path = {
|
let path = {
|
||||||
if !path.exists() {
|
if !path.exists() {
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::DirectoryNotFound {
|
&ShellError::DirectoryNotFound {
|
||||||
dir: path.to_string_lossy().to_string(),
|
dir: path.to_string_lossy().to_string(),
|
||||||
@ -820,7 +820,7 @@ fn do_auto_cd(
|
|||||||
};
|
};
|
||||||
|
|
||||||
if let PermissionResult::PermissionDenied(reason) = have_permission(path.clone()) {
|
if let PermissionResult::PermissionDenied(reason) = have_permission(path.clone()) {
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::IOError {
|
&ShellError::IOError {
|
||||||
msg: format!("Cannot change directory to {path}: {reason}"),
|
msg: format!("Cannot change directory to {path}: {reason}"),
|
||||||
@ -834,7 +834,7 @@ fn do_auto_cd(
|
|||||||
//FIXME: this only changes the current scope, but instead this environment variable
|
//FIXME: this only changes the current scope, but instead this environment variable
|
||||||
//should probably be a block that loads the information from the state in the overlay
|
//should probably be a block that loads the information from the state in the overlay
|
||||||
if let Err(err) = stack.set_cwd(&path) {
|
if let Err(err) = stack.set_cwd(&path) {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
let cwd = Value::string(cwd, span);
|
let cwd = Value::string(cwd, span);
|
||||||
@ -867,7 +867,7 @@ fn do_auto_cd(
|
|||||||
"NUSHELL_LAST_SHELL".into(),
|
"NUSHELL_LAST_SHELL".into(),
|
||||||
Value::int(last_shell as i64, span),
|
Value::int(last_shell as i64, span),
|
||||||
);
|
);
|
||||||
stack.add_env_var("LAST_EXIT_CODE".into(), Value::int(0, Span::unknown()));
|
stack.set_last_exit_code(0, Span::unknown());
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -1141,7 +1141,7 @@ fn setup_keybindings(engine_state: &EngineState, line_editor: Reedline) -> Reedl
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
line_editor
|
line_editor
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2,9 +2,11 @@ use nu_cmd_base::hook::eval_hook;
|
|||||||
use nu_engine::{eval_block, eval_block_with_early_return};
|
use nu_engine::{eval_block, eval_block_with_early_return};
|
||||||
use nu_parser::{escape_quote_string, lex, parse, unescape_unquote_string, Token, TokenContents};
|
use nu_parser::{escape_quote_string, lex, parse, unescape_unquote_string, Token, TokenContents};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
|
cli_error::report_compile_error,
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error, report_error_new, PipelineData, ShellError, Span, Value,
|
report_parse_error, report_parse_warning, report_shell_error, PipelineData, ShellError, Span,
|
||||||
|
Value,
|
||||||
};
|
};
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use nu_utils::enable_vt_processing;
|
use nu_utils::enable_vt_processing;
|
||||||
@ -39,7 +41,7 @@ fn gather_env_vars(
|
|||||||
init_cwd: &Path,
|
init_cwd: &Path,
|
||||||
) {
|
) {
|
||||||
fn report_capture_error(engine_state: &EngineState, env_str: &str, msg: &str) {
|
fn report_capture_error(engine_state: &EngineState, env_str: &str, msg: &str) {
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: format!("Environment variable was not captured: {env_str}"),
|
error: format!("Environment variable was not captured: {env_str}"),
|
||||||
@ -70,7 +72,7 @@ fn gather_env_vars(
|
|||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
// Could not capture current working directory
|
// Could not capture current working directory
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: "Current directory is not a valid utf-8 path".into(),
|
error: "Current directory is not a valid utf-8 path".into(),
|
||||||
@ -210,18 +212,19 @@ pub fn eval_source(
|
|||||||
let start_time = std::time::Instant::now();
|
let start_time = std::time::Instant::now();
|
||||||
|
|
||||||
let exit_code = match evaluate_source(engine_state, stack, source, fname, input, allow_return) {
|
let exit_code = match evaluate_source(engine_state, stack, source, fname, input, allow_return) {
|
||||||
Ok(code) => code.unwrap_or(0),
|
Ok(failed) => {
|
||||||
|
let code = failed.into();
|
||||||
|
stack.set_last_exit_code(code, Span::unknown());
|
||||||
|
code
|
||||||
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
1
|
let code = err.exit_code();
|
||||||
|
stack.set_last_error(&err);
|
||||||
|
code
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
stack.add_env_var(
|
|
||||||
"LAST_EXIT_CODE".to_string(),
|
|
||||||
Value::int(exit_code.into(), Span::unknown()),
|
|
||||||
);
|
|
||||||
|
|
||||||
// reset vt processing, aka ansi because illbehaved externals can break it
|
// reset vt processing, aka ansi because illbehaved externals can break it
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
{
|
{
|
||||||
@ -244,7 +247,7 @@ fn evaluate_source(
|
|||||||
fname: &str,
|
fname: &str,
|
||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
allow_return: bool,
|
allow_return: bool,
|
||||||
) -> Result<Option<i32>, ShellError> {
|
) -> Result<bool, ShellError> {
|
||||||
let (block, delta) = {
|
let (block, delta) = {
|
||||||
let mut working_set = StateWorkingSet::new(engine_state);
|
let mut working_set = StateWorkingSet::new(engine_state);
|
||||||
let output = parse(
|
let output = parse(
|
||||||
@ -254,16 +257,16 @@ fn evaluate_source(
|
|||||||
false,
|
false,
|
||||||
);
|
);
|
||||||
if let Some(warning) = working_set.parse_warnings.first() {
|
if let Some(warning) = working_set.parse_warnings.first() {
|
||||||
report_error(&working_set, warning);
|
report_parse_warning(&working_set, warning);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
return Ok(Some(1));
|
return Ok(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(err) = working_set.compile_errors.first() {
|
if let Some(err) = working_set.compile_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_compile_error(&working_set, err);
|
||||||
// Not a fatal error, for now
|
// Not a fatal error, for now
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -278,10 +281,9 @@ fn evaluate_source(
|
|||||||
eval_block::<WithoutDebug>(engine_state, stack, &block, input)
|
eval_block::<WithoutDebug>(engine_state, stack, &block, input)
|
||||||
}?;
|
}?;
|
||||||
|
|
||||||
let status = if let PipelineData::ByteStream(..) = pipeline {
|
if let PipelineData::ByteStream(..) = pipeline {
|
||||||
pipeline.print(engine_state, stack, false, false)?
|
pipeline.print(engine_state, stack, false, false)
|
||||||
} else {
|
} else if let Some(hook) = engine_state.get_config().hooks.display_output.clone() {
|
||||||
if let Some(hook) = engine_state.get_config().hooks.display_output.clone() {
|
|
||||||
let pipeline = eval_hook(
|
let pipeline = eval_hook(
|
||||||
engine_state,
|
engine_state,
|
||||||
stack,
|
stack,
|
||||||
@ -293,10 +295,9 @@ fn evaluate_source(
|
|||||||
pipeline.print(engine_state, stack, false, false)
|
pipeline.print(engine_state, stack, false, false)
|
||||||
} else {
|
} else {
|
||||||
pipeline.print(engine_state, stack, true, false)
|
pipeline.print(engine_state, stack, true, false)
|
||||||
}?
|
}?;
|
||||||
};
|
|
||||||
|
|
||||||
Ok(status.map(|status| status.code()))
|
Ok(false)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
@ -3,7 +3,7 @@ use miette::Result;
|
|||||||
use nu_engine::{eval_block, eval_block_with_early_return};
|
use nu_engine::{eval_block, eval_block_with_early_return};
|
||||||
use nu_parser::parse;
|
use nu_parser::parse;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
cli_error::{report_error, report_error_new},
|
cli_error::{report_parse_error, report_shell_error},
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{Closure, EngineState, Stack, StateWorkingSet},
|
engine::{Closure, EngineState, Stack, StateWorkingSet},
|
||||||
PipelineData, PositionalArg, ShellError, Span, Type, Value, VarId,
|
PipelineData, PositionalArg, ShellError, Span, Type, Value, VarId,
|
||||||
@ -91,7 +91,7 @@ pub fn eval_hook(
|
|||||||
false,
|
false,
|
||||||
);
|
);
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
|
|
||||||
return Err(ShellError::UnsupportedConfigValue {
|
return Err(ShellError::UnsupportedConfigValue {
|
||||||
expected: "valid source code".into(),
|
expected: "valid source code".into(),
|
||||||
@ -123,7 +123,7 @@ pub fn eval_hook(
|
|||||||
output = pipeline_data;
|
output = pipeline_data;
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -223,7 +223,7 @@ pub fn eval_hook(
|
|||||||
false,
|
false,
|
||||||
);
|
);
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
|
|
||||||
return Err(ShellError::UnsupportedConfigValue {
|
return Err(ShellError::UnsupportedConfigValue {
|
||||||
expected: "valid source code".into(),
|
expected: "valid source code".into(),
|
||||||
@ -251,7 +251,7 @@ pub fn eval_hook(
|
|||||||
output = pipeline_data;
|
output = pipeline_data;
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use nu_engine::{command_prelude::*, get_eval_block_with_early_return, redirect_env};
|
use nu_engine::{command_prelude::*, get_eval_block_with_early_return, redirect_env};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::Closure,
|
engine::Closure,
|
||||||
process::{ChildPipe, ChildProcess, ExitStatus},
|
process::{ChildPipe, ChildProcess},
|
||||||
ByteStream, ByteStreamSource, OutDest,
|
ByteStream, ByteStreamSource, OutDest,
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
@ -147,13 +147,7 @@ impl Command for Do {
|
|||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
if child.wait()? != ExitStatus::Exited(0) {
|
child.wait()?;
|
||||||
return Err(ShellError::ExternalCommand {
|
|
||||||
label: "External command failed".to_string(),
|
|
||||||
help: stderr_msg,
|
|
||||||
span,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut child = ChildProcess::from_raw(None, None, None, span);
|
let mut child = ChildProcess::from_raw(None, None, None, span);
|
||||||
if let Some(stdout) = stdout {
|
if let Some(stdout) = stdout {
|
||||||
|
@ -93,25 +93,10 @@ impl Command for For {
|
|||||||
stack.add_var(var_id, x);
|
stack.add_var(var_id, x);
|
||||||
|
|
||||||
match eval_block(&engine_state, stack, block, PipelineData::empty()) {
|
match eval_block(&engine_state, stack, block, PipelineData::empty()) {
|
||||||
Err(ShellError::Break { .. }) => {
|
Err(ShellError::Break { .. }) => break,
|
||||||
break;
|
Err(ShellError::Continue { .. }) => continue,
|
||||||
}
|
Err(err) => return Err(err),
|
||||||
Err(ShellError::Continue { .. }) => {
|
Ok(data) => data.drain()?,
|
||||||
continue;
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
Ok(data) => {
|
|
||||||
if let Some(status) = data.drain()? {
|
|
||||||
let code = status.code();
|
|
||||||
if code != 0 {
|
|
||||||
return Ok(
|
|
||||||
PipelineData::new_external_stream_with_only_exit_code(code),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -121,25 +106,10 @@ impl Command for For {
|
|||||||
stack.add_var(var_id, x);
|
stack.add_var(var_id, x);
|
||||||
|
|
||||||
match eval_block(&engine_state, stack, block, PipelineData::empty()) {
|
match eval_block(&engine_state, stack, block, PipelineData::empty()) {
|
||||||
Err(ShellError::Break { .. }) => {
|
Err(ShellError::Break { .. }) => break,
|
||||||
break;
|
Err(ShellError::Continue { .. }) => continue,
|
||||||
}
|
Err(err) => return Err(err),
|
||||||
Err(ShellError::Continue { .. }) => {
|
Ok(data) => data.drain()?,
|
||||||
continue;
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
Ok(data) => {
|
|
||||||
if let Some(status) = data.drain()? {
|
|
||||||
let code = status.code();
|
|
||||||
if code != 0 {
|
|
||||||
return Ok(
|
|
||||||
PipelineData::new_external_stream_with_only_exit_code(code),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -127,10 +127,9 @@ impl Command for If {
|
|||||||
eval_block(engine_state, stack, block, input)
|
eval_block(engine_state, stack, block, input)
|
||||||
} else {
|
} else {
|
||||||
eval_expression_with_input(engine_state, stack, else_expr, input)
|
eval_expression_with_input(engine_state, stack, else_expr, input)
|
||||||
.map(|res| res.0)
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
eval_expression_with_input(engine_state, stack, else_case, input).map(|res| res.0)
|
eval_expression_with_input(engine_state, stack, else_case, input)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Ok(PipelineData::empty())
|
Ok(PipelineData::empty())
|
||||||
|
@ -56,23 +56,10 @@ impl Command for Loop {
|
|||||||
engine_state.signals().check(head)?;
|
engine_state.signals().check(head)?;
|
||||||
|
|
||||||
match eval_block(engine_state, stack, block, PipelineData::empty()) {
|
match eval_block(engine_state, stack, block, PipelineData::empty()) {
|
||||||
Err(ShellError::Break { .. }) => {
|
Err(ShellError::Break { .. }) => break,
|
||||||
break;
|
Err(ShellError::Continue { .. }) => continue,
|
||||||
}
|
Err(err) => return Err(err),
|
||||||
Err(ShellError::Continue { .. }) => {
|
Ok(data) => data.drain()?,
|
||||||
continue;
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
Ok(data) => {
|
|
||||||
if let Some(status) = data.drain()? {
|
|
||||||
let code = status.code();
|
|
||||||
if code != 0 {
|
|
||||||
return Ok(PipelineData::new_external_stream_with_only_exit_code(code));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(PipelineData::empty())
|
Ok(PipelineData::empty())
|
||||||
|
@ -81,7 +81,7 @@ impl Command for Match {
|
|||||||
let block = engine_state.get_block(block_id);
|
let block = engine_state.get_block(block_id);
|
||||||
eval_block(engine_state, stack, block, input)
|
eval_block(engine_state, stack, block, input)
|
||||||
} else {
|
} else {
|
||||||
eval_expression_with_input(engine_state, stack, expr, input).map(|x| x.0)
|
eval_expression_with_input(engine_state, stack, expr, input)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -47,6 +47,7 @@ impl Command for Try {
|
|||||||
call: &Call,
|
call: &Call,
|
||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
|
let head = call.head;
|
||||||
// This is compiled specially by the IR compiler. The code here is never used when
|
// This is compiled specially by the IR compiler. The code here is never used when
|
||||||
// running in IR mode.
|
// running in IR mode.
|
||||||
let call = call.assert_ast_call()?;
|
let call = call.assert_ast_call()?;
|
||||||
@ -61,30 +62,15 @@ impl Command for Try {
|
|||||||
let try_block = engine_state.get_block(try_block);
|
let try_block = engine_state.get_block(try_block);
|
||||||
let eval_block = get_eval_block(engine_state);
|
let eval_block = get_eval_block(engine_state);
|
||||||
|
|
||||||
match eval_block(engine_state, stack, try_block, input) {
|
let result = eval_block(engine_state, stack, try_block, input)
|
||||||
Err(error) => {
|
.and_then(|pipeline| pipeline.write_to_out_dests(engine_state, stack));
|
||||||
let error = intercept_block_control(error)?;
|
|
||||||
let err_record = err_to_record(error, call.head);
|
match result {
|
||||||
handle_catch(err_record, catch_block, engine_state, stack, eval_block)
|
Err(err) => run_catch(err, head, catch_block, engine_state, stack, eval_block),
|
||||||
}
|
|
||||||
Ok(PipelineData::Value(Value::Error { error, .. }, ..)) => {
|
Ok(PipelineData::Value(Value::Error { error, .. }, ..)) => {
|
||||||
let error = intercept_block_control(*error)?;
|
run_catch(*error, head, catch_block, engine_state, stack, eval_block)
|
||||||
let err_record = err_to_record(error, call.head);
|
|
||||||
handle_catch(err_record, catch_block, engine_state, stack, eval_block)
|
|
||||||
}
|
|
||||||
// external command may fail to run
|
|
||||||
Ok(pipeline) => {
|
|
||||||
let (pipeline, external_failed) = pipeline.check_external_failed()?;
|
|
||||||
if external_failed {
|
|
||||||
let status = pipeline.drain()?;
|
|
||||||
let code = status.map(|status| status.code()).unwrap_or(0);
|
|
||||||
stack.add_env_var("LAST_EXIT_CODE".into(), Value::int(code.into(), call.head));
|
|
||||||
let err_value = Value::nothing(call.head);
|
|
||||||
handle_catch(err_value, catch_block, engine_state, stack, eval_block)
|
|
||||||
} else {
|
|
||||||
Ok(pipeline)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Ok(pipeline) => Ok(pipeline),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,28 +95,33 @@ impl Command for Try {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_catch(
|
fn run_catch(
|
||||||
err_value: Value,
|
error: ShellError,
|
||||||
catch_block: Option<Closure>,
|
span: Span,
|
||||||
|
catch: Option<Closure>,
|
||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
eval_block_fn: EvalBlockFn,
|
eval_block: EvalBlockFn,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
if let Some(catch_block) = catch_block {
|
let error = intercept_block_control(error)?;
|
||||||
let catch_block = engine_state.get_block(catch_block.block_id);
|
|
||||||
|
if let Some(catch) = catch {
|
||||||
|
stack.set_last_error(&error);
|
||||||
|
let error = error.into_value(span);
|
||||||
|
let block = engine_state.get_block(catch.block_id);
|
||||||
// Put the error value in the positional closure var
|
// Put the error value in the positional closure var
|
||||||
if let Some(var) = catch_block.signature.get_positional(0) {
|
if let Some(var) = block.signature.get_positional(0) {
|
||||||
if let Some(var_id) = &var.var_id {
|
if let Some(var_id) = &var.var_id {
|
||||||
stack.add_var(*var_id, err_value.clone());
|
stack.add_var(*var_id, error.clone());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
eval_block_fn(
|
eval_block(
|
||||||
engine_state,
|
engine_state,
|
||||||
stack,
|
stack,
|
||||||
catch_block,
|
block,
|
||||||
// Make the error accessible with $in, too
|
// Make the error accessible with $in, too
|
||||||
err_value.into_pipeline_data(),
|
error.into_pipeline_data(),
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
Ok(PipelineData::empty())
|
Ok(PipelineData::empty())
|
||||||
@ -143,25 +134,13 @@ fn handle_catch(
|
|||||||
/// `Err` when flow control to bubble up with `?`
|
/// `Err` when flow control to bubble up with `?`
|
||||||
fn intercept_block_control(error: ShellError) -> Result<ShellError, ShellError> {
|
fn intercept_block_control(error: ShellError) -> Result<ShellError, ShellError> {
|
||||||
match error {
|
match error {
|
||||||
nu_protocol::ShellError::Break { .. } => Err(error),
|
ShellError::Break { .. } => Err(error),
|
||||||
nu_protocol::ShellError::Continue { .. } => Err(error),
|
ShellError::Continue { .. } => Err(error),
|
||||||
nu_protocol::ShellError::Return { .. } => Err(error),
|
ShellError::Return { .. } => Err(error),
|
||||||
_ => Ok(error),
|
_ => Ok(error),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Convert from `error` to [`Value::Record`] so the error information can be easily accessed in catch.
|
|
||||||
fn err_to_record(error: ShellError, head: Span) -> Value {
|
|
||||||
Value::record(
|
|
||||||
record! {
|
|
||||||
"msg" => Value::string(error.to_string(), head),
|
|
||||||
"debug" => Value::string(format!("{error:?}"), head),
|
|
||||||
"raw" => Value::error(error, head),
|
|
||||||
},
|
|
||||||
head,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
@ -73,27 +73,10 @@ impl Command for While {
|
|||||||
let block = engine_state.get_block(block_id);
|
let block = engine_state.get_block(block_id);
|
||||||
|
|
||||||
match eval_block(engine_state, stack, block, PipelineData::empty()) {
|
match eval_block(engine_state, stack, block, PipelineData::empty()) {
|
||||||
Err(ShellError::Break { .. }) => {
|
Err(ShellError::Break { .. }) => break,
|
||||||
break;
|
Err(ShellError::Continue { .. }) => continue,
|
||||||
}
|
Err(err) => return Err(err),
|
||||||
Err(ShellError::Continue { .. }) => {
|
Ok(data) => data.drain()?,
|
||||||
continue;
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
return Err(err);
|
|
||||||
}
|
|
||||||
Ok(data) => {
|
|
||||||
if let Some(status) = data.drain()? {
|
|
||||||
let code = status.code();
|
|
||||||
if code != 0 {
|
|
||||||
return Ok(
|
|
||||||
PipelineData::new_external_stream_with_only_exit_code(
|
|
||||||
code,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
break;
|
break;
|
||||||
|
@ -4,7 +4,7 @@ use nu_protocol::{
|
|||||||
ast::Block,
|
ast::Block,
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{StateDelta, StateWorkingSet},
|
engine::{StateDelta, StateWorkingSet},
|
||||||
report_error_new, Range,
|
report_shell_error, Range,
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
sync::Arc,
|
sync::Arc,
|
||||||
@ -125,7 +125,7 @@ pub fn eval_block(
|
|||||||
nu_engine::eval_block::<WithoutDebug>(engine_state, &mut stack, &block, input)
|
nu_engine::eval_block::<WithoutDebug>(engine_state, &mut stack, &block, input)
|
||||||
.and_then(|data| data.into_value(Span::test_data()))
|
.and_then(|data| data.into_value(Span::test_data()))
|
||||||
.unwrap_or_else(|err| {
|
.unwrap_or_else(|err| {
|
||||||
report_error_new(engine_state, &err);
|
report_shell_error(engine_state, &err);
|
||||||
panic!("test eval error in `{}`: {:?}", "TODO", err)
|
panic!("test eval error in `{}`: {:?}", "TODO", err)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ impl Command for TimeIt {
|
|||||||
} else {
|
} else {
|
||||||
let eval_expression_with_input = get_eval_expression_with_input(engine_state);
|
let eval_expression_with_input = get_eval_expression_with_input(engine_state);
|
||||||
let expression = &command_to_run.clone();
|
let expression = &command_to_run.clone();
|
||||||
eval_expression_with_input(engine_state, stack, expression, input)?.0
|
eval_expression_with_input(engine_state, stack, expression, input)?
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
PipelineData::empty()
|
PipelineData::empty()
|
||||||
|
@ -3,7 +3,7 @@ use super::util::{get_rest_for_glob_pattern, try_interaction};
|
|||||||
use nu_engine::{command_prelude::*, env::current_dir};
|
use nu_engine::{command_prelude::*, env::current_dir};
|
||||||
use nu_glob::MatchOptions;
|
use nu_glob::MatchOptions;
|
||||||
use nu_path::expand_path_with;
|
use nu_path::expand_path_with;
|
||||||
use nu_protocol::{report_error_new, NuGlob};
|
use nu_protocol::{report_shell_error, NuGlob};
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
use std::os::unix::prelude::FileTypeExt;
|
use std::os::unix::prelude::FileTypeExt;
|
||||||
use std::{
|
use std::{
|
||||||
@ -452,7 +452,7 @@ fn rm(
|
|||||||
match result {
|
match result {
|
||||||
Ok(None) => {}
|
Ok(None) => {}
|
||||||
Ok(Some(msg)) => eprintln!("{msg}"),
|
Ok(Some(msg)) => eprintln!("{msg}"),
|
||||||
Err(err) => report_error_new(engine_state, &err),
|
Err(err) => report_shell_error(engine_state, &err),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ use notify_debouncer_full::{
|
|||||||
use nu_engine::{command_prelude::*, ClosureEval};
|
use nu_engine::{command_prelude::*, ClosureEval};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{Closure, StateWorkingSet},
|
engine::{Closure, StateWorkingSet},
|
||||||
format_error,
|
format_shell_error,
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
path::PathBuf,
|
path::PathBuf,
|
||||||
@ -198,7 +198,7 @@ impl Command for Watch {
|
|||||||
}
|
}
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
let working_set = StateWorkingSet::new(engine_state);
|
let working_set = StateWorkingSet::new(engine_state);
|
||||||
eprintln!("{}", format_error(&working_set, &err));
|
eprintln!("{}", format_shell_error(&working_set, &err));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use nu_engine::command_prelude::*;
|
use nu_engine::command_prelude::*;
|
||||||
use nu_protocol::{report_warning_new, ParseWarning, ValueIterator};
|
use nu_protocol::{report_shell_warning, ValueIterator};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Group;
|
pub struct Group;
|
||||||
@ -55,9 +55,9 @@ impl Command for Group {
|
|||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
let head = call.head;
|
let head = call.head;
|
||||||
|
|
||||||
report_warning_new(
|
report_shell_warning(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ParseWarning::DeprecatedWarning {
|
&ShellError::Deprecated {
|
||||||
old_command: "group".into(),
|
old_command: "group".into(),
|
||||||
new_suggestion: "the new `chunks` command".into(),
|
new_suggestion: "the new `chunks` command".into(),
|
||||||
span: head,
|
span: head,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use nu_engine::{command_prelude::*, get_eval_block_with_early_return};
|
use nu_engine::{command_prelude::*, get_eval_block_with_early_return};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
byte_stream::copy_with_signals, engine::Closure, process::ChildPipe, report_error_new,
|
byte_stream::copy_with_signals, engine::Closure, process::ChildPipe, report_shell_error,
|
||||||
ByteStream, ByteStreamSource, OutDest, PipelineMetadata, Signals,
|
ByteStream, ByteStreamSource, OutDest, PipelineMetadata, Signals,
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
@ -353,7 +353,7 @@ fn tee_once(
|
|||||||
) -> Result<JoinHandle<()>, std::io::Error> {
|
) -> Result<JoinHandle<()>, std::io::Error> {
|
||||||
thread::Builder::new().name("tee".into()).spawn(move || {
|
thread::Builder::new().name("tee".into()).spawn(move || {
|
||||||
if let Err(err) = on_thread() {
|
if let Err(err) = on_thread() {
|
||||||
report_error_new(&engine_state, &err);
|
report_shell_error(&engine_state, &err);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -279,7 +279,7 @@ impl UrlComponents {
|
|||||||
..self
|
..self
|
||||||
}),
|
}),
|
||||||
_ => {
|
_ => {
|
||||||
nu_protocol::report_error_new(
|
nu_protocol::report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: format!("'{key}' is not a valid URL field"),
|
error: format!("'{key}' is not a valid URL field"),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use super::base64::{operate, ActionType, Base64CommandArguments, CHARACTER_SET_DESC};
|
use super::base64::{operate, ActionType, Base64CommandArguments, CHARACTER_SET_DESC};
|
||||||
use nu_engine::command_prelude::*;
|
use nu_engine::command_prelude::*;
|
||||||
use nu_protocol::{report_warning_new, ParseWarning};
|
use nu_protocol::report_shell_warning;
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct DecodeBase64Old;
|
pub struct DecodeBase64Old;
|
||||||
@ -78,9 +78,9 @@ impl Command for DecodeBase64Old {
|
|||||||
call: &Call,
|
call: &Call,
|
||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
report_warning_new(
|
report_shell_warning(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ParseWarning::DeprecatedWarning {
|
&ShellError::Deprecated {
|
||||||
old_command: "decode base64".into(),
|
old_command: "decode base64".into(),
|
||||||
new_suggestion: "the new `decode new-base64` version".into(),
|
new_suggestion: "the new `decode new-base64` version".into(),
|
||||||
span: call.head,
|
span: call.head,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use super::base64::{operate, ActionType, Base64CommandArguments, CHARACTER_SET_DESC};
|
use super::base64::{operate, ActionType, Base64CommandArguments, CHARACTER_SET_DESC};
|
||||||
use nu_engine::command_prelude::*;
|
use nu_engine::command_prelude::*;
|
||||||
use nu_protocol::{report_warning_new, ParseWarning};
|
use nu_protocol::report_shell_warning;
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct EncodeBase64Old;
|
pub struct EncodeBase64Old;
|
||||||
@ -82,9 +82,9 @@ impl Command for EncodeBase64Old {
|
|||||||
call: &Call,
|
call: &Call,
|
||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
report_warning_new(
|
report_shell_warning(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ParseWarning::DeprecatedWarning {
|
&ShellError::Deprecated {
|
||||||
old_command: "encode base64".into(),
|
old_command: "encode base64".into(),
|
||||||
new_suggestion: "the new `encode new-base64` version".into(),
|
new_suggestion: "the new `encode new-base64` version".into(),
|
||||||
span: call.head,
|
span: call.head,
|
||||||
|
@ -78,7 +78,7 @@ impl Command for SubCommand {
|
|||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
if call.has_flag_const(working_set, "not")? {
|
if call.has_flag_const(working_set, "not")? {
|
||||||
nu_protocol::report_error_new(
|
nu_protocol::report_shell_error(
|
||||||
working_set.permanent(),
|
working_set.permanent(),
|
||||||
&ShellError::GenericError {
|
&ShellError::GenericError {
|
||||||
error: "Deprecated option".into(),
|
error: "Deprecated option".into(),
|
||||||
|
@ -12,21 +12,21 @@ fn capture_errors_works() {
|
|||||||
#[test]
|
#[test]
|
||||||
fn capture_errors_works_for_external() {
|
fn capture_errors_works_for_external() {
|
||||||
let actual = nu!("do -c {nu --testbin fail}");
|
let actual = nu!("do -c {nu --testbin fail}");
|
||||||
assert!(actual.err.contains("External command failed"));
|
assert!(actual.err.contains("exited with code"));
|
||||||
assert_eq!(actual.out, "");
|
assert_eq!(actual.out, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn capture_errors_works_for_external_with_pipeline() {
|
fn capture_errors_works_for_external_with_pipeline() {
|
||||||
let actual = nu!("do -c {nu --testbin fail} | echo `text`");
|
let actual = nu!("do -c {nu --testbin fail} | echo `text`");
|
||||||
assert!(actual.err.contains("External command failed"));
|
assert!(actual.err.contains("exited with code"));
|
||||||
assert_eq!(actual.out, "");
|
assert_eq!(actual.out, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn capture_errors_works_for_external_with_semicolon() {
|
fn capture_errors_works_for_external_with_semicolon() {
|
||||||
let actual = nu!(r#"do -c {nu --testbin fail}; echo `text`"#);
|
let actual = nu!(r#"do -c {nu --testbin fail}; echo `text`"#);
|
||||||
assert!(actual.err.contains("External command failed"));
|
assert!(actual.err.contains("exited with code"));
|
||||||
assert_eq!(actual.out, "");
|
assert_eq!(actual.out, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,13 @@ fn can_catch_infinite_recursion() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn exit_code_available_in_catch() {
|
fn exit_code_available_in_catch_env() {
|
||||||
let actual = nu!("try { nu -c 'exit 42' } catch { $env.LAST_EXIT_CODE }");
|
let actual = nu!("try { nu -c 'exit 42'; null } catch { $env.LAST_EXIT_CODE }");
|
||||||
|
assert_eq!(actual.out, "42");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn exit_code_available_in_catch() {
|
||||||
|
let actual = nu!("try { nu -c 'exit 42'; null } catch { |e| $e.exit_code }");
|
||||||
assert_eq!(actual.out, "42");
|
assert_eq!(actual.out, "42");
|
||||||
}
|
}
|
||||||
|
@ -278,7 +278,6 @@ impl BlockBuilder {
|
|||||||
Instruction::OnError { index: _ } => Ok(()),
|
Instruction::OnError { index: _ } => Ok(()),
|
||||||
Instruction::OnErrorInto { index: _, dst } => allocate(&[], &[*dst]),
|
Instruction::OnErrorInto { index: _, dst } => allocate(&[], &[*dst]),
|
||||||
Instruction::PopErrorHandler => Ok(()),
|
Instruction::PopErrorHandler => Ok(()),
|
||||||
Instruction::CheckExternalFailed { dst, src } => allocate(&[*src], &[*dst, *src]),
|
|
||||||
Instruction::ReturnEarly { src } => allocate(&[*src], &[]),
|
Instruction::ReturnEarly { src } => allocate(&[*src], &[]),
|
||||||
Instruction::Return { src } => allocate(&[*src], &[]),
|
Instruction::Return { src } => allocate(&[*src], &[]),
|
||||||
};
|
};
|
||||||
@ -499,6 +498,7 @@ impl BlockBuilder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Mark an unreachable code path. Produces an error at runtime if executed.
|
/// Mark an unreachable code path. Produces an error at runtime if executed.
|
||||||
|
#[allow(dead_code)] // currently unused, but might be used in the future.
|
||||||
pub(crate) fn unreachable(&mut self, span: Span) -> Result<(), CompileError> {
|
pub(crate) fn unreachable(&mut self, span: Span) -> Result<(), CompileError> {
|
||||||
self.push(Instruction::Unreachable.into_spanned(span))
|
self.push(Instruction::Unreachable.into_spanned(span))
|
||||||
}
|
}
|
||||||
|
@ -362,12 +362,8 @@ pub(crate) fn compile_try(
|
|||||||
//
|
//
|
||||||
// on-error-into ERR, %io_reg // or without
|
// on-error-into ERR, %io_reg // or without
|
||||||
// %io_reg <- <...block...> <- %io_reg
|
// %io_reg <- <...block...> <- %io_reg
|
||||||
// check-external-failed %failed_reg, %io_reg
|
|
||||||
// branch-if %failed_reg, FAIL
|
|
||||||
// pop-error-handler
|
// pop-error-handler
|
||||||
// jump END
|
// jump END
|
||||||
// FAIL: drain %io_reg
|
|
||||||
// unreachable
|
|
||||||
// ERR: clone %err_reg, %io_reg
|
// ERR: clone %err_reg, %io_reg
|
||||||
// store-variable $err_var, %err_reg // or without
|
// store-variable $err_var, %err_reg // or without
|
||||||
// %io_reg <- <...catch block...> <- %io_reg // set to empty if no catch block
|
// %io_reg <- <...catch block...> <- %io_reg // set to empty if no catch block
|
||||||
@ -378,12 +374,8 @@ pub(crate) fn compile_try(
|
|||||||
// %closure_reg <- <catch_expr>
|
// %closure_reg <- <catch_expr>
|
||||||
// on-error-into ERR, %io_reg
|
// on-error-into ERR, %io_reg
|
||||||
// %io_reg <- <...block...> <- %io_reg
|
// %io_reg <- <...block...> <- %io_reg
|
||||||
// check-external-failed %failed_reg, %io_reg
|
|
||||||
// branch-if %failed_reg, FAIL
|
|
||||||
// pop-error-handler
|
// pop-error-handler
|
||||||
// jump END
|
// jump END
|
||||||
// FAIL: drain %io_reg
|
|
||||||
// unreachable
|
|
||||||
// ERR: clone %err_reg, %io_reg
|
// ERR: clone %err_reg, %io_reg
|
||||||
// push-positional %closure_reg
|
// push-positional %closure_reg
|
||||||
// push-positional %err_reg
|
// push-positional %err_reg
|
||||||
@ -405,7 +397,6 @@ pub(crate) fn compile_try(
|
|||||||
let catch_span = catch_expr.map(|e| e.span).unwrap_or(call.head);
|
let catch_span = catch_expr.map(|e| e.span).unwrap_or(call.head);
|
||||||
|
|
||||||
let err_label = builder.label(None);
|
let err_label = builder.label(None);
|
||||||
let failed_label = builder.label(None);
|
|
||||||
let end_label = builder.label(None);
|
let end_label = builder.label(None);
|
||||||
|
|
||||||
// We have two ways of executing `catch`: if it was provided as a literal, we can inline it.
|
// We have two ways of executing `catch`: if it was provided as a literal, we can inline it.
|
||||||
@ -470,32 +461,13 @@ pub(crate) fn compile_try(
|
|||||||
io_reg,
|
io_reg,
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
// Check for external command exit code failure, and also redirect that to the catch handler
|
|
||||||
let failed_reg = builder.next_register()?;
|
|
||||||
builder.push(
|
|
||||||
Instruction::CheckExternalFailed {
|
|
||||||
dst: failed_reg,
|
|
||||||
src: io_reg,
|
|
||||||
}
|
|
||||||
.into_spanned(catch_span),
|
|
||||||
)?;
|
|
||||||
builder.branch_if(failed_reg, failed_label, catch_span)?;
|
|
||||||
|
|
||||||
// Successful case: pop the error handler
|
// Successful case: pop the error handler
|
||||||
builder.push(Instruction::PopErrorHandler.into_spanned(call.head))?;
|
builder.push(Instruction::PopErrorHandler.into_spanned(call.head))?;
|
||||||
|
|
||||||
// Jump over the failure case
|
// Jump over the failure case
|
||||||
builder.jump(end_label, catch_span)?;
|
builder.jump(end_label, catch_span)?;
|
||||||
|
|
||||||
// Set up an error handler preamble for failed external.
|
// This is the error handler
|
||||||
// Draining the %io_reg results in the error handler being called with Empty, and sets
|
|
||||||
// $env.LAST_EXIT_CODE
|
|
||||||
builder.set_label(failed_label, builder.here())?;
|
|
||||||
builder.drain(io_reg, catch_span)?;
|
|
||||||
builder.add_comment("branches to err");
|
|
||||||
builder.unreachable(catch_span)?;
|
|
||||||
|
|
||||||
// This is the real error handler
|
|
||||||
builder.set_label(err_label, builder.here())?;
|
builder.set_label(err_label, builder.here())?;
|
||||||
|
|
||||||
// Mark out register as likely not clean - state in error handler is not well defined
|
// Mark out register as likely not clean - state in error handler is not well defined
|
||||||
|
@ -250,7 +250,7 @@ pub fn eval_expression_with_input<D: DebugContext>(
|
|||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
expr: &Expression,
|
expr: &Expression,
|
||||||
mut input: PipelineData,
|
mut input: PipelineData,
|
||||||
) -> Result<(PipelineData, bool), ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
match &expr.expr {
|
match &expr.expr {
|
||||||
Expr::Call(call) => {
|
Expr::Call(call) => {
|
||||||
input = eval_call::<D>(engine_state, stack, call, input)?;
|
input = eval_call::<D>(engine_state, stack, call, input)?;
|
||||||
@ -298,16 +298,7 @@ pub fn eval_expression_with_input<D: DebugContext>(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// If input an external command,
|
Ok(input)
|
||||||
// then `might_consume_external_result` will consume `stderr` if `stdout` is `None`.
|
|
||||||
// This should not happen if the user wants to capture stderr.
|
|
||||||
if !matches!(stack.stdout(), OutDest::Pipe | OutDest::Capture)
|
|
||||||
&& matches!(stack.stderr(), OutDest::Capture)
|
|
||||||
{
|
|
||||||
Ok((input, false))
|
|
||||||
} else {
|
|
||||||
input.check_external_failed()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn eval_redirection<D: DebugContext>(
|
fn eval_redirection<D: DebugContext>(
|
||||||
@ -401,9 +392,8 @@ fn eval_element_with_input_inner<D: DebugContext>(
|
|||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
element: &PipelineElement,
|
element: &PipelineElement,
|
||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
) -> Result<(PipelineData, bool), ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
let (data, failed) =
|
let data = eval_expression_with_input::<D>(engine_state, stack, &element.expr, input)?;
|
||||||
eval_expression_with_input::<D>(engine_state, stack, &element.expr, input)?;
|
|
||||||
|
|
||||||
if let Some(redirection) = element.redirection.as_ref() {
|
if let Some(redirection) = element.redirection.as_ref() {
|
||||||
let is_external = if let PipelineData::ByteStream(stream, ..) = &data {
|
let is_external = if let PipelineData::ByteStream(stream, ..) = &data {
|
||||||
@ -473,7 +463,7 @@ fn eval_element_with_input_inner<D: DebugContext>(
|
|||||||
PipelineData::Empty => PipelineData::Empty,
|
PipelineData::Empty => PipelineData::Empty,
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok((data, failed))
|
Ok(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn eval_element_with_input<D: DebugContext>(
|
fn eval_element_with_input<D: DebugContext>(
|
||||||
@ -481,20 +471,11 @@ fn eval_element_with_input<D: DebugContext>(
|
|||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
element: &PipelineElement,
|
element: &PipelineElement,
|
||||||
input: PipelineData,
|
input: PipelineData,
|
||||||
) -> Result<(PipelineData, bool), ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
D::enter_element(engine_state, element);
|
D::enter_element(engine_state, element);
|
||||||
match eval_element_with_input_inner::<D>(engine_state, stack, element, input) {
|
let result = eval_element_with_input_inner::<D>(engine_state, stack, element, input);
|
||||||
Ok((data, failed)) => {
|
D::leave_element(engine_state, element, &result);
|
||||||
let res = Ok(data);
|
result
|
||||||
D::leave_element(engine_state, element, &res);
|
|
||||||
res.map(|data| (data, failed))
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
let res = Err(err);
|
|
||||||
D::leave_element(engine_state, element, &res);
|
|
||||||
res.map(|data| (data, false))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn eval_block_with_early_return<D: DebugContext>(
|
pub fn eval_block_with_early_return<D: DebugContext>(
|
||||||
@ -509,7 +490,7 @@ pub fn eval_block_with_early_return<D: DebugContext>(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn eval_block<D: DebugContext>(
|
fn eval_block_inner<D: DebugContext>(
|
||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
block: &Block,
|
block: &Block,
|
||||||
@ -520,8 +501,6 @@ pub fn eval_block<D: DebugContext>(
|
|||||||
return eval_ir_block::<D>(engine_state, stack, block, input);
|
return eval_ir_block::<D>(engine_state, stack, block, input);
|
||||||
}
|
}
|
||||||
|
|
||||||
D::enter_block(engine_state, block);
|
|
||||||
|
|
||||||
let num_pipelines = block.len();
|
let num_pipelines = block.len();
|
||||||
|
|
||||||
for (pipeline_idx, pipeline) in block.pipelines.iter().enumerate() {
|
for (pipeline_idx, pipeline) in block.pipelines.iter().enumerate() {
|
||||||
@ -542,14 +521,7 @@ pub fn eval_block<D: DebugContext>(
|
|||||||
(next_out.or(Some(OutDest::Pipe)), next_err),
|
(next_out.or(Some(OutDest::Pipe)), next_err),
|
||||||
)?;
|
)?;
|
||||||
let stack = &mut stack.push_redirection(stdout, stderr);
|
let stack = &mut stack.push_redirection(stdout, stderr);
|
||||||
let (output, failed) =
|
input = eval_element_with_input::<D>(engine_state, stack, element, input)?;
|
||||||
eval_element_with_input::<D>(engine_state, stack, element, input)?;
|
|
||||||
if failed {
|
|
||||||
// External command failed.
|
|
||||||
// Don't return `Err(ShellError)`, so nushell won't show an extra error message.
|
|
||||||
return Ok(output);
|
|
||||||
}
|
|
||||||
input = output;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if last_pipeline {
|
if last_pipeline {
|
||||||
@ -560,13 +532,7 @@ pub fn eval_block<D: DebugContext>(
|
|||||||
(stack.pipe_stdout().cloned(), stack.pipe_stderr().cloned()),
|
(stack.pipe_stdout().cloned(), stack.pipe_stderr().cloned()),
|
||||||
)?;
|
)?;
|
||||||
let stack = &mut stack.push_redirection(stdout, stderr);
|
let stack = &mut stack.push_redirection(stdout, stderr);
|
||||||
let (output, failed) = eval_element_with_input::<D>(engine_state, stack, last, input)?;
|
input = eval_element_with_input::<D>(engine_state, stack, last, input)?;
|
||||||
if failed {
|
|
||||||
// External command failed.
|
|
||||||
// Don't return `Err(ShellError)`, so nushell won't show an extra error message.
|
|
||||||
return Ok(output);
|
|
||||||
}
|
|
||||||
input = output;
|
|
||||||
} else {
|
} else {
|
||||||
let (stdout, stderr) = eval_element_redirection::<D>(
|
let (stdout, stderr) = eval_element_redirection::<D>(
|
||||||
engine_state,
|
engine_state,
|
||||||
@ -575,40 +541,41 @@ pub fn eval_block<D: DebugContext>(
|
|||||||
(None, None),
|
(None, None),
|
||||||
)?;
|
)?;
|
||||||
let stack = &mut stack.push_redirection(stdout, stderr);
|
let stack = &mut stack.push_redirection(stdout, stderr);
|
||||||
let (output, failed) = eval_element_with_input::<D>(engine_state, stack, last, input)?;
|
match eval_element_with_input::<D>(engine_state, stack, last, input)? {
|
||||||
if failed {
|
|
||||||
// External command failed.
|
|
||||||
// Don't return `Err(ShellError)`, so nushell won't show an extra error message.
|
|
||||||
return Ok(output);
|
|
||||||
}
|
|
||||||
input = PipelineData::Empty;
|
|
||||||
match output {
|
|
||||||
PipelineData::ByteStream(stream, ..) => {
|
PipelineData::ByteStream(stream, ..) => {
|
||||||
let span = stream.span();
|
let span = stream.span();
|
||||||
let status = stream.drain()?;
|
if let Err(err) = stream.drain() {
|
||||||
if let Some(status) = status {
|
stack.set_last_error(&err);
|
||||||
stack.add_env_var(
|
return Err(err);
|
||||||
"LAST_EXIT_CODE".into(),
|
} else {
|
||||||
Value::int(status.code().into(), span),
|
stack.set_last_exit_code(0, span);
|
||||||
);
|
|
||||||
if status.code() != 0 {
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
PipelineData::ListStream(stream, ..) => stream.drain()?,
|
||||||
PipelineData::ListStream(stream, ..) => {
|
|
||||||
stream.drain()?;
|
|
||||||
}
|
|
||||||
PipelineData::Value(..) | PipelineData::Empty => {}
|
PipelineData::Value(..) | PipelineData::Empty => {}
|
||||||
}
|
}
|
||||||
|
input = PipelineData::Empty;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
D::leave_block(engine_state, block);
|
|
||||||
|
|
||||||
Ok(input)
|
Ok(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn eval_block<D: DebugContext>(
|
||||||
|
engine_state: &EngineState,
|
||||||
|
stack: &mut Stack,
|
||||||
|
block: &Block,
|
||||||
|
input: PipelineData,
|
||||||
|
) -> Result<PipelineData, ShellError> {
|
||||||
|
D::enter_block(engine_state, block);
|
||||||
|
let result = eval_block_inner::<D>(engine_state, stack, block, input);
|
||||||
|
D::leave_block(engine_state, block);
|
||||||
|
if let Err(err) = &result {
|
||||||
|
stack.set_last_error(err);
|
||||||
|
}
|
||||||
|
result
|
||||||
|
}
|
||||||
|
|
||||||
pub fn eval_collect<D: DebugContext>(
|
pub fn eval_collect<D: DebugContext>(
|
||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
@ -639,8 +606,7 @@ pub fn eval_collect<D: DebugContext>(
|
|||||||
expr,
|
expr,
|
||||||
// We still have to pass it as input
|
// We still have to pass it as input
|
||||||
input.into_pipeline_data_with_metadata(metadata),
|
input.into_pipeline_data_with_metadata(metadata),
|
||||||
)
|
);
|
||||||
.map(|(result, _failed)| result);
|
|
||||||
|
|
||||||
stack.remove_var(var_id);
|
stack.remove_var(var_id);
|
||||||
|
|
||||||
|
@ -25,12 +25,8 @@ pub type EvalBlockWithEarlyReturnFn =
|
|||||||
pub type EvalExpressionFn = fn(&EngineState, &mut Stack, &Expression) -> Result<Value, ShellError>;
|
pub type EvalExpressionFn = fn(&EngineState, &mut Stack, &Expression) -> Result<Value, ShellError>;
|
||||||
|
|
||||||
/// Type of eval_expression_with_input() function
|
/// Type of eval_expression_with_input() function
|
||||||
pub type EvalExpressionWithInputFn = fn(
|
pub type EvalExpressionWithInputFn =
|
||||||
&EngineState,
|
fn(&EngineState, &mut Stack, &Expression, PipelineData) -> Result<PipelineData, ShellError>;
|
||||||
&mut Stack,
|
|
||||||
&Expression,
|
|
||||||
PipelineData,
|
|
||||||
) -> Result<(PipelineData, bool), ShellError>;
|
|
||||||
|
|
||||||
/// Type of eval_subexpression() function
|
/// Type of eval_subexpression() function
|
||||||
pub type EvalSubexpressionFn =
|
pub type EvalSubexpressionFn =
|
||||||
|
@ -6,9 +6,9 @@ use nu_protocol::{
|
|||||||
debugger::DebugContext,
|
debugger::DebugContext,
|
||||||
engine::{Argument, Closure, EngineState, ErrorHandler, Matcher, Redirection, Stack},
|
engine::{Argument, Closure, EngineState, ErrorHandler, Matcher, Redirection, Stack},
|
||||||
ir::{Call, DataSlice, Instruction, IrAstRef, IrBlock, Literal, RedirectMode},
|
ir::{Call, DataSlice, Instruction, IrAstRef, IrBlock, Literal, RedirectMode},
|
||||||
record, ByteStreamSource, DataSource, DeclId, ErrSpan, Flag, IntoPipelineData, IntoSpanned,
|
ByteStreamSource, DataSource, DeclId, ErrSpan, Flag, IntoPipelineData, IntoSpanned, ListStream,
|
||||||
ListStream, OutDest, PipelineData, PipelineMetadata, PositionalArg, Range, Record, RegId,
|
OutDest, PipelineData, PipelineMetadata, PositionalArg, Range, Record, RegId, ShellError,
|
||||||
ShellError, Signals, Signature, Span, Spanned, Type, Value, VarId, ENV_VARIABLE_ID,
|
Signals, Signature, Span, Spanned, Type, Value, VarId, ENV_VARIABLE_ID,
|
||||||
};
|
};
|
||||||
use nu_utils::IgnoreCaseExt;
|
use nu_utils::IgnoreCaseExt;
|
||||||
|
|
||||||
@ -207,18 +207,6 @@ fn eval_ir_block_impl<D: DebugContext>(
|
|||||||
Ok(InstructionResult::Return(reg_id)) => {
|
Ok(InstructionResult::Return(reg_id)) => {
|
||||||
return Ok(ctx.take_reg(reg_id));
|
return Ok(ctx.take_reg(reg_id));
|
||||||
}
|
}
|
||||||
Ok(InstructionResult::ExitCode(exit_code)) => {
|
|
||||||
if let Some(error_handler) = ctx.stack.error_handlers.pop(ctx.error_handler_base) {
|
|
||||||
// If an error handler is set, branch there
|
|
||||||
prepare_error_handler(ctx, error_handler, None);
|
|
||||||
pc = error_handler.handler_index;
|
|
||||||
} else {
|
|
||||||
// If not, exit the block with the exit code
|
|
||||||
return Ok(PipelineData::new_external_stream_with_only_exit_code(
|
|
||||||
exit_code,
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Err(
|
Err(
|
||||||
err @ (ShellError::Return { .. }
|
err @ (ShellError::Return { .. }
|
||||||
| ShellError::Continue { .. }
|
| ShellError::Continue { .. }
|
||||||
@ -259,15 +247,10 @@ fn prepare_error_handler(
|
|||||||
if let Some(reg_id) = error_handler.error_register {
|
if let Some(reg_id) = error_handler.error_register {
|
||||||
if let Some(error) = error {
|
if let Some(error) = error {
|
||||||
// Create the error value and put it in the register
|
// Create the error value and put it in the register
|
||||||
let value = Value::record(
|
ctx.put_reg(
|
||||||
record! {
|
reg_id,
|
||||||
"msg" => Value::string(format!("{}", error.item), error.span),
|
error.item.into_value(error.span).into_pipeline_data(),
|
||||||
"debug" => Value::string(format!("{:?}", error.item), error.span),
|
|
||||||
"raw" => Value::error(error.item, error.span),
|
|
||||||
},
|
|
||||||
error.span,
|
|
||||||
);
|
);
|
||||||
ctx.put_reg(reg_id, PipelineData::Value(value, None));
|
|
||||||
} else {
|
} else {
|
||||||
// Set the register to empty
|
// Set the register to empty
|
||||||
ctx.put_reg(reg_id, PipelineData::Empty);
|
ctx.put_reg(reg_id, PipelineData::Empty);
|
||||||
@ -281,7 +264,6 @@ enum InstructionResult {
|
|||||||
Continue,
|
Continue,
|
||||||
Branch(usize),
|
Branch(usize),
|
||||||
Return(RegId),
|
Return(RegId),
|
||||||
ExitCode(i32),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Perform an instruction
|
/// Perform an instruction
|
||||||
@ -788,13 +770,6 @@ fn eval_instruction<D: DebugContext>(
|
|||||||
ctx.stack.error_handlers.pop(ctx.error_handler_base);
|
ctx.stack.error_handlers.pop(ctx.error_handler_base);
|
||||||
Ok(Continue)
|
Ok(Continue)
|
||||||
}
|
}
|
||||||
Instruction::CheckExternalFailed { dst, src } => {
|
|
||||||
let data = ctx.take_reg(*src);
|
|
||||||
let (data, failed) = data.check_external_failed()?;
|
|
||||||
ctx.put_reg(*src, data);
|
|
||||||
ctx.put_reg(*dst, Value::bool(failed, *span).into_pipeline_data());
|
|
||||||
Ok(Continue)
|
|
||||||
}
|
|
||||||
Instruction::ReturnEarly { src } => {
|
Instruction::ReturnEarly { src } => {
|
||||||
let val = ctx.collect_reg(*src, *span)?;
|
let val = ctx.collect_reg(*src, *span)?;
|
||||||
Err(ShellError::Return {
|
Err(ShellError::Return {
|
||||||
@ -1362,23 +1337,23 @@ fn collect(data: PipelineData, fallback_span: Span) -> Result<PipelineData, Shel
|
|||||||
Ok(PipelineData::Value(value, metadata))
|
Ok(PipelineData::Value(value, metadata))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Helper for drain behavior. Returns `Ok(ExitCode)` on failed external.
|
/// Helper for drain behavior.
|
||||||
fn drain(ctx: &mut EvalContext<'_>, data: PipelineData) -> Result<InstructionResult, ShellError> {
|
fn drain(ctx: &mut EvalContext<'_>, data: PipelineData) -> Result<InstructionResult, ShellError> {
|
||||||
use self::InstructionResult::*;
|
use self::InstructionResult::*;
|
||||||
let span = data.span().unwrap_or(Span::unknown());
|
match data {
|
||||||
if let Some(exit_status) = data.drain()? {
|
PipelineData::ByteStream(stream, ..) => {
|
||||||
ctx.stack.add_env_var(
|
let span = stream.span();
|
||||||
"LAST_EXIT_CODE".into(),
|
if let Err(err) = stream.drain() {
|
||||||
Value::int(exit_status.code() as i64, span),
|
ctx.stack.set_last_error(&err);
|
||||||
);
|
return Err(err);
|
||||||
if exit_status.code() == 0 {
|
|
||||||
Ok(Continue)
|
|
||||||
} else {
|
} else {
|
||||||
Ok(ExitCode(exit_status.code()))
|
ctx.stack.set_last_exit_code(0, span);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PipelineData::ListStream(stream, ..) => stream.drain()?,
|
||||||
|
PipelineData::Value(..) | PipelineData::Empty => {}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
Ok(Continue)
|
Ok(Continue)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
enum RedirectionStream {
|
enum RedirectionStream {
|
||||||
|
@ -15,7 +15,7 @@ use nu_plugin_core::{
|
|||||||
ServerCommunicationIo,
|
ServerCommunicationIo,
|
||||||
};
|
};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::StateWorkingSet, report_error_new, PluginIdentity, PluginRegistryFile,
|
engine::StateWorkingSet, report_shell_error, PluginIdentity, PluginRegistryFile,
|
||||||
PluginRegistryItem, PluginRegistryItemData, RegisteredPlugin, ShellError, Span,
|
PluginRegistryItem, PluginRegistryItemData, RegisteredPlugin, ShellError, Span,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -225,7 +225,7 @@ pub fn load_plugin_file(
|
|||||||
for plugin in &plugin_registry_file.plugins {
|
for plugin in &plugin_registry_file.plugins {
|
||||||
// Any errors encountered should just be logged.
|
// Any errors encountered should just be logged.
|
||||||
if let Err(err) = load_plugin_registry_item(working_set, plugin, span) {
|
if let Err(err) = load_plugin_registry_item(working_set, plugin, span) {
|
||||||
report_error_new(working_set.permanent_state, &err)
|
report_shell_error(working_set.permanent_state, &err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ use nu_plugin_protocol::PluginCustomValue;
|
|||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error_new, CustomValue, Example, IntoSpanned as _, LabeledError, PipelineData,
|
report_shell_error, CustomValue, Example, IntoSpanned as _, LabeledError, PipelineData,
|
||||||
ShellError, Signals, Span, Value,
|
ShellError, Signals, Span, Value,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -252,7 +252,7 @@ impl PluginTest {
|
|||||||
Err(err) => {
|
Err(err) => {
|
||||||
// Report the error
|
// Report the error
|
||||||
failed_header();
|
failed_header();
|
||||||
report_error_new(&self.engine_state, &err);
|
report_shell_error(&self.engine_state, &err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
29
crates/nu-protocol/src/config/display_errors.rs
Normal file
29
crates/nu-protocol/src/config/display_errors.rs
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
use super::prelude::*;
|
||||||
|
use crate as nu_protocol;
|
||||||
|
use crate::ShellError;
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug, IntoValue, PartialEq, Eq, Serialize, Deserialize)]
|
||||||
|
pub struct DisplayErrors {
|
||||||
|
pub exit_code: bool,
|
||||||
|
pub termination_signal: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DisplayErrors {
|
||||||
|
pub fn should_show(&self, error: &ShellError) -> bool {
|
||||||
|
match error {
|
||||||
|
ShellError::NonZeroExitCode { .. } => self.exit_code,
|
||||||
|
#[cfg(unix)]
|
||||||
|
ShellError::TerminatedBySignal { .. } => self.termination_signal,
|
||||||
|
_ => true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for DisplayErrors {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
exit_code: true,
|
||||||
|
termination_signal: true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -12,6 +12,7 @@ pub use self::completer::{
|
|||||||
CompleterConfig, CompletionAlgorithm, CompletionSort, ExternalCompleterConfig,
|
CompleterConfig, CompletionAlgorithm, CompletionSort, ExternalCompleterConfig,
|
||||||
};
|
};
|
||||||
pub use self::datetime_format::DatetimeFormatConfig;
|
pub use self::datetime_format::DatetimeFormatConfig;
|
||||||
|
pub use self::display_errors::DisplayErrors;
|
||||||
pub use self::filesize::FilesizeConfig;
|
pub use self::filesize::FilesizeConfig;
|
||||||
pub use self::helper::extract_value;
|
pub use self::helper::extract_value;
|
||||||
pub use self::history::{HistoryConfig, HistoryFileFormat};
|
pub use self::history::{HistoryConfig, HistoryFileFormat};
|
||||||
@ -28,6 +29,7 @@ pub use self::table::{FooterMode, TableConfig, TableIndexMode, TableMode, TrimSt
|
|||||||
|
|
||||||
mod completer;
|
mod completer;
|
||||||
mod datetime_format;
|
mod datetime_format;
|
||||||
|
mod display_errors;
|
||||||
mod filesize;
|
mod filesize;
|
||||||
mod helper;
|
mod helper;
|
||||||
mod history;
|
mod history;
|
||||||
@ -67,6 +69,7 @@ pub struct Config {
|
|||||||
pub cursor_shape: CursorShapeConfig,
|
pub cursor_shape: CursorShapeConfig,
|
||||||
pub datetime_format: DatetimeFormatConfig,
|
pub datetime_format: DatetimeFormatConfig,
|
||||||
pub error_style: ErrorStyle,
|
pub error_style: ErrorStyle,
|
||||||
|
pub display_errors: DisplayErrors,
|
||||||
pub use_kitty_protocol: bool,
|
pub use_kitty_protocol: bool,
|
||||||
pub highlight_resolved_externals: bool,
|
pub highlight_resolved_externals: bool,
|
||||||
/// Configuration for plugins.
|
/// Configuration for plugins.
|
||||||
@ -121,6 +124,7 @@ impl Default for Config {
|
|||||||
keybindings: Vec::new(),
|
keybindings: Vec::new(),
|
||||||
|
|
||||||
error_style: ErrorStyle::Fancy,
|
error_style: ErrorStyle::Fancy,
|
||||||
|
display_errors: DisplayErrors::default(),
|
||||||
|
|
||||||
use_kitty_protocol: false,
|
use_kitty_protocol: false,
|
||||||
highlight_resolved_externals: false,
|
highlight_resolved_externals: false,
|
||||||
@ -609,6 +613,29 @@ impl Value {
|
|||||||
"show_banner" => {
|
"show_banner" => {
|
||||||
process_bool_config(value, &mut errors, &mut config.show_banner);
|
process_bool_config(value, &mut errors, &mut config.show_banner);
|
||||||
}
|
}
|
||||||
|
"display_errors" => {
|
||||||
|
if let Value::Record { val, .. } = value {
|
||||||
|
val.to_mut().retain_mut(|key2, value| {
|
||||||
|
let span = value.span();
|
||||||
|
match key2 {
|
||||||
|
"exit_code" => {
|
||||||
|
process_bool_config(value, &mut errors, &mut config.display_errors.exit_code);
|
||||||
|
}
|
||||||
|
"termination_signal" => {
|
||||||
|
process_bool_config(value, &mut errors, &mut config.display_errors.termination_signal);
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
report_invalid_key(&[key, key2], span, &mut errors);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
true
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
report_invalid_value("should be a record", span, &mut errors);
|
||||||
|
*value = config.display_errors.into_value(span);
|
||||||
|
}
|
||||||
|
}
|
||||||
"render_right_prompt_on_last_line" => {
|
"render_right_prompt_on_last_line" => {
|
||||||
process_bool_config(value, &mut errors, &mut config.render_right_prompt_on_last_line);
|
process_bool_config(value, &mut errors, &mut config.render_right_prompt_on_last_line);
|
||||||
}
|
}
|
||||||
|
@ -279,6 +279,16 @@ impl Stack {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn set_last_exit_code(&mut self, code: i32, span: Span) {
|
||||||
|
self.add_env_var("LAST_EXIT_CODE".into(), Value::int(code.into(), span));
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn set_last_error(&mut self, error: &ShellError) {
|
||||||
|
if let Some(code) = error.external_exit_code() {
|
||||||
|
self.set_last_exit_code(code.item, code.span);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn last_overlay_name(&self) -> Result<String, ShellError> {
|
pub fn last_overlay_name(&self) -> Result<String, ShellError> {
|
||||||
self.active_overlays
|
self.active_overlays
|
||||||
.last()
|
.last()
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//! Relies on the `miette` crate for pretty layout
|
//! Relies on the `miette` crate for pretty layout
|
||||||
use crate::{
|
use crate::{
|
||||||
engine::{EngineState, StateWorkingSet},
|
engine::{EngineState, StateWorkingSet},
|
||||||
ErrorStyle,
|
CompileError, ErrorStyle, ParseError, ParseWarning, ShellError,
|
||||||
};
|
};
|
||||||
use miette::{
|
use miette::{
|
||||||
LabeledSpan, MietteHandlerOpts, NarratableReportHandler, ReportHandler, RgbColors, Severity,
|
LabeledSpan, MietteHandlerOpts, NarratableReportHandler, ReportHandler, RgbColors, Severity,
|
||||||
@ -20,14 +20,35 @@ pub struct CliError<'src>(
|
|||||||
pub &'src StateWorkingSet<'src>,
|
pub &'src StateWorkingSet<'src>,
|
||||||
);
|
);
|
||||||
|
|
||||||
pub fn format_error(
|
pub fn format_shell_error(working_set: &StateWorkingSet, error: &ShellError) -> String {
|
||||||
working_set: &StateWorkingSet,
|
|
||||||
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
||||||
) -> String {
|
|
||||||
format!("Error: {:?}", CliError(error, working_set))
|
format!("Error: {:?}", CliError(error, working_set))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn report_error(
|
pub fn report_shell_error(engine_state: &EngineState, error: &ShellError) {
|
||||||
|
if engine_state.config.display_errors.should_show(error) {
|
||||||
|
report_error(&StateWorkingSet::new(engine_state), error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn report_shell_warning(engine_state: &EngineState, error: &ShellError) {
|
||||||
|
if engine_state.config.display_errors.should_show(error) {
|
||||||
|
report_warning(&StateWorkingSet::new(engine_state), error)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn report_parse_error(working_set: &StateWorkingSet, error: &ParseError) {
|
||||||
|
report_error(working_set, error);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn report_parse_warning(working_set: &StateWorkingSet, error: &ParseWarning) {
|
||||||
|
report_warning(working_set, error);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn report_compile_error(working_set: &StateWorkingSet, error: &CompileError) {
|
||||||
|
report_error(working_set, error);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn report_error(
|
||||||
working_set: &StateWorkingSet,
|
working_set: &StateWorkingSet,
|
||||||
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
||||||
) {
|
) {
|
||||||
@ -39,15 +60,7 @@ pub fn report_error(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn report_error_new(
|
fn report_warning(
|
||||||
engine_state: &EngineState,
|
|
||||||
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
||||||
) {
|
|
||||||
let working_set = StateWorkingSet::new(engine_state);
|
|
||||||
report_error(&working_set, error);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn report_warning(
|
|
||||||
working_set: &StateWorkingSet,
|
working_set: &StateWorkingSet,
|
||||||
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
||||||
) {
|
) {
|
||||||
@ -59,14 +72,6 @@ pub fn report_warning(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn report_warning_new(
|
|
||||||
engine_state: &EngineState,
|
|
||||||
error: &(dyn miette::Diagnostic + Send + Sync + 'static),
|
|
||||||
) {
|
|
||||||
let working_set = StateWorkingSet::new(engine_state);
|
|
||||||
report_error(&working_set, error);
|
|
||||||
}
|
|
||||||
|
|
||||||
impl std::fmt::Debug for CliError<'_> {
|
impl std::fmt::Debug for CliError<'_> {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
let config = self.1.get_config();
|
let config = self.1.get_config();
|
||||||
|
@ -6,7 +6,8 @@ mod parse_warning;
|
|||||||
mod shell_error;
|
mod shell_error;
|
||||||
|
|
||||||
pub use cli_error::{
|
pub use cli_error::{
|
||||||
format_error, report_error, report_error_new, report_warning, report_warning_new,
|
format_shell_error, report_parse_error, report_parse_warning, report_shell_error,
|
||||||
|
report_shell_warning,
|
||||||
};
|
};
|
||||||
pub use compile_error::CompileError;
|
pub use compile_error::CompileError;
|
||||||
pub use labeled_error::{ErrorLabel, LabeledError};
|
pub use labeled_error::{ErrorLabel, LabeledError};
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
use miette::Diagnostic;
|
use miette::Diagnostic;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::io;
|
use std::{io, num::NonZeroI32};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
ast::Operator, engine::StateWorkingSet, format_error, LabeledError, ParseError, Span, Spanned,
|
ast::Operator, engine::StateWorkingSet, format_shell_error, record, LabeledError, ParseError,
|
||||||
Value,
|
Span, Spanned, Value,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// The fundamental error type for the evaluation engine. These cases represent different kinds of errors
|
/// The fundamental error type for the evaluation engine. These cases represent different kinds of errors
|
||||||
@ -639,6 +639,49 @@ pub enum ShellError {
|
|||||||
span: Span,
|
span: Span,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/// An external command exited with a non-zero exit code.
|
||||||
|
///
|
||||||
|
/// ## Resolution
|
||||||
|
///
|
||||||
|
/// Check the external command's error message.
|
||||||
|
#[error("External command had a non-zero exit code")]
|
||||||
|
#[diagnostic(code(nu::shell::non_zero_exit_code))]
|
||||||
|
NonZeroExitCode {
|
||||||
|
exit_code: NonZeroI32,
|
||||||
|
#[label("exited with code {exit_code}")]
|
||||||
|
span: Span,
|
||||||
|
},
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
/// An external command exited due to a signal.
|
||||||
|
///
|
||||||
|
/// ## Resolution
|
||||||
|
///
|
||||||
|
/// Check why the signal was sent or triggered.
|
||||||
|
#[error("External command was terminated by a signal")]
|
||||||
|
#[diagnostic(code(nu::shell::terminated_by_signal))]
|
||||||
|
TerminatedBySignal {
|
||||||
|
signal_name: String,
|
||||||
|
signal: i32,
|
||||||
|
#[label("terminated by {signal_name} ({signal})")]
|
||||||
|
span: Span,
|
||||||
|
},
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
/// An external command core dumped.
|
||||||
|
///
|
||||||
|
/// ## Resolution
|
||||||
|
///
|
||||||
|
/// Check why the core dumped was triggered.
|
||||||
|
#[error("External command core dumped")]
|
||||||
|
#[diagnostic(code(nu::shell::core_dumped))]
|
||||||
|
CoreDumped {
|
||||||
|
signal_name: String,
|
||||||
|
signal: i32,
|
||||||
|
#[label("core dumped with {signal_name} ({signal})")]
|
||||||
|
span: Span,
|
||||||
|
},
|
||||||
|
|
||||||
/// An unsupported body input was used for the respective application body type in 'http' command
|
/// An unsupported body input was used for the respective application body type in 'http' command
|
||||||
///
|
///
|
||||||
/// ## Resolution
|
/// ## Resolution
|
||||||
@ -885,21 +928,6 @@ pub enum ShellError {
|
|||||||
span: Span,
|
span: Span,
|
||||||
},
|
},
|
||||||
|
|
||||||
#[cfg(unix)]
|
|
||||||
/// An I/O operation failed.
|
|
||||||
///
|
|
||||||
/// ## Resolution
|
|
||||||
///
|
|
||||||
/// This is a generic error. Refer to the specific error message for further details.
|
|
||||||
#[error("program coredump error")]
|
|
||||||
#[diagnostic(code(nu::shell::coredump_error))]
|
|
||||||
CoredumpErrorSpanned {
|
|
||||||
msg: String,
|
|
||||||
signal: i32,
|
|
||||||
#[label("{msg}")]
|
|
||||||
span: Span,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// Tried to `cd` to a path that isn't a directory.
|
/// Tried to `cd` to a path that isn't a directory.
|
||||||
///
|
///
|
||||||
/// ## Resolution
|
/// ## Resolution
|
||||||
@ -1285,6 +1313,16 @@ This is an internal Nushell error, please file an issue https://github.com/nushe
|
|||||||
span: Span,
|
span: Span,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
#[error("Deprecated: {old_command}")]
|
||||||
|
#[diagnostic(help("for more info see {url}"))]
|
||||||
|
Deprecated {
|
||||||
|
old_command: String,
|
||||||
|
new_suggestion: String,
|
||||||
|
#[label("`{old_command}` is deprecated and will be removed in a future release. Please {new_suggestion} instead.")]
|
||||||
|
span: Span,
|
||||||
|
url: String,
|
||||||
|
},
|
||||||
|
|
||||||
/// Invalid glob pattern
|
/// Invalid glob pattern
|
||||||
///
|
///
|
||||||
/// ## Resolution
|
/// ## Resolution
|
||||||
@ -1404,10 +1442,41 @@ On Windows, this would be %USERPROFILE%\AppData\Roaming"#
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Implement as From trait
|
|
||||||
impl ShellError {
|
impl ShellError {
|
||||||
|
pub fn external_exit_code(&self) -> Option<Spanned<i32>> {
|
||||||
|
let (item, span) = match *self {
|
||||||
|
Self::NonZeroExitCode { exit_code, span } => (exit_code.into(), span),
|
||||||
|
#[cfg(unix)]
|
||||||
|
Self::TerminatedBySignal { signal, span, .. }
|
||||||
|
| Self::CoreDumped { signal, span, .. } => (-signal, span),
|
||||||
|
_ => return None,
|
||||||
|
};
|
||||||
|
Some(Spanned { item, span })
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn exit_code(&self) -> i32 {
|
||||||
|
self.external_exit_code().map(|e| e.item).unwrap_or(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn into_value(self, span: Span) -> Value {
|
||||||
|
let exit_code = self.external_exit_code();
|
||||||
|
|
||||||
|
let mut record = record! {
|
||||||
|
"msg" => Value::string(self.to_string(), span),
|
||||||
|
"debug" => Value::string(format!("{self:?}"), span),
|
||||||
|
"raw" => Value::error(self, span),
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Some(code) = exit_code {
|
||||||
|
record.push("exit_code", Value::int(code.item.into(), code.span));
|
||||||
|
}
|
||||||
|
|
||||||
|
Value::record(record, span)
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Implement as From trait
|
||||||
pub fn wrap(self, working_set: &StateWorkingSet, span: Span) -> ParseError {
|
pub fn wrap(self, working_set: &StateWorkingSet, span: Span) -> ParseError {
|
||||||
let msg = format_error(working_set, &self);
|
let msg = format_shell_error(working_set, &self);
|
||||||
ParseError::LabeledError(
|
ParseError::LabeledError(
|
||||||
msg,
|
msg,
|
||||||
"Encountered error during parse-time evaluation".into(),
|
"Encountered error during parse-time evaluation".into(),
|
||||||
|
@ -255,9 +255,6 @@ impl<'a> fmt::Display for FmtInstruction<'a> {
|
|||||||
Instruction::PopErrorHandler => {
|
Instruction::PopErrorHandler => {
|
||||||
write!(f, "{:WIDTH$}", "pop-error-handler")
|
write!(f, "{:WIDTH$}", "pop-error-handler")
|
||||||
}
|
}
|
||||||
Instruction::CheckExternalFailed { dst, src } => {
|
|
||||||
write!(f, "{:WIDTH$} {dst}, {src}", "check-external-failed")
|
|
||||||
}
|
|
||||||
Instruction::ReturnEarly { src } => {
|
Instruction::ReturnEarly { src } => {
|
||||||
write!(f, "{:WIDTH$} {src}", "return-early")
|
write!(f, "{:WIDTH$} {src}", "return-early")
|
||||||
}
|
}
|
||||||
|
@ -252,9 +252,6 @@ pub enum Instruction {
|
|||||||
/// Pop an error handler. This is not necessary when control flow is directed to the error
|
/// Pop an error handler. This is not necessary when control flow is directed to the error
|
||||||
/// handler due to an error.
|
/// handler due to an error.
|
||||||
PopErrorHandler,
|
PopErrorHandler,
|
||||||
/// Check if an external command failed. Boolean value into `dst`. `src` is preserved, but it
|
|
||||||
/// does require waiting for the command to exit.
|
|
||||||
CheckExternalFailed { dst: RegId, src: RegId },
|
|
||||||
/// Return early from the block, raising a `ShellError::Return` instead.
|
/// Return early from the block, raising a `ShellError::Return` instead.
|
||||||
///
|
///
|
||||||
/// Collecting the value is unavoidable.
|
/// Collecting the value is unavoidable.
|
||||||
@ -330,7 +327,6 @@ impl Instruction {
|
|||||||
Instruction::OnError { .. } => None,
|
Instruction::OnError { .. } => None,
|
||||||
Instruction::OnErrorInto { .. } => None,
|
Instruction::OnErrorInto { .. } => None,
|
||||||
Instruction::PopErrorHandler => None,
|
Instruction::PopErrorHandler => None,
|
||||||
Instruction::CheckExternalFailed { dst, .. } => Some(dst),
|
|
||||||
Instruction::ReturnEarly { .. } => None,
|
Instruction::ReturnEarly { .. } => None,
|
||||||
Instruction::Return { .. } => None,
|
Instruction::Return { .. } => None,
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
//! Module managing the streaming of raw bytes between pipeline elements
|
//! Module managing the streaming of raw bytes between pipeline elements
|
||||||
use crate::{
|
use crate::{
|
||||||
process::{ChildPipe, ChildProcess, ExitStatus},
|
process::{ChildPipe, ChildProcess},
|
||||||
ErrSpan, IntoSpanned, OutDest, PipelineData, ShellError, Signals, Span, Type, Value,
|
ErrSpan, IntoSpanned, OutDest, PipelineData, ShellError, Signals, Span, Type, Value,
|
||||||
};
|
};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
@ -548,25 +548,19 @@ impl ByteStream {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Consume and drop all bytes of the [`ByteStream`].
|
/// Consume and drop all bytes of the [`ByteStream`].
|
||||||
///
|
pub fn drain(self) -> Result<(), ShellError> {
|
||||||
/// If the source of the [`ByteStream`] is [`ByteStreamSource::Child`],
|
|
||||||
/// then the [`ExitStatus`] of the [`ChildProcess`] is returned.
|
|
||||||
pub fn drain(self) -> Result<Option<ExitStatus>, ShellError> {
|
|
||||||
match self.stream {
|
match self.stream {
|
||||||
ByteStreamSource::Read(read) => {
|
ByteStreamSource::Read(read) => {
|
||||||
copy_with_signals(read, io::sink(), self.span, &self.signals)?;
|
copy_with_signals(read, io::sink(), self.span, &self.signals)?;
|
||||||
Ok(None)
|
Ok(())
|
||||||
}
|
}
|
||||||
ByteStreamSource::File(_) => Ok(None),
|
ByteStreamSource::File(_) => Ok(()),
|
||||||
ByteStreamSource::Child(child) => Ok(Some(child.wait()?)),
|
ByteStreamSource::Child(child) => child.wait(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Print all bytes of the [`ByteStream`] to stdout or stderr.
|
/// Print all bytes of the [`ByteStream`] to stdout or stderr.
|
||||||
///
|
pub fn print(self, to_stderr: bool) -> Result<(), ShellError> {
|
||||||
/// If the source of the [`ByteStream`] is [`ByteStreamSource::Child`],
|
|
||||||
/// then the [`ExitStatus`] of the [`ChildProcess`] is returned.
|
|
||||||
pub fn print(self, to_stderr: bool) -> Result<Option<ExitStatus>, ShellError> {
|
|
||||||
if to_stderr {
|
if to_stderr {
|
||||||
self.write_to(&mut io::stderr())
|
self.write_to(&mut io::stderr())
|
||||||
} else {
|
} else {
|
||||||
@ -575,20 +569,15 @@ impl ByteStream {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Write all bytes of the [`ByteStream`] to `dest`.
|
/// Write all bytes of the [`ByteStream`] to `dest`.
|
||||||
///
|
pub fn write_to(self, dest: impl Write) -> Result<(), ShellError> {
|
||||||
/// If the source of the [`ByteStream`] is [`ByteStreamSource::Child`],
|
|
||||||
/// then the [`ExitStatus`] of the [`ChildProcess`] is returned.
|
|
||||||
pub fn write_to(self, dest: impl Write) -> Result<Option<ExitStatus>, ShellError> {
|
|
||||||
let span = self.span;
|
let span = self.span;
|
||||||
let signals = &self.signals;
|
let signals = &self.signals;
|
||||||
match self.stream {
|
match self.stream {
|
||||||
ByteStreamSource::Read(read) => {
|
ByteStreamSource::Read(read) => {
|
||||||
copy_with_signals(read, dest, span, signals)?;
|
copy_with_signals(read, dest, span, signals)?;
|
||||||
Ok(None)
|
|
||||||
}
|
}
|
||||||
ByteStreamSource::File(file) => {
|
ByteStreamSource::File(file) => {
|
||||||
copy_with_signals(file, dest, span, signals)?;
|
copy_with_signals(file, dest, span, signals)?;
|
||||||
Ok(None)
|
|
||||||
}
|
}
|
||||||
ByteStreamSource::Child(mut child) => {
|
ByteStreamSource::Child(mut child) => {
|
||||||
// All `OutDest`s except `OutDest::Capture` will cause `stderr` to be `None`.
|
// All `OutDest`s except `OutDest::Capture` will cause `stderr` to be `None`.
|
||||||
@ -606,26 +595,25 @@ impl ByteStream {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(Some(child.wait()?))
|
child.wait()?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn write_to_out_dests(
|
pub(crate) fn write_to_out_dests(
|
||||||
self,
|
self,
|
||||||
stdout: &OutDest,
|
stdout: &OutDest,
|
||||||
stderr: &OutDest,
|
stderr: &OutDest,
|
||||||
) -> Result<Option<ExitStatus>, ShellError> {
|
) -> Result<(), ShellError> {
|
||||||
let span = self.span;
|
let span = self.span;
|
||||||
let signals = &self.signals;
|
let signals = &self.signals;
|
||||||
|
|
||||||
match self.stream {
|
match self.stream {
|
||||||
ByteStreamSource::Read(read) => {
|
ByteStreamSource::Read(read) => {
|
||||||
write_to_out_dest(read, stdout, true, span, signals)?;
|
write_to_out_dest(read, stdout, true, span, signals)?;
|
||||||
Ok(None)
|
|
||||||
}
|
}
|
||||||
ByteStreamSource::File(file) => {
|
ByteStreamSource::File(file) => match stdout {
|
||||||
match stdout {
|
|
||||||
OutDest::Pipe | OutDest::Capture | OutDest::Null => {}
|
OutDest::Pipe | OutDest::Capture | OutDest::Null => {}
|
||||||
OutDest::Inherit => {
|
OutDest::Inherit => {
|
||||||
copy_with_signals(file, io::stdout(), span, signals)?;
|
copy_with_signals(file, io::stdout(), span, signals)?;
|
||||||
@ -633,9 +621,7 @@ impl ByteStream {
|
|||||||
OutDest::File(f) => {
|
OutDest::File(f) => {
|
||||||
copy_with_signals(file, f.as_ref(), span, signals)?;
|
copy_with_signals(file, f.as_ref(), span, signals)?;
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
Ok(None)
|
|
||||||
}
|
|
||||||
ByteStreamSource::Child(mut child) => {
|
ByteStreamSource::Child(mut child) => {
|
||||||
match (child.stdout.take(), child.stderr.take()) {
|
match (child.stdout.take(), child.stderr.take()) {
|
||||||
(Some(out), Some(err)) => {
|
(Some(out), Some(err)) => {
|
||||||
@ -682,9 +668,11 @@ impl ByteStream {
|
|||||||
}
|
}
|
||||||
(None, None) => {}
|
(None, None) => {}
|
||||||
}
|
}
|
||||||
Ok(Some(child.wait()?))
|
child.wait()?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
ast::{Call, PathMember},
|
ast::{Call, PathMember},
|
||||||
engine::{EngineState, Stack},
|
engine::{EngineState, Stack},
|
||||||
process::{ChildPipe, ChildProcess, ExitStatus},
|
ByteStream, ByteStreamType, Config, ListStream, OutDest, PipelineMetadata, Range, ShellError,
|
||||||
ByteStream, ByteStreamType, Config, ErrSpan, ListStream, OutDest, PipelineMetadata, Range,
|
Signals, Span, Type, Value,
|
||||||
ShellError, Signals, Span, Type, Value,
|
|
||||||
};
|
};
|
||||||
use nu_utils::{stderr_write_all_and_flush, stdout_write_all_and_flush};
|
use nu_utils::{stderr_write_all_and_flush, stdout_write_all_and_flush};
|
||||||
use std::io::{Cursor, Read, Write};
|
use std::io::Write;
|
||||||
|
|
||||||
const LINE_ENDING_PATTERN: &[char] = &['\r', '\n'];
|
const LINE_ENDING_PATTERN: &[char] = &['\r', '\n'];
|
||||||
|
|
||||||
@ -52,16 +51,6 @@ impl PipelineData {
|
|||||||
PipelineData::Empty
|
PipelineData::Empty
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create a `PipelineData::ByteStream` with proper exit_code
|
|
||||||
///
|
|
||||||
/// It's useful to break running without raising error at user level.
|
|
||||||
pub fn new_external_stream_with_only_exit_code(exit_code: i32) -> PipelineData {
|
|
||||||
let span = Span::unknown();
|
|
||||||
let mut child = ChildProcess::from_raw(None, None, None, span);
|
|
||||||
child.set_exit_code(exit_code);
|
|
||||||
PipelineData::ByteStream(ByteStream::child(child, span), None)
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn metadata(&self) -> Option<PipelineMetadata> {
|
pub fn metadata(&self) -> Option<PipelineMetadata> {
|
||||||
match self {
|
match self {
|
||||||
PipelineData::Empty => None,
|
PipelineData::Empty => None,
|
||||||
@ -182,22 +171,17 @@ impl PipelineData {
|
|||||||
/// without consuming input and without writing anything.
|
/// without consuming input and without writing anything.
|
||||||
///
|
///
|
||||||
/// For the other [`OutDest`]s, the given `PipelineData` will be completely consumed
|
/// For the other [`OutDest`]s, the given `PipelineData` will be completely consumed
|
||||||
/// and `PipelineData::Empty` will be returned, unless the data is from an external stream,
|
/// and `PipelineData::Empty` will be returned (assuming no errors).
|
||||||
/// in which case an external stream containing only that exit code will be returned.
|
|
||||||
pub fn write_to_out_dests(
|
pub fn write_to_out_dests(
|
||||||
self,
|
self,
|
||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
) -> Result<PipelineData, ShellError> {
|
) -> Result<PipelineData, ShellError> {
|
||||||
match (self, stack.stdout()) {
|
match (self, stack.stdout()) {
|
||||||
(PipelineData::ByteStream(stream, ..), stdout) => {
|
|
||||||
if let Some(exit_status) = stream.write_to_out_dests(stdout, stack.stderr())? {
|
|
||||||
return Ok(PipelineData::new_external_stream_with_only_exit_code(
|
|
||||||
exit_status.code(),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
(data, OutDest::Pipe | OutDest::Capture) => return Ok(data),
|
(data, OutDest::Pipe | OutDest::Capture) => return Ok(data),
|
||||||
|
(PipelineData::ByteStream(stream, ..), stdout) => {
|
||||||
|
stream.write_to_out_dests(stdout, stack.stderr())?;
|
||||||
|
}
|
||||||
(PipelineData::Empty, ..) => {}
|
(PipelineData::Empty, ..) => {}
|
||||||
(PipelineData::Value(..), OutDest::Null) => {}
|
(PipelineData::Value(..), OutDest::Null) => {}
|
||||||
(PipelineData::ListStream(stream, ..), OutDest::Null) => {
|
(PipelineData::ListStream(stream, ..), OutDest::Null) => {
|
||||||
@ -227,15 +211,12 @@ impl PipelineData {
|
|||||||
Ok(PipelineData::Empty)
|
Ok(PipelineData::Empty)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn drain(self) -> Result<Option<ExitStatus>, ShellError> {
|
pub fn drain(self) -> Result<(), ShellError> {
|
||||||
match self {
|
match self {
|
||||||
PipelineData::Empty => Ok(None),
|
PipelineData::Empty => Ok(()),
|
||||||
PipelineData::Value(Value::Error { error, .. }, ..) => Err(*error),
|
PipelineData::Value(Value::Error { error, .. }, ..) => Err(*error),
|
||||||
PipelineData::Value(..) => Ok(None),
|
PipelineData::Value(..) => Ok(()),
|
||||||
PipelineData::ListStream(stream, ..) => {
|
PipelineData::ListStream(stream, ..) => stream.drain(),
|
||||||
stream.drain()?;
|
|
||||||
Ok(None)
|
|
||||||
}
|
|
||||||
PipelineData::ByteStream(stream, ..) => stream.drain(),
|
PipelineData::ByteStream(stream, ..) => stream.drain(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -496,68 +477,6 @@ impl PipelineData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Try to catch the external command exit status and detect if it failed.
|
|
||||||
///
|
|
||||||
/// This is useful for external commands with semicolon, we can detect errors early to avoid
|
|
||||||
/// commands after the semicolon running.
|
|
||||||
///
|
|
||||||
/// Returns `self` and a flag that indicates if the external command run failed. If `self` is
|
|
||||||
/// not [`PipelineData::ByteStream`], the flag will be `false`.
|
|
||||||
///
|
|
||||||
/// Currently this will consume an external command to completion.
|
|
||||||
pub fn check_external_failed(self) -> Result<(Self, bool), ShellError> {
|
|
||||||
if let PipelineData::ByteStream(stream, metadata) = self {
|
|
||||||
// Preserve stream attributes
|
|
||||||
let span = stream.span();
|
|
||||||
let type_ = stream.type_();
|
|
||||||
let known_size = stream.known_size();
|
|
||||||
match stream.into_child() {
|
|
||||||
Ok(mut child) => {
|
|
||||||
// Only check children without stdout. This means that nothing
|
|
||||||
// later in the pipeline can possibly consume output from this external command.
|
|
||||||
if child.stdout.is_none() {
|
|
||||||
// Note:
|
|
||||||
// In run-external's implementation detail, the result sender thread
|
|
||||||
// send out stderr message first, then stdout message, then exit_code.
|
|
||||||
//
|
|
||||||
// In this clause, we already make sure that `stdout` is None
|
|
||||||
// But not the case of `stderr`, so if `stderr` is not None
|
|
||||||
// We need to consume stderr message before reading external commands' exit code.
|
|
||||||
//
|
|
||||||
// Or we'll never have a chance to read exit_code if stderr producer produce too much stderr message.
|
|
||||||
// So we consume stderr stream and rebuild it.
|
|
||||||
let stderr = child
|
|
||||||
.stderr
|
|
||||||
.take()
|
|
||||||
.map(|mut stderr| {
|
|
||||||
let mut buf = Vec::new();
|
|
||||||
stderr.read_to_end(&mut buf).err_span(span)?;
|
|
||||||
Ok::<_, ShellError>(buf)
|
|
||||||
})
|
|
||||||
.transpose()?;
|
|
||||||
|
|
||||||
let code = child.wait()?.code();
|
|
||||||
let mut child = ChildProcess::from_raw(None, None, None, span);
|
|
||||||
if let Some(stderr) = stderr {
|
|
||||||
child.stderr = Some(ChildPipe::Tee(Box::new(Cursor::new(stderr))));
|
|
||||||
}
|
|
||||||
child.set_exit_code(code);
|
|
||||||
let stream = ByteStream::child(child, span).with_type(type_);
|
|
||||||
Ok((PipelineData::ByteStream(stream, metadata), code != 0))
|
|
||||||
} else {
|
|
||||||
let stream = ByteStream::child(child, span)
|
|
||||||
.with_type(type_)
|
|
||||||
.with_known_size(known_size);
|
|
||||||
Ok((PipelineData::ByteStream(stream, metadata), false))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Err(stream) => Ok((PipelineData::ByteStream(stream, metadata), false)),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
Ok((self, false))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Try to convert Value from Value::Range to Value::List.
|
/// Try to convert Value from Value::Range to Value::List.
|
||||||
/// This is useful to expand Value::Range into array notation, specifically when
|
/// This is useful to expand Value::Range into array notation, specifically when
|
||||||
/// converting `to json` or `to nuon`.
|
/// converting `to json` or `to nuon`.
|
||||||
@ -613,7 +532,7 @@ impl PipelineData {
|
|||||||
stack: &mut Stack,
|
stack: &mut Stack,
|
||||||
no_newline: bool,
|
no_newline: bool,
|
||||||
to_stderr: bool,
|
to_stderr: bool,
|
||||||
) -> Result<Option<ExitStatus>, ShellError> {
|
) -> Result<(), ShellError> {
|
||||||
match self {
|
match self {
|
||||||
// Print byte streams directly as long as they aren't binary.
|
// Print byte streams directly as long as they aren't binary.
|
||||||
PipelineData::ByteStream(stream, ..) if stream.type_() != ByteStreamType::Binary => {
|
PipelineData::ByteStream(stream, ..) if stream.type_() != ByteStreamType::Binary => {
|
||||||
@ -650,14 +569,14 @@ impl PipelineData {
|
|||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
no_newline: bool,
|
no_newline: bool,
|
||||||
to_stderr: bool,
|
to_stderr: bool,
|
||||||
) -> Result<Option<ExitStatus>, ShellError> {
|
) -> Result<(), ShellError> {
|
||||||
if let PipelineData::Value(Value::Binary { val: bytes, .. }, _) = self {
|
if let PipelineData::Value(Value::Binary { val: bytes, .. }, _) = self {
|
||||||
if to_stderr {
|
if to_stderr {
|
||||||
stderr_write_all_and_flush(bytes)?;
|
stderr_write_all_and_flush(bytes)?;
|
||||||
} else {
|
} else {
|
||||||
stdout_write_all_and_flush(bytes)?;
|
stdout_write_all_and_flush(bytes)?;
|
||||||
}
|
}
|
||||||
Ok(None)
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
self.write_all_and_flush(engine_state, no_newline, to_stderr)
|
self.write_all_and_flush(engine_state, no_newline, to_stderr)
|
||||||
}
|
}
|
||||||
@ -668,7 +587,7 @@ impl PipelineData {
|
|||||||
engine_state: &EngineState,
|
engine_state: &EngineState,
|
||||||
no_newline: bool,
|
no_newline: bool,
|
||||||
to_stderr: bool,
|
to_stderr: bool,
|
||||||
) -> Result<Option<ExitStatus>, ShellError> {
|
) -> Result<(), ShellError> {
|
||||||
if let PipelineData::ByteStream(stream, ..) = self {
|
if let PipelineData::ByteStream(stream, ..) = self {
|
||||||
// Copy ByteStreams directly
|
// Copy ByteStreams directly
|
||||||
stream.print(to_stderr)
|
stream.print(to_stderr)
|
||||||
@ -692,7 +611,7 @@ impl PipelineData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(None)
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,21 +23,16 @@ impl ExitStatusFuture {
|
|||||||
ExitStatusFuture::Finished(Err(err)) => Err(err.as_ref().clone()),
|
ExitStatusFuture::Finished(Err(err)) => Err(err.as_ref().clone()),
|
||||||
ExitStatusFuture::Running(receiver) => {
|
ExitStatusFuture::Running(receiver) => {
|
||||||
let code = match receiver.recv() {
|
let code = match receiver.recv() {
|
||||||
Ok(Ok(status)) => {
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
if let ExitStatus::Signaled {
|
Ok(Ok(
|
||||||
signal,
|
status @ ExitStatus::Signaled {
|
||||||
core_dumped: true,
|
core_dumped: true, ..
|
||||||
} = status
|
},
|
||||||
{
|
)) => {
|
||||||
return Err(ShellError::CoredumpErrorSpanned {
|
status.check_ok(span)?;
|
||||||
msg: format!("coredump detected. received signal: {signal}"),
|
|
||||||
signal,
|
|
||||||
span,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
Ok(status)
|
Ok(status)
|
||||||
}
|
}
|
||||||
|
Ok(Ok(status)) => Ok(status),
|
||||||
Ok(Err(err)) => Err(ShellError::IOErrorSpanned {
|
Ok(Err(err)) => Err(ShellError::IOErrorSpanned {
|
||||||
msg: format!("failed to get exit code: {err:?}"),
|
msg: format!("failed to get exit code: {err:?}"),
|
||||||
span,
|
span,
|
||||||
@ -187,13 +182,12 @@ impl ChildProcess {
|
|||||||
Vec::new()
|
Vec::new()
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: check exit_status
|
self.exit_status.wait(self.span)?.check_ok(self.span)?;
|
||||||
self.exit_status.wait(self.span)?;
|
|
||||||
|
|
||||||
Ok(bytes)
|
Ok(bytes)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn wait(mut self) -> Result<ExitStatus, ShellError> {
|
pub fn wait(mut self) -> Result<(), ShellError> {
|
||||||
if let Some(stdout) = self.stdout.take() {
|
if let Some(stdout) = self.stdout.take() {
|
||||||
let stderr = self
|
let stderr = self
|
||||||
.stderr
|
.stderr
|
||||||
@ -229,7 +223,7 @@ impl ChildProcess {
|
|||||||
consume_pipe(stderr).err_span(self.span)?;
|
consume_pipe(stderr).err_span(self.span)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.exit_status.wait(self.span)
|
self.exit_status.wait(self.span)?.check_ok(self.span)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn try_wait(&mut self) -> Result<Option<ExitStatus>, ShellError> {
|
pub fn try_wait(&mut self) -> Result<Option<ExitStatus>, ShellError> {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
use crate::{ShellError, Span};
|
||||||
use std::process;
|
use std::process;
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
@ -18,6 +19,47 @@ impl ExitStatus {
|
|||||||
ExitStatus::Signaled { signal, .. } => -signal,
|
ExitStatus::Signaled { signal, .. } => -signal,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn check_ok(self, span: Span) -> Result<(), ShellError> {
|
||||||
|
match self {
|
||||||
|
ExitStatus::Exited(exit_code) => {
|
||||||
|
if let Ok(exit_code) = exit_code.try_into() {
|
||||||
|
Err(ShellError::NonZeroExitCode { exit_code, span })
|
||||||
|
} else {
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[cfg(unix)]
|
||||||
|
ExitStatus::Signaled {
|
||||||
|
signal,
|
||||||
|
core_dumped,
|
||||||
|
} => {
|
||||||
|
use nix::sys::signal::Signal;
|
||||||
|
|
||||||
|
let sig = Signal::try_from(signal);
|
||||||
|
|
||||||
|
if sig == Ok(Signal::SIGPIPE) {
|
||||||
|
// Processes often exit with SIGPIPE, but this is not an error condition.
|
||||||
|
Ok(())
|
||||||
|
} else {
|
||||||
|
let signal_name = sig.map(Signal::as_str).unwrap_or("unknown signal").into();
|
||||||
|
Err(if core_dumped {
|
||||||
|
ShellError::CoreDumped {
|
||||||
|
signal_name,
|
||||||
|
signal,
|
||||||
|
span,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
ShellError::TerminatedBySignal {
|
||||||
|
signal_name,
|
||||||
|
signal,
|
||||||
|
span,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
@ -52,7 +52,7 @@ fn filesize_format_auto_metric_false() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn fancy_default_errors() {
|
fn fancy_default_errors() {
|
||||||
let actual = nu!(nu_repl_code(&[
|
let code = nu_repl_code(&[
|
||||||
r#"def force_error [x] {
|
r#"def force_error [x] {
|
||||||
error make {
|
error make {
|
||||||
msg: "oh no!"
|
msg: "oh no!"
|
||||||
@ -62,8 +62,10 @@ fn fancy_default_errors() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}"#,
|
}"#,
|
||||||
r#"force_error "My error""#
|
r#"force_error "My error""#,
|
||||||
]));
|
]);
|
||||||
|
|
||||||
|
let actual = nu!(format!("try {{ {code}; null }}"));
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
actual.err,
|
actual.err,
|
||||||
@ -73,7 +75,7 @@ fn fancy_default_errors() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn narratable_errors() {
|
fn narratable_errors() {
|
||||||
let actual = nu!(nu_repl_code(&[
|
let code = nu_repl_code(&[
|
||||||
r#"$env.config = { error_style: "plain" }"#,
|
r#"$env.config = { error_style: "plain" }"#,
|
||||||
r#"def force_error [x] {
|
r#"def force_error [x] {
|
||||||
error make {
|
error make {
|
||||||
@ -85,7 +87,9 @@ fn narratable_errors() {
|
|||||||
}
|
}
|
||||||
}"#,
|
}"#,
|
||||||
r#"force_error "my error""#,
|
r#"force_error "my error""#,
|
||||||
]));
|
]);
|
||||||
|
|
||||||
|
let actual = nu!(format!("try {{ {code}; null }}"));
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
actual.err,
|
actual.err,
|
||||||
|
@ -5,7 +5,7 @@ use nu_parser::parse;
|
|||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
debugger::WithoutDebug,
|
debugger::WithoutDebug,
|
||||||
engine::{FileStack, Stack, StateWorkingSet, VirtualPath},
|
engine::{FileStack, Stack, StateWorkingSet, VirtualPath},
|
||||||
report_error, PipelineData,
|
report_parse_error, PipelineData,
|
||||||
};
|
};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
@ -85,7 +85,7 @@ use std pwd
|
|||||||
working_set.files.pop();
|
working_set.files.pop();
|
||||||
|
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
}
|
}
|
||||||
|
|
||||||
(block, working_set.render())
|
(block, working_set.render())
|
||||||
|
@ -174,6 +174,14 @@ $env.config = {
|
|||||||
|
|
||||||
error_style: "fancy" # "fancy" or "plain" for screen reader-friendly error messages
|
error_style: "fancy" # "fancy" or "plain" for screen reader-friendly error messages
|
||||||
|
|
||||||
|
# Whether an error message should be printed if an error of a certain kind is triggered.
|
||||||
|
display_errors: {
|
||||||
|
exit_code: false # assume the external command prints an error message
|
||||||
|
# Core dump errors are always printed, and SIGPIPE never triggers an error.
|
||||||
|
# The setting below controls message printing for termination by all other signals.
|
||||||
|
termination_signal: true
|
||||||
|
}
|
||||||
|
|
||||||
# datetime_format determines what a datetime rendered in the shell would look like.
|
# datetime_format determines what a datetime rendered in the shell would look like.
|
||||||
# Behavior without this configuration point will be to "humanize" the datetime display,
|
# Behavior without this configuration point will be to "humanize" the datetime display,
|
||||||
# showing something like "a day ago."
|
# showing something like "a day ago."
|
||||||
|
@ -3,7 +3,7 @@ use nu_parser::{escape_for_script_arg, escape_quote_string, parse};
|
|||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
ast::{Expr, Expression},
|
ast::{Expr, Expression},
|
||||||
engine::StateWorkingSet,
|
engine::StateWorkingSet,
|
||||||
report_error,
|
report_parse_error,
|
||||||
};
|
};
|
||||||
use nu_utils::stdout_write_all_and_flush;
|
use nu_utils::stdout_write_all_and_flush;
|
||||||
|
|
||||||
@ -68,7 +68,7 @@ pub(crate) fn parse_commandline_args(
|
|||||||
|
|
||||||
let output = parse(&mut working_set, None, commandline_args.as_bytes(), false);
|
let output = parse(&mut working_set, None, commandline_args.as_bytes(), false);
|
||||||
if let Some(err) = working_set.parse_errors.first() {
|
if let Some(err) = working_set.parse_errors.first() {
|
||||||
report_error(&working_set, err);
|
report_parse_error(&working_set, err);
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ use nu_cli::{eval_config_contents, eval_source};
|
|||||||
use nu_path::canonicalize_with;
|
use nu_path::canonicalize_with;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error, report_error_new, Config, ParseError, PipelineData, Spanned,
|
report_parse_error, report_shell_error, Config, ParseError, PipelineData, Spanned,
|
||||||
};
|
};
|
||||||
use nu_utils::{get_default_config, get_default_env};
|
use nu_utils::{get_default_config, get_default_env};
|
||||||
use std::{
|
use std::{
|
||||||
@ -34,19 +34,17 @@ pub(crate) fn read_config_file(
|
|||||||
);
|
);
|
||||||
// Load config startup file
|
// Load config startup file
|
||||||
if let Some(file) = config_file {
|
if let Some(file) = config_file {
|
||||||
let working_set = StateWorkingSet::new(engine_state);
|
|
||||||
|
|
||||||
match engine_state.cwd_as_string(Some(stack)) {
|
match engine_state.cwd_as_string(Some(stack)) {
|
||||||
Ok(cwd) => {
|
Ok(cwd) => {
|
||||||
if let Ok(path) = canonicalize_with(&file.item, cwd) {
|
if let Ok(path) = canonicalize_with(&file.item, cwd) {
|
||||||
eval_config_contents(path, engine_state, stack);
|
eval_config_contents(path, engine_state, stack);
|
||||||
} else {
|
} else {
|
||||||
let e = ParseError::FileNotFound(file.item, file.span);
|
let e = ParseError::FileNotFound(file.item, file.span);
|
||||||
report_error(&working_set, &e);
|
report_parse_error(&StateWorkingSet::new(engine_state), &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
report_error(&working_set, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if let Some(mut config_path) = nu_path::config_dir() {
|
} else if let Some(mut config_path) = nu_path::config_dir() {
|
||||||
@ -168,11 +166,11 @@ pub(crate) fn read_default_env_file(engine_state: &mut EngineState, stack: &mut
|
|||||||
match engine_state.cwd(Some(stack)) {
|
match engine_state.cwd(Some(stack)) {
|
||||||
Ok(cwd) => {
|
Ok(cwd) => {
|
||||||
if let Err(e) = engine_state.merge_env(stack, cwd) {
|
if let Err(e) = engine_state.merge_env(stack, cwd) {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -254,11 +252,11 @@ fn eval_default_config(
|
|||||||
match engine_state.cwd(Some(stack)) {
|
match engine_state.cwd(Some(stack)) {
|
||||||
Ok(cwd) => {
|
Ok(cwd) => {
|
||||||
if let Err(e) = engine_state.merge_env(stack, cwd) {
|
if let Err(e) = engine_state.merge_env(stack, cwd) {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
report_error_new(engine_state, &e);
|
report_shell_error(engine_state, &e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ use nu_cli::NuCompleter;
|
|||||||
use nu_parser::{flatten_block, parse, FlatShape};
|
use nu_parser::{flatten_block, parse, FlatShape};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
report_error_new, DeclId, ShellError, Span, Value, VarId,
|
report_shell_error, DeclId, ShellError, Span, Value, VarId,
|
||||||
};
|
};
|
||||||
use reedline::Completer;
|
use reedline::Completer;
|
||||||
use serde_json::{json, Value as JsonValue};
|
use serde_json::{json, Value as JsonValue};
|
||||||
@ -55,7 +55,7 @@ fn read_in_file<'a>(
|
|||||||
let file = std::fs::read(file_path)
|
let file = std::fs::read(file_path)
|
||||||
.into_diagnostic()
|
.into_diagnostic()
|
||||||
.unwrap_or_else(|e| {
|
.unwrap_or_else(|e| {
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
engine_state,
|
engine_state,
|
||||||
&ShellError::FileNotFoundCustom {
|
&ShellError::FileNotFoundCustom {
|
||||||
msg: format!("Could not read file '{}': {:?}", file_path, e.to_string()),
|
msg: format!("Could not read file '{}': {:?}", file_path, e.to_string()),
|
||||||
|
@ -25,7 +25,7 @@ use nu_cmd_base::util::get_init_cwd;
|
|||||||
use nu_lsp::LanguageServer;
|
use nu_lsp::LanguageServer;
|
||||||
use nu_path::canonicalize_with;
|
use nu_path::canonicalize_with;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::EngineState, report_error_new, ByteStream, PipelineData, ShellError, Span, Spanned,
|
engine::EngineState, report_shell_error, ByteStream, PipelineData, ShellError, Span, Spanned,
|
||||||
Value,
|
Value,
|
||||||
};
|
};
|
||||||
use nu_std::load_standard_library;
|
use nu_std::load_standard_library;
|
||||||
@ -67,7 +67,7 @@ fn main() -> Result<()> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if let Err(err) = engine_state.merge_delta(delta) {
|
if let Err(err) = engine_state.merge_delta(delta) {
|
||||||
report_error_new(&engine_state, &err);
|
report_shell_error(&engine_state, &err);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make this conditional in the future
|
// TODO: make this conditional in the future
|
||||||
@ -92,7 +92,7 @@ fn main() -> Result<()> {
|
|||||||
.unwrap_or(PathBuf::from(&xdg_config_home))
|
.unwrap_or(PathBuf::from(&xdg_config_home))
|
||||||
.join("nushell")
|
.join("nushell")
|
||||||
{
|
{
|
||||||
report_error_new(
|
report_shell_error(
|
||||||
&engine_state,
|
&engine_state,
|
||||||
&ShellError::InvalidXdgConfig {
|
&ShellError::InvalidXdgConfig {
|
||||||
xdg: xdg_config_home,
|
xdg: xdg_config_home,
|
||||||
@ -164,7 +164,7 @@ fn main() -> Result<()> {
|
|||||||
let (args_to_nushell, script_name, args_to_script) = gather_commandline_args();
|
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)
|
let parsed_nu_cli_args = parse_commandline_args(&args_to_nushell.join(" "), &mut engine_state)
|
||||||
.unwrap_or_else(|err| {
|
.unwrap_or_else(|err| {
|
||||||
report_error_new(&engine_state, &err);
|
report_shell_error(&engine_state, &err);
|
||||||
std::process::exit(1)
|
std::process::exit(1)
|
||||||
});
|
});
|
||||||
|
|
||||||
|
34
src/run.rs
34
src/run.rs
@ -10,7 +10,7 @@ use nu_cli::read_plugin_file;
|
|||||||
use nu_cli::{evaluate_commands, evaluate_file, evaluate_repl, EvaluateCommandsOpts};
|
use nu_cli::{evaluate_commands, evaluate_file, evaluate_repl, EvaluateCommandsOpts};
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{EngineState, Stack},
|
engine::{EngineState, Stack},
|
||||||
report_error_new, PipelineData, Spanned,
|
report_shell_error, PipelineData, Spanned,
|
||||||
};
|
};
|
||||||
use nu_utils::perf;
|
use nu_utils::perf;
|
||||||
|
|
||||||
@ -85,7 +85,7 @@ pub(crate) fn run_commands(
|
|||||||
engine_state.generate_nu_constant();
|
engine_state.generate_nu_constant();
|
||||||
|
|
||||||
let start_time = std::time::Instant::now();
|
let start_time = std::time::Instant::now();
|
||||||
if let Err(err) = evaluate_commands(
|
let result = evaluate_commands(
|
||||||
commands,
|
commands,
|
||||||
engine_state,
|
engine_state,
|
||||||
&mut stack,
|
&mut stack,
|
||||||
@ -95,11 +95,13 @@ pub(crate) fn run_commands(
|
|||||||
error_style: parsed_nu_cli_args.error_style,
|
error_style: parsed_nu_cli_args.error_style,
|
||||||
no_newline: parsed_nu_cli_args.no_newline.is_some(),
|
no_newline: parsed_nu_cli_args.no_newline.is_some(),
|
||||||
},
|
},
|
||||||
) {
|
);
|
||||||
report_error_new(engine_state, &err);
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
perf!("evaluate_commands", start_time, use_color);
|
perf!("evaluate_commands", start_time, use_color);
|
||||||
|
|
||||||
|
if let Err(err) = result {
|
||||||
|
report_shell_error(engine_state, &err);
|
||||||
|
std::process::exit(err.exit_code());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn run_file(
|
pub(crate) fn run_file(
|
||||||
@ -158,29 +160,19 @@ pub(crate) fn run_file(
|
|||||||
engine_state.generate_nu_constant();
|
engine_state.generate_nu_constant();
|
||||||
|
|
||||||
let start_time = std::time::Instant::now();
|
let start_time = std::time::Instant::now();
|
||||||
if let Err(err) = evaluate_file(
|
let result = evaluate_file(
|
||||||
script_name,
|
script_name,
|
||||||
&args_to_script,
|
&args_to_script,
|
||||||
engine_state,
|
engine_state,
|
||||||
&mut stack,
|
&mut stack,
|
||||||
input,
|
input,
|
||||||
) {
|
);
|
||||||
report_error_new(engine_state, &err);
|
|
||||||
std::process::exit(1);
|
|
||||||
}
|
|
||||||
perf!("evaluate_file", start_time, use_color);
|
perf!("evaluate_file", start_time, use_color);
|
||||||
|
|
||||||
let start_time = std::time::Instant::now();
|
if let Err(err) = result {
|
||||||
let last_exit_code = stack.get_env_var(&*engine_state, "LAST_EXIT_CODE");
|
report_shell_error(engine_state, &err);
|
||||||
if let Some(last_exit_code) = last_exit_code {
|
std::process::exit(err.exit_code());
|
||||||
let value = last_exit_code.as_int();
|
|
||||||
if let Ok(value) = value {
|
|
||||||
if value != 0 {
|
|
||||||
std::process::exit(value as i32);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
perf!("get exit code", start_time, use_color);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn run_repl(
|
pub(crate) fn run_repl(
|
||||||
|
@ -182,13 +182,6 @@ fn basic_outerr_pipe_works(#[case] redirection: &str) {
|
|||||||
assert_eq!(actual.out, "7");
|
assert_eq!(actual.out, "7");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn err_pipe_with_failed_external_works() {
|
|
||||||
let actual =
|
|
||||||
nu!(r#"with-env { FOO: "bar" } { nu --testbin echo_env_stderr_fail FOO e>| str length }"#);
|
|
||||||
assert_eq!(actual.out, "3");
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn dont_run_glob_if_pass_variable_to_external() {
|
fn dont_run_glob_if_pass_variable_to_external() {
|
||||||
Playground::setup("dont_run_glob", |dirs, sandbox| {
|
Playground::setup("dont_run_glob", |dirs, sandbox| {
|
||||||
@ -626,3 +619,24 @@ mod external_command_arguments {
|
|||||||
assert_eq!(actual.out, r#"expression=-r\" -w"#);
|
assert_eq!(actual.out, r#"expression=-r\" -w"#);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn exit_code_stops_execution_closure() {
|
||||||
|
let actual = nu!("[1 2] | each {|x| nu -c $'exit ($x)'; print $x }");
|
||||||
|
assert!(actual.out.is_empty());
|
||||||
|
assert!(actual.err.contains("exited with code 1"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn exit_code_stops_execution_custom_command() {
|
||||||
|
let actual = nu!("def cmd [] { nu -c 'exit 42'; 'ok1' }; cmd; print 'ok2'");
|
||||||
|
assert!(actual.out.is_empty());
|
||||||
|
assert!(actual.err.contains("exited with code 42"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn exit_code_stops_execution_for_loop() {
|
||||||
|
let actual = nu!("for x in [0 1] { nu -c 'exit 42'; print $x }");
|
||||||
|
assert!(actual.out.is_empty());
|
||||||
|
assert!(actual.err.contains("exited with code 42"));
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user