forked from extern/nushell
# Description The meaning of the word usage is specific to describing how a command function is *used* and not a synonym for general description. Usage can be used to describe the SYNOPSIS or EXAMPLES sections of a man page where the permitted argument combinations are shown or example *uses* are given. Let's not confuse people and call it what it is a description. Our `help` command already creates its own *Usage* section based on the available arguments and doesn't refer to the description with usage. # User-Facing Changes `help commands` and `scope commands` will now use `description` or `extra_description` `usage`-> `description` `extra_usage` -> `extra_description` Breaking change in the plugin protocol: In the signature record communicated with the engine. `usage`-> `description` `extra_usage` -> `extra_description` The same rename also takes place for the methods on `SimplePluginCommand` and `PluginCommand` # Tests + Formatting - Updated plugin protocol specific changes # After Submitting - [ ] update plugin protocol doc
246 lines
7.8 KiB
Rust
246 lines
7.8 KiB
Rust
use nu_engine::command_prelude::*;
|
|
|
|
use regex::Regex;
|
|
|
|
#[derive(Clone)]
|
|
pub struct SubCommand;
|
|
|
|
impl Command for SubCommand {
|
|
fn name(&self) -> &str {
|
|
"split list"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("split list")
|
|
.input_output_types(vec![(
|
|
Type::List(Box::new(Type::Any)),
|
|
Type::List(Box::new(Type::List(Box::new(Type::Any)))),
|
|
)])
|
|
.required(
|
|
"separator",
|
|
SyntaxShape::Any,
|
|
"The value that denotes what separates the list.",
|
|
)
|
|
.switch(
|
|
"regex",
|
|
"separator is a regular expression, matching values that can be coerced into a string",
|
|
Some('r'))
|
|
.category(Category::Filters)
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Split a list into multiple lists using a separator."
|
|
}
|
|
|
|
fn search_terms(&self) -> Vec<&str> {
|
|
vec!["separate", "divide", "regex"]
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![
|
|
Example {
|
|
description: "Split a list of chars into two lists",
|
|
example: "[a, b, c, d, e, f, g] | split list d",
|
|
result: Some(Value::list(
|
|
vec![
|
|
Value::list(
|
|
vec![
|
|
Value::test_string("a"),
|
|
Value::test_string("b"),
|
|
Value::test_string("c"),
|
|
],
|
|
Span::test_data(),
|
|
),
|
|
Value::list(
|
|
vec![
|
|
Value::test_string("e"),
|
|
Value::test_string("f"),
|
|
Value::test_string("g"),
|
|
],
|
|
Span::test_data(),
|
|
),
|
|
],
|
|
Span::test_data(),
|
|
)),
|
|
},
|
|
Example {
|
|
description: "Split a list of lists into two lists of lists",
|
|
example: "[[1,2], [2,3], [3,4]] | split list [2,3]",
|
|
result: Some(Value::list(
|
|
vec![
|
|
Value::list(
|
|
vec![Value::list(
|
|
vec![Value::test_int(1), Value::test_int(2)],
|
|
Span::test_data(),
|
|
)],
|
|
Span::test_data(),
|
|
),
|
|
Value::list(
|
|
vec![Value::list(
|
|
vec![Value::test_int(3), Value::test_int(4)],
|
|
Span::test_data(),
|
|
)],
|
|
Span::test_data(),
|
|
),
|
|
],
|
|
Span::test_data(),
|
|
)),
|
|
},
|
|
Example {
|
|
description: "Split a list of chars into two lists",
|
|
example: "[a, b, c, d, a, e, f, g] | split list a",
|
|
result: Some(Value::list(
|
|
vec![
|
|
Value::list(
|
|
vec![
|
|
Value::test_string("b"),
|
|
Value::test_string("c"),
|
|
Value::test_string("d"),
|
|
],
|
|
Span::test_data(),
|
|
),
|
|
Value::list(
|
|
vec![
|
|
Value::test_string("e"),
|
|
Value::test_string("f"),
|
|
Value::test_string("g"),
|
|
],
|
|
Span::test_data(),
|
|
),
|
|
],
|
|
Span::test_data(),
|
|
)),
|
|
},
|
|
Example {
|
|
description: "Split a list of chars into lists based on multiple characters",
|
|
example: r"[a, b, c, d, a, e, f, g] | split list --regex '(b|e)'",
|
|
result: Some(Value::list(
|
|
vec![
|
|
Value::list(vec![Value::test_string("a")], Span::test_data()),
|
|
Value::list(
|
|
vec![
|
|
Value::test_string("c"),
|
|
Value::test_string("d"),
|
|
Value::test_string("a"),
|
|
],
|
|
Span::test_data(),
|
|
),
|
|
Value::list(
|
|
vec![Value::test_string("f"), Value::test_string("g")],
|
|
Span::test_data(),
|
|
),
|
|
],
|
|
Span::test_data(),
|
|
)),
|
|
},
|
|
]
|
|
}
|
|
|
|
fn is_const(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
engine_state: &EngineState,
|
|
stack: &mut Stack,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let has_regex = call.has_flag(engine_state, stack, "regex")?;
|
|
let separator: Value = call.req(engine_state, stack, 0)?;
|
|
split_list(engine_state, call, input, has_regex, separator)
|
|
}
|
|
|
|
fn run_const(
|
|
&self,
|
|
working_set: &StateWorkingSet,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let has_regex = call.has_flag_const(working_set, "regex")?;
|
|
let separator: Value = call.req_const(working_set, 0)?;
|
|
split_list(working_set.permanent(), call, input, has_regex, separator)
|
|
}
|
|
}
|
|
|
|
enum Matcher {
|
|
Regex(Regex),
|
|
Direct(Value),
|
|
}
|
|
|
|
impl Matcher {
|
|
pub fn new(regex: bool, lhs: Value) -> Result<Self, ShellError> {
|
|
if regex {
|
|
Ok(Matcher::Regex(Regex::new(&lhs.coerce_str()?).map_err(
|
|
|e| ShellError::GenericError {
|
|
error: "Error with regular expression".into(),
|
|
msg: e.to_string(),
|
|
span: match lhs {
|
|
Value::Error { .. } => None,
|
|
_ => Some(lhs.span()),
|
|
},
|
|
help: None,
|
|
inner: vec![],
|
|
},
|
|
)?))
|
|
} else {
|
|
Ok(Matcher::Direct(lhs))
|
|
}
|
|
}
|
|
|
|
pub fn compare(&self, rhs: &Value) -> Result<bool, ShellError> {
|
|
Ok(match self {
|
|
Matcher::Regex(regex) => {
|
|
if let Ok(rhs_str) = rhs.coerce_str() {
|
|
regex.is_match(&rhs_str)
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
Matcher::Direct(lhs) => rhs == lhs,
|
|
})
|
|
}
|
|
}
|
|
|
|
fn split_list(
|
|
engine_state: &EngineState,
|
|
call: &Call,
|
|
input: PipelineData,
|
|
has_regex: bool,
|
|
separator: Value,
|
|
) -> Result<PipelineData, ShellError> {
|
|
let mut temp_list = Vec::new();
|
|
let mut returned_list = Vec::new();
|
|
|
|
let matcher = Matcher::new(has_regex, separator)?;
|
|
for val in input {
|
|
engine_state.signals().check(call.head)?;
|
|
|
|
if matcher.compare(&val)? {
|
|
if !temp_list.is_empty() {
|
|
returned_list.push(Value::list(temp_list.clone(), call.head));
|
|
temp_list = Vec::new();
|
|
}
|
|
} else {
|
|
temp_list.push(val);
|
|
}
|
|
}
|
|
if !temp_list.is_empty() {
|
|
returned_list.push(Value::list(temp_list.clone(), call.head));
|
|
}
|
|
Ok(Value::list(returned_list, call.head).into_pipeline_data())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_examples() {
|
|
use crate::test_examples;
|
|
|
|
test_examples(SubCommand {})
|
|
}
|
|
}
|