use super::{operate, DefaultArguments}; use crate::commands::WholeStreamCommand; use crate::prelude::*; use nu_errors::ShellError; use nu_protocol::{ColumnPath, Signature, SyntaxShape, UntaggedValue, Value}; use nu_source::Tagged; use std::path::Path; pub struct PathBasename; #[derive(Deserialize)] struct PathBasenameArguments { replace: Option>, rest: Vec, } #[async_trait] impl WholeStreamCommand for PathBasename { fn name(&self) -> &str { "path basename" } fn signature(&self) -> Signature { Signature::build("path basename") .named( "replace", SyntaxShape::String, "Return original path with basename replaced by this string", Some('r'), ) .rest(SyntaxShape::ColumnPath, "Optionally operate by column path") } fn usage(&self) -> &str { "Gets the final component of a path" } async fn run(&self, args: CommandArgs) -> Result { let tag = args.call_info.name_tag.clone(); let (PathBasenameArguments { replace, rest }, input) = args.process().await?; let args = Arc::new(DefaultArguments { replace: replace.map(|v| v.item), prefix: None, suffix: None, num_levels: None, paths: rest, }); operate(input, &action, tag.span, args).await } #[cfg(windows)] fn examples(&self) -> Vec { vec![ Example { description: "Get basename of a path", example: "echo 'C:\\Users\\joe\\test.txt' | path basename", result: Some(vec![Value::from("test.txt")]), }, Example { description: "Replace basename of a path", example: "echo 'C:\\Users\\joe\\test.txt' | path basename -r 'spam.png'", result: Some(vec![Value::from(UntaggedValue::path( "C:\\Users\\joe\\spam.png", ))]), }, ] } #[cfg(not(windows))] fn examples(&self) -> Vec { vec![ Example { description: "Get basename of a path", example: "echo '/home/joe/test.txt' | path basename", result: Some(vec![Value::from("test.txt")]), }, Example { description: "Replace basename of a path", example: "echo '/home/joe/test.txt' | path basename -r 'spam.png'", result: Some(vec![Value::from(UntaggedValue::path("/home/joe/spam.png"))]), }, ] } } fn action(path: &Path, args: Arc) -> UntaggedValue { match args.replace { Some(ref basename) => UntaggedValue::path(path.with_file_name(basename)), None => UntaggedValue::string(match path.file_name() { Some(filename) => filename.to_string_lossy(), None => "".into(), }), } } #[cfg(test)] mod tests { use super::PathBasename; use super::ShellError; #[test] fn examples_work_as_expected() -> Result<(), ShellError> { use crate::examples::test as test_examples; Ok(test_examples(PathBasename {})?) } }