From 11375c19d2bb73971533b293e232cbd9ef5a025b Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:19:49 -0600 Subject: [PATCH] better error handling for `view source` (#14624) # Description There is an opportunity to give a bogus block id to view source. This makes it more resilient and not panic when an invalid block id is passed in. ![image](https://github.com/user-attachments/assets/67ebbffc-be57-4ce3-8700-90f1ed080f9b) # User-Facing Changes # Tests + Formatting # After Submitting --- crates/nu-command/src/debug/view_source.rs | 26 ++++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/crates/nu-command/src/debug/view_source.rs b/crates/nu-command/src/debug/view_source.rs index 2aadd4d361..c0003b5b09 100644 --- a/crates/nu-command/src/debug/view_source.rs +++ b/crates/nu-command/src/debug/view_source.rs @@ -34,21 +34,33 @@ impl Command for ViewSource { let source = match arg { Value::Int { val, .. } => { - let block = engine_state.get_block(nu_protocol::BlockId::new(val as usize)); - if let Some(span) = block.span { - let contents = engine_state.get_span_contents(span); - Ok(Value::string(String::from_utf8_lossy(contents), call.head) - .into_pipeline_data()) + if let Some(block) = + engine_state.try_get_block(nu_protocol::BlockId::new(val as usize)) + { + if let Some(span) = block.span { + let contents = engine_state.get_span_contents(span); + Ok(Value::string(String::from_utf8_lossy(contents), call.head) + .into_pipeline_data()) + } else { + Err(ShellError::GenericError { + error: "Cannot view int value".to_string(), + msg: "the block does not have a viewable span".to_string(), + span: Some(arg_span), + help: None, + inner: vec![], + }) + } } else { Err(ShellError::GenericError { - error: "Cannot view int value".to_string(), - msg: "the block does not have a viewable span".to_string(), + error: format!("Block Id {} does not exist", arg.coerce_into_string()?), + msg: "this number does not correspond to a block".to_string(), span: Some(arg_span), help: None, inner: vec![], }) } } + Value::String { val, .. } => { if let Some(decl_id) = engine_state.find_decl(val.as_bytes(), &[]) { // arg is a command