forked from extern/nushell
Automatically trim ends of stdin/stdout strings (#874)
This commit is contained in:
parent
c37f844644
commit
4c029d2545
@ -124,6 +124,7 @@ impl Command for Open {
|
|||||||
RawStream::new(
|
RawStream::new(
|
||||||
Box::new(BufferedReader { input: buf_reader }),
|
Box::new(BufferedReader { input: buf_reader }),
|
||||||
ctrlc,
|
ctrlc,
|
||||||
|
false,
|
||||||
call_span,
|
call_span,
|
||||||
),
|
),
|
||||||
call_span,
|
call_span,
|
||||||
|
@ -362,6 +362,7 @@ fn response_to_buffer(
|
|||||||
input: buffered_input,
|
input: buffered_input,
|
||||||
}),
|
}),
|
||||||
engine_state.ctrlc.clone(),
|
engine_state.ctrlc.clone(),
|
||||||
|
false,
|
||||||
span,
|
span,
|
||||||
),
|
),
|
||||||
span,
|
span,
|
||||||
|
@ -243,7 +243,7 @@ impl ExternalCommand {
|
|||||||
let receiver = ChannelReceiver::new(rx);
|
let receiver = ChannelReceiver::new(rx);
|
||||||
|
|
||||||
Ok(PipelineData::RawStream(
|
Ok(PipelineData::RawStream(
|
||||||
RawStream::new(Box::new(receiver), output_ctrlc, head),
|
RawStream::new(Box::new(receiver), output_ctrlc, true, head),
|
||||||
head,
|
head,
|
||||||
None,
|
None,
|
||||||
))
|
))
|
||||||
|
@ -72,6 +72,7 @@ impl Command for Table {
|
|||||||
.into_iter(),
|
.into_iter(),
|
||||||
),
|
),
|
||||||
ctrlc,
|
ctrlc,
|
||||||
|
false,
|
||||||
head,
|
head,
|
||||||
),
|
),
|
||||||
head,
|
head,
|
||||||
@ -188,6 +189,7 @@ impl Command for Table {
|
|||||||
stream,
|
stream,
|
||||||
}),
|
}),
|
||||||
ctrlc,
|
ctrlc,
|
||||||
|
false,
|
||||||
head,
|
head,
|
||||||
),
|
),
|
||||||
head,
|
head,
|
||||||
|
@ -9,5 +9,7 @@ pub use call_ext::CallExt;
|
|||||||
pub use column::get_columns;
|
pub use column::get_columns;
|
||||||
pub use documentation::{generate_docs, get_brief_help, get_documentation, get_full_help};
|
pub use documentation::{generate_docs, get_brief_help, get_documentation, get_full_help};
|
||||||
pub use env::*;
|
pub use env::*;
|
||||||
pub use eval::{eval_block, eval_expression, eval_expression_with_input, eval_operator};
|
pub use eval::{
|
||||||
|
eval_block, eval_expression, eval_expression_with_input, eval_operator, eval_subexpression,
|
||||||
|
};
|
||||||
pub use glob_from::glob_from;
|
pub use glob_from::glob_from;
|
||||||
|
@ -150,6 +150,8 @@ impl PipelineData {
|
|||||||
PipelineData::RawStream(s, ..) => {
|
PipelineData::RawStream(s, ..) => {
|
||||||
let mut items = vec![];
|
let mut items = vec![];
|
||||||
|
|
||||||
|
let trim_end = s.trim_end;
|
||||||
|
|
||||||
for val in s {
|
for val in s {
|
||||||
match val {
|
match val {
|
||||||
Ok(val) => {
|
Ok(val) => {
|
||||||
@ -170,6 +172,11 @@ impl PipelineData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if trim_end {
|
||||||
|
output = output.trim_end().to_string();
|
||||||
|
}
|
||||||
|
|
||||||
Ok(output)
|
Ok(output)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,7 @@ pub struct RawStream {
|
|||||||
pub leftover: Vec<u8>,
|
pub leftover: Vec<u8>,
|
||||||
pub ctrlc: Option<Arc<AtomicBool>>,
|
pub ctrlc: Option<Arc<AtomicBool>>,
|
||||||
pub is_binary: bool,
|
pub is_binary: bool,
|
||||||
|
pub trim_end: bool,
|
||||||
pub span: Span,
|
pub span: Span,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -19,6 +20,7 @@ impl RawStream {
|
|||||||
pub fn new(
|
pub fn new(
|
||||||
stream: Box<dyn Iterator<Item = Result<Vec<u8>, ShellError>> + Send + 'static>,
|
stream: Box<dyn Iterator<Item = Result<Vec<u8>, ShellError>> + Send + 'static>,
|
||||||
ctrlc: Option<Arc<AtomicBool>>,
|
ctrlc: Option<Arc<AtomicBool>>,
|
||||||
|
trim_end: bool,
|
||||||
span: Span,
|
span: Span,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
Self {
|
Self {
|
||||||
@ -26,6 +28,7 @@ impl RawStream {
|
|||||||
leftover: vec![],
|
leftover: vec![],
|
||||||
ctrlc,
|
ctrlc,
|
||||||
is_binary: false,
|
is_binary: false,
|
||||||
|
trim_end,
|
||||||
span,
|
span,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -43,10 +46,16 @@ impl RawStream {
|
|||||||
pub fn into_string(self) -> Result<String, ShellError> {
|
pub fn into_string(self) -> Result<String, ShellError> {
|
||||||
let mut output = String::new();
|
let mut output = String::new();
|
||||||
|
|
||||||
|
let trim_end = self.trim_end;
|
||||||
|
|
||||||
for item in self {
|
for item in self {
|
||||||
output.push_str(&item?.as_string()?);
|
output.push_str(&item?.as_string()?);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if trim_end {
|
||||||
|
output = output.trim_end().to_string();
|
||||||
|
}
|
||||||
|
|
||||||
Ok(output)
|
Ok(output)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -123,6 +123,7 @@ fn main() -> Result<()> {
|
|||||||
RawStream::new(
|
RawStream::new(
|
||||||
Box::new(BufferedReader::new(buf_reader)),
|
Box::new(BufferedReader::new(buf_reader)),
|
||||||
Some(ctrlc),
|
Some(ctrlc),
|
||||||
|
true,
|
||||||
redirect_stdin.span,
|
redirect_stdin.span,
|
||||||
),
|
),
|
||||||
redirect_stdin.span,
|
redirect_stdin.span,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
use nu_cli::NushellPrompt;
|
use nu_cli::NushellPrompt;
|
||||||
use nu_engine::eval_block;
|
use nu_engine::eval_subexpression;
|
||||||
use nu_parser::parse;
|
use nu_parser::parse;
|
||||||
use nu_protocol::{
|
use nu_protocol::{
|
||||||
engine::{EngineState, Stack, StateWorkingSet},
|
engine::{EngineState, Stack, StateWorkingSet},
|
||||||
@ -59,7 +59,7 @@ fn get_prompt_string(
|
|||||||
.and_then(|v| match v {
|
.and_then(|v| match v {
|
||||||
Value::Block { val: block_id, .. } => {
|
Value::Block { val: block_id, .. } => {
|
||||||
let block = engine_state.get_block(block_id);
|
let block = engine_state.get_block(block_id);
|
||||||
eval_block(
|
eval_subexpression(
|
||||||
engine_state,
|
engine_state,
|
||||||
stack,
|
stack,
|
||||||
block,
|
block,
|
||||||
@ -70,7 +70,7 @@ fn get_prompt_string(
|
|||||||
Value::String { val: source, .. } => {
|
Value::String { val: source, .. } => {
|
||||||
let mut working_set = StateWorkingSet::new(engine_state);
|
let mut working_set = StateWorkingSet::new(engine_state);
|
||||||
let (block, _) = parse(&mut working_set, None, source.as_bytes(), true);
|
let (block, _) = parse(&mut working_set, None, source.as_bytes(), true);
|
||||||
eval_block(
|
eval_subexpression(
|
||||||
engine_state,
|
engine_state,
|
||||||
stack,
|
stack,
|
||||||
&block,
|
&block,
|
||||||
|
Loading…
Reference in New Issue
Block a user