use super::{operate, DefaultArguments}; use crate::commands::WholeStreamCommand; use crate::prelude::*; use nu_errors::ShellError; use nu_protocol::{Signature, SyntaxShape, UntaggedValue, Value}; use std::path::Path; pub struct PathBasename; #[async_trait] impl WholeStreamCommand for PathBasename { fn name(&self) -> &str { "path basename" } fn signature(&self) -> Signature { Signature::build("path basename") .rest(SyntaxShape::ColumnPath, "optionally operate by path") } fn usage(&self) -> &str { "gets the filename of a path" } async fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { let tag = args.call_info.name_tag.clone(); let (DefaultArguments { rest }, input) = args.process(®istry).await?; operate(input, rest, &action, tag.span).await } 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")]), }] } } fn action(path: &Path) -> UntaggedValue { UntaggedValue::string(match path.file_name() { Some(filename) => filename.to_string_lossy().to_string(), _ => "".to_string(), }) } #[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 {})?) } }