Add global mode to str trim (#2576)

* Add global mode to str trim

The global mode allows skipping non-string values,
and processes rows and tables as well

* Add tests to action with ActionMode::Global
This commit is contained in:
Radek Vít 2020-09-20 11:04:26 +02:00 committed by GitHub
parent 1882a32b83
commit a5b6bb6209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 215 additions and 24 deletions

View File

@ -8,6 +8,7 @@ use nu_protocol::ShellTypeName;
use nu_protocol::{ColumnPath, Primitive, ReturnSuccess, UntaggedValue, Value}; use nu_protocol::{ColumnPath, Primitive, ReturnSuccess, UntaggedValue, Value};
use nu_source::{Tag, Tagged}; use nu_source::{Tag, Tagged};
use nu_value_ext::ValueExt; use nu_value_ext::ValueExt;
use std::iter::FromIterator;
pub use trim_both_ends::SubCommand as Trim; pub use trim_both_ends::SubCommand as Trim;
pub use trim_left::SubCommand as TrimLeft; pub use trim_left::SubCommand as TrimLeft;
@ -38,14 +39,22 @@ where
Ok(input Ok(input
.map(move |v| { .map(move |v| {
if column_paths.is_empty() { if column_paths.is_empty() {
ReturnSuccess::value(action(&v, v.tag(), to_trim, &trim_operation)?) ReturnSuccess::value(action(
&v,
v.tag(),
to_trim,
&trim_operation,
ActionMode::Global,
)?)
} else { } else {
let mut ret = v; let mut ret = v;
for path in &column_paths { for path in &column_paths {
ret = ret.swap_data_by_column_path( ret = ret.swap_data_by_column_path(
path, path,
Box::new(move |old| action(old, old.tag(), to_trim, &trim_operation)), Box::new(move |old| {
action(old, old.tag(), to_trim, &trim_operation, ActionMode::Local)
}),
)?; )?;
} }
@ -55,27 +64,63 @@ where
.to_output_stream()) .to_output_stream())
} }
#[derive(Debug, Copy, Clone)]
pub enum ActionMode {
Local,
Global,
}
pub fn action<F>( pub fn action<F>(
input: &Value, input: &Value,
tag: impl Into<Tag>, tag: impl Into<Tag>,
char_: Option<char>, char_: Option<char>,
trim_operation: &F, trim_operation: &F,
mode: ActionMode,
) -> Result<Value, ShellError> ) -> Result<Value, ShellError>
where where
F: Fn(&str, Option<char>) -> String + Send + Sync + 'static, F: Fn(&str, Option<char>) -> String + Send + Sync + 'static,
{ {
let tag = tag.into();
match &input.value { match &input.value {
UntaggedValue::Primitive(Primitive::Line(s)) UntaggedValue::Primitive(Primitive::Line(s))
| UntaggedValue::Primitive(Primitive::String(s)) => { | UntaggedValue::Primitive(Primitive::String(s)) => {
Ok(UntaggedValue::string(trim_operation(s, char_)).into_value(tag)) Ok(UntaggedValue::string(trim_operation(s, char_)).into_value(tag))
} }
other => { other => match mode {
let got = format!("got {}", other.type_name()); ActionMode::Global => match other {
Err(ShellError::labeled_error( UntaggedValue::Row(dictionary) => {
"value is not string", let results: Result<Vec<(String, Value)>, ShellError> = dictionary
got, .entries()
tag.into().span, .iter()
)) .map(|(k, v)| -> Result<_, ShellError> {
} Ok((
k.clone(),
action(&v, tag.clone(), char_, trim_operation, mode)?,
))
})
.collect();
let indexmap = IndexMap::from_iter(results?);
Ok(UntaggedValue::Row(indexmap.into()).into_value(tag))
}
UntaggedValue::Table(values) => {
let values: Result<Vec<Value>, ShellError> = values
.iter()
.map(|v| -> Result<_, ShellError> {
Ok(action(v, tag.clone(), char_, trim_operation, mode)?)
})
.collect();
Ok(UntaggedValue::Table(values?).into_value(tag))
}
_ => Ok(input.clone()),
},
ActionMode::Local => {
let got = format!("got {}", other.type_name());
Err(ShellError::labeled_error(
"value is not string",
got,
tag.span,
))
}
},
} }
} }

View File

@ -63,8 +63,11 @@ fn trim(s: &str, char_: Option<char>) -> String {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::{trim, SubCommand}; use super::{trim, SubCommand};
use crate::commands::str_::trim::action; use crate::commands::str_::trim::{action, ActionMode};
use nu_plugin::test_helpers::value::string; use nu_plugin::{
row,
test_helpers::value::{int, string, table},
};
use nu_source::Tag; use nu_source::Tag;
#[test] #[test]
@ -79,7 +82,43 @@ mod tests {
let word = string("andres "); let word = string("andres ");
let expected = string("andres"); let expected = string("andres");
let actual = action(&word, Tag::unknown(), None, &trim).unwrap(); let actual = action(&word, Tag::unknown(), None, &trim, ActionMode::Local).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn trims_global() {
let word = string(" global ");
let expected = string("global");
let actual = action(&word, Tag::unknown(), None, &trim, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_ignores_numbers() {
let number = int(2020);
let expected = int(2020);
let actual = action(&number, Tag::unknown(), None, &trim, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_row() {
let row = row!["a".to_string() => string(" c "), " b ".to_string() => string(" d ")];
let expected = row!["a".to_string() => string("c"), " b ".to_string() => string("d")];
let actual = action(&row, Tag::unknown(), None, &trim, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_table() {
let row = table(&[string(" a "), int(65), string(" d")]);
let expected = table(&[string("a"), int(65), string("d")]);
let actual = action(&row, Tag::unknown(), None, &trim, ActionMode::Global).unwrap();
assert_eq!(actual, expected); assert_eq!(actual, expected);
} }
@ -88,7 +127,7 @@ mod tests {
let word = string("!#andres#!"); let word = string("!#andres#!");
let expected = string("#andres#"); let expected = string("#andres#");
let actual = action(&word, Tag::unknown(), Some('!'), &trim).unwrap(); let actual = action(&word, Tag::unknown(), Some('!'), &trim, ActionMode::Local).unwrap();
assert_eq!(actual, expected); assert_eq!(actual, expected);
} }
} }

View File

@ -64,8 +64,11 @@ fn trim_left(s: &str, char_: Option<char>) -> String {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::{trim_left, SubCommand}; use super::{trim_left, SubCommand};
use crate::commands::str_::trim::action; use crate::commands::str_::trim::{action, ActionMode};
use nu_plugin::test_helpers::value::string; use nu_plugin::{
row,
test_helpers::value::{int, string, table},
};
use nu_source::Tag; use nu_source::Tag;
#[test] #[test]
@ -80,15 +83,66 @@ mod tests {
let word = string(" andres "); let word = string(" andres ");
let expected = string("andres "); let expected = string("andres ");
let actual = action(&word, Tag::unknown(), None, &trim_left).unwrap(); let actual = action(&word, Tag::unknown(), None, &trim_left, ActionMode::Local).unwrap();
assert_eq!(actual, expected); assert_eq!(actual, expected);
} }
#[test]
fn trims_left_global() {
let word = string(" global ");
let expected = string("global ");
let actual = action(&word, Tag::unknown(), None, &trim_left, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_left_ignores_numbers() {
let number = int(2020);
let expected = int(2020);
let actual = action(
&number,
Tag::unknown(),
None,
&trim_left,
ActionMode::Global,
)
.unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_left_row() {
let row = row!["a".to_string() => string(" c "), " b ".to_string() => string(" d ")];
let expected = row!["a".to_string() => string("c "), " b ".to_string() => string("d ")];
let actual = action(&row, Tag::unknown(), None, &trim_left, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_left_table() {
let row = table(&[string(" a "), int(65), string(" d")]);
let expected = table(&[string("a "), int(65), string("d")]);
let actual = action(&row, Tag::unknown(), None, &trim_left, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test] #[test]
fn trims_custom_chars_from_left() { fn trims_custom_chars_from_left() {
let word = string("!!! andres !!!"); let word = string("!!! andres !!!");
let expected = string(" andres !!!"); let expected = string(" andres !!!");
let actual = action(&word, Tag::unknown(), Some('!'), &trim_left).unwrap(); let actual = action(
&word,
Tag::unknown(),
Some('!'),
&trim_left,
ActionMode::Local,
)
.unwrap();
assert_eq!(actual, expected); assert_eq!(actual, expected);
} }
} }

View File

@ -64,8 +64,11 @@ fn trim_right(s: &str, char_: Option<char>) -> String {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::{trim_right, SubCommand}; use super::{trim_right, SubCommand};
use crate::commands::str_::trim::action; use crate::commands::str_::trim::{action, ActionMode};
use nu_plugin::test_helpers::value::string; use nu_plugin::{
row,
test_helpers::value::{int, string, table},
};
use nu_source::Tag; use nu_source::Tag;
#[test] #[test]
@ -80,7 +83,50 @@ mod tests {
let word = string(" andres "); let word = string(" andres ");
let expected = string(" andres"); let expected = string(" andres");
let actual = action(&word, Tag::unknown(), None, &trim_right).unwrap(); let actual = action(&word, Tag::unknown(), None, &trim_right, ActionMode::Local).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn trims_right_global() {
let word = string(" global ");
let expected = string(" global");
let actual = action(&word, Tag::unknown(), None, &trim_right, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_right_ignores_numbers() {
let number = int(2020);
let expected = int(2020);
let actual = action(
&number,
Tag::unknown(),
None,
&trim_right,
ActionMode::Global,
)
.unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_row() {
let row = row!["a".to_string() => string(" c "), " b ".to_string() => string(" d ")];
let expected = row!["a".to_string() => string(" c"), " b ".to_string() => string(" d")];
let actual = action(&row, Tag::unknown(), None, &trim_right, ActionMode::Global).unwrap();
assert_eq!(actual, expected);
}
#[test]
fn global_trim_table() {
let row = table(&[string(" a "), int(65), string(" d")]);
let expected = table(&[string(" a"), int(65), string(" d")]);
let actual = action(&row, Tag::unknown(), None, &trim_right, ActionMode::Global).unwrap();
assert_eq!(actual, expected); assert_eq!(actual, expected);
} }
@ -89,7 +135,14 @@ mod tests {
let word = string("#@! andres !@#"); let word = string("#@! andres !@#");
let expected = string("#@! andres !@"); let expected = string("#@! andres !@");
let actual = action(&word, Tag::unknown(), Some('#'), &trim_right).unwrap(); let actual = action(
&word,
Tag::unknown(),
Some('#'),
&trim_right,
ActionMode::Local,
)
.unwrap();
assert_eq!(actual, expected); assert_eq!(actual, expected);
} }
} }

View File

@ -206,9 +206,9 @@ pub mod value {
#[macro_export] #[macro_export]
macro_rules! row { macro_rules! row {
($( $key: expr => $val: expr ),*) => {{ ($( $key: expr => $val: expr ),*) => {{
let mut map = indexmap::IndexMap::new(); let mut map = ::indexmap::IndexMap::new();
$( map.insert($key, $val); )* $( map.insert($key, $val); )*
UntaggedValue::row(map).into_untagged_value() ::nu_protocol::UntaggedValue::row(map).into_untagged_value()
}} }}
} }
} }