use nu_engine::CallExt; use nu_protocol::ast::Call; use nu_protocol::ast::CellPath; use nu_protocol::engine::{Command, EngineState, Stack}; use nu_protocol::Category; use nu_protocol::Spanned; use nu_protocol::{Example, PipelineData, ShellError, Signature, Span, SyntaxShape, Value}; #[derive(Clone)] pub struct SubCommand; impl Command for SubCommand { fn name(&self) -> &str { "str ends-with" } fn signature(&self) -> Signature { Signature::build("str ends-with") .required("string", SyntaxShape::String, "the string to match") .rest( "rest", SyntaxShape::CellPath, "optionally matches suffix of text by column paths", ) .category(Category::Strings) } fn usage(&self) -> &str { "Check if an input ends with a string" } fn search_terms(&self) -> Vec<&str> { vec!["suffix", "match", "find", "search"] } fn run( &self, engine_state: &EngineState, stack: &mut Stack, call: &Call, input: PipelineData, ) -> Result { operate(engine_state, stack, call, input) } fn examples(&self) -> Vec { vec![ Example { description: "Checks if string ends with '.rb'", example: "'my_library.rb' | str ends-with '.rb'", result: Some(Value::Bool { val: true, span: Span::test_data(), }), }, Example { description: "Checks if string ends with '.txt'", example: "'my_library.rb' | str ends-with '.txt'", result: Some(Value::Bool { val: false, span: Span::test_data(), }), }, ] } } fn operate( engine_state: &EngineState, stack: &mut Stack, call: &Call, input: PipelineData, ) -> Result { let head = call.head; let substring: Spanned = call.req(engine_state, stack, 0)?; let column_paths: Vec = call.rest(engine_state, stack, 1)?; input.map( move |v| { if column_paths.is_empty() { action(&v, &substring.item, head) } else { let mut ret = v; for path in &column_paths { let p = substring.item.clone(); let r = ret.update_cell_path( &path.members, Box::new(move |old| action(old, &p, head)), ); if let Err(error) = r { return Value::Error { error }; } } ret } }, engine_state.ctrlc.clone(), ) } fn action(input: &Value, substring: &str, head: Span) -> Value { match input { Value::String { val, .. } => Value::Bool { val: val.ends_with(substring), span: head, }, other => Value::Error { error: ShellError::UnsupportedInput( format!( "Input's type is {}. This command only works with strings.", other.get_type() ), head, ), }, } } #[cfg(test)] mod test { use super::*; #[test] fn test_examples() { use crate::test_examples; test_examples(SubCommand {}) } }