mirror of
https://github.com/nushell/nushell.git
synced 2025-05-20 01:40:47 +02:00
Closes #11265 # Description ``str join`` outputs dates just other commands: RFC2822 by default otherwise RFC3339 for negative dates # User-Facing Changes ```nushell ~> 2024-01-01 # => Mon, 1 Jan 2024 00:00:00 +0000 (a year ago) ~> '3000 years ago' | date from-human # => -0975-04-23T20:57:07.217711700+02:00 (3000 years ago) ~> [ 2024-01-01 ] | str join # => Mon, 1 Jan 2024 00:00:00 +0000 ~> [ ('3000 years ago' | date from-human) ] | str join # => -0975-04-23T20:57:56.221269600+02:00 ``` # Tests + Formatting OK # After Submitting Nothing
144 lines
4.0 KiB
Rust
144 lines
4.0 KiB
Rust
use chrono::Datelike;
|
|
use nu_engine::command_prelude::*;
|
|
use nu_protocol::{shell_error::io::IoError, Signals};
|
|
|
|
use std::io::Write;
|
|
|
|
#[derive(Clone)]
|
|
pub struct StrJoin;
|
|
|
|
impl Command for StrJoin {
|
|
fn name(&self) -> &str {
|
|
"str join"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("str join")
|
|
.input_output_types(vec![
|
|
(Type::List(Box::new(Type::Any)), Type::String),
|
|
(Type::String, Type::String),
|
|
])
|
|
.optional(
|
|
"separator",
|
|
SyntaxShape::String,
|
|
"Optional separator to use when creating string.",
|
|
)
|
|
.allow_variants_without_examples(true)
|
|
.category(Category::Strings)
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Concatenate multiple strings into a single string, with an optional separator between each."
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["collect", "concatenate"]
|
|
}
|
|
|
|
fn is_const(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let separator: Option<String> = call.opt(engine_state, stack, 0)?;
|
|
run(engine_state, call, input, separator)
|
|
}
|
|
|
|
fn run_const(
|
|
&self,
|
|
working_set: &StateWorkingSet,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let separator: Option<String> = call.opt_const(working_set, 0)?;
|
|
run(working_set.permanent(), call, input, separator)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Create a string from input",
|
|
example: "['nu', 'shell'] | str join",
|
|
result: Some(Value::test_string("nushell")),
|
|
},
|
|
Example {
|
|
description: "Create a string from input with a separator",
|
|
example: "['nu', 'shell'] | str join '-'",
|
|
result: Some(Value::test_string("nu-shell")),
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
fn run(
|
|
engine_state: &EngineState,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
separator: Option<String>,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let config = engine_state.config.clone();
|
|
|
|
let span = call.head;
|
|
|
|
let metadata = input.metadata();
|
|
let mut iter = input.into_iter();
|
|
let mut first = true;
|
|
|
|
let output = ByteStream::from_fn(
|
|
span,
|
|
Signals::empty(),
|
|
ByteStreamType::String,
|
|
move |buffer| {
|
|
let from_io_error = IoError::factory(span, None);
|
|
|
|
// Write each input to the buffer
|
|
if let Some(value) = iter.next() {
|
|
// Write the separator if this is not the first
|
|
if first {
|
|
first = false;
|
|
} else if let Some(separator) = &separator {
|
|
write!(buffer, "{}", separator).map_err(&from_io_error)?;
|
|
}
|
|
|
|
match value {
|
|
Value::Error { error, .. } => {
|
|
return Err(*error);
|
|
}
|
|
Value::Date { val, .. } => {
|
|
let date_str = if val.year() >= 0 {
|
|
val.to_rfc2822()
|
|
} else {
|
|
val.to_rfc3339()
|
|
};
|
|
write!(buffer, "{date_str}").map_err(&from_io_error)?
|
|
}
|
|
value => write!(buffer, "{}", value.to_expanded_string("\n", &config))
|
|
.map_err(&from_io_error)?,
|
|
}
|
|
Ok(true)
|
|
} else {
|
|
Ok(false)
|
|
}
|
|
},
|
|
);
|
|
|
|
Ok(PipelineData::ByteStream(output, metadata))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
#[test]
|
|
fn test_examples() {
|
|
use crate::test_examples;
|
|
|
|
test_examples(StrJoin {})
|
|
}
|
|
}
|