nushell/crates/nu-cli/src/commands/lines.rs

137 lines
4.0 KiB
Rust
Raw Normal View History

use crate::commands::WholeStreamCommand;
2019-06-18 02:39:57 +02:00
use crate::prelude::*;
use nu_errors::ShellError;
use nu_protocol::{Primitive, ReturnSuccess, Signature, UntaggedValue, Value};
2020-07-05 02:20:58 +02:00
use parking_lot::Mutex;
2019-06-22 05:43:37 +02:00
pub struct Lines;
2020-05-29 10:22:52 +02:00
#[async_trait]
impl WholeStreamCommand for Lines {
fn name(&self) -> &str {
"lines"
}
fn signature(&self) -> Signature {
Signature::build("lines")
}
fn usage(&self) -> &str {
"Split single string into rows, one per line."
}
2020-05-29 10:22:52 +02:00
async fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
lines(args, registry).await
}
fn examples(&self) -> Vec<Example> {
vec![Example {
description: "Split multi-line string into lines",
example: r#"^echo "two\nlines" | lines"#,
result: None,
}]
}
}
fn ends_with_line_ending(st: &str) -> bool {
let mut temp = st.to_string();
let last = temp.pop();
if let Some(c) = last {
c == '\n'
} else {
false
}
}
2019-06-18 02:39:57 +02:00
async fn lines(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
2020-07-05 02:20:58 +02:00
let leftover_string = Arc::new(Mutex::new(String::new()));
let registry = registry.clone();
let args = args.evaluate_once(&registry).await?;
let tag = args.name_tag();
let name_span = tag.span;
let eos = futures::stream::iter(vec![
UntaggedValue::Primitive(Primitive::EndOfStream).into_untagged_value()
]);
Ok(args
.input
.chain(eos)
.map(move |item| {
2020-07-05 02:20:58 +02:00
let leftover_string = leftover_string.clone();
match item {
Value {
value: UntaggedValue::Primitive(Primitive::String(st)),
..
}
2020-07-18 19:17:56 +02:00
| Value {
value: UntaggedValue::Primitive(Primitive::Line(st)),
..
} => {
2020-07-05 02:20:58 +02:00
let mut leftover_string = leftover_string.lock();
let st = (&*leftover_string).clone() + &st;
2020-07-05 02:20:58 +02:00
let mut lines: Vec<String> = st.lines().map(|x| x.to_string()).collect();
2020-07-05 02:20:58 +02:00
2020-07-18 19:17:56 +02:00
leftover_string.clear();
if !ends_with_line_ending(&st) {
if let Some(last) = lines.pop() {
2020-07-05 02:20:58 +02:00
leftover_string.push_str(&last);
}
}
let success_lines: Vec<_> = lines
.iter()
.map(|x| ReturnSuccess::value(UntaggedValue::line(x).into_untagged_value()))
.collect();
2020-07-05 02:20:58 +02:00
futures::stream::iter(success_lines)
}
Value {
value: UntaggedValue::Primitive(Primitive::EndOfStream),
..
} => {
2020-07-05 02:20:58 +02:00
let st = (&*leftover_string).lock().clone();
if !st.is_empty() {
futures::stream::iter(vec![ReturnSuccess::value(
UntaggedValue::string(st).into_untagged_value(),
)])
} else {
futures::stream::iter(vec![])
}
}
Value {
tag: value_span, ..
} => futures::stream::iter(vec![Err(ShellError::labeled_error_with_secondary(
"Expected a string from pipeline",
"requires string input",
name_span,
"value originates from here",
value_span,
))]),
2019-06-18 02:39:57 +02:00
}
})
.flatten()
.to_output_stream())
2019-06-18 02:39:57 +02:00
}
#[cfg(test)]
mod tests {
use super::Lines;
use super::ShellError;
#[test]
fn examples_work_as_expected() -> Result<(), ShellError> {
use crate::examples::test as test_examples;
Ok(test_examples(Lines {})?)
}
}