forked from extern/nushell
* Begin allowing comments and multiline scripts. * clippy * Finish moving to groups. Test pass * Keep going * WIP * WIP * BROKEN WIP * WIP * WIP * Fix more tests * WIP: alias starts working * Broken WIP * Broken WIP * Variables begin to work * captures start working * A little better but needs fixed scope * Shorthand env setting * Update main merge * Broken WIP * WIP * custom command parsing * Custom commands start working * Fix coloring and parsing of block * Almost there * Add some tests * Add more param types * Bump version * Fix benchmark * Fix stuff
108 lines
3.2 KiB
Rust
108 lines
3.2 KiB
Rust
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<Tagged<String>>,
|
|
rest: Vec<ColumnPath>,
|
|
}
|
|
|
|
#[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<OutputStream, ShellError> {
|
|
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<Example> {
|
|
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<Example> {
|
|
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<DefaultArguments>) -> 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 {})?)
|
|
}
|
|
}
|