mirror of
https://github.com/nushell/nushell.git
synced 2025-04-03 14:10:41 +02:00
enable find to work on some external streams (#6094)
This commit is contained in:
parent
b2ec32fdf0
commit
0bcfa12e0d
@ -473,14 +473,57 @@ fn find_with_rest_and_highlight(
|
|||||||
.into_pipeline_data(ctrlc)
|
.into_pipeline_data(ctrlc)
|
||||||
.set_metadata(meta))
|
.set_metadata(meta))
|
||||||
}
|
}
|
||||||
// PipelineData::ExternalStream {
|
PipelineData::ExternalStream { stdout: None, .. } => Ok(PipelineData::new(span)),
|
||||||
// stdout,
|
PipelineData::ExternalStream {
|
||||||
// stderr,
|
stdout: Some(stream),
|
||||||
// exit_code,
|
..
|
||||||
// span,
|
} => {
|
||||||
// metadata,
|
let mut output: Vec<Value> = vec![];
|
||||||
// } => todo!(),
|
for filter_val in stream {
|
||||||
_ => todo!(), // not sure what to do here
|
match filter_val {
|
||||||
|
Ok(value) => match value {
|
||||||
|
Value::String { val, span } => {
|
||||||
|
let split_char = if val.contains("\r\n") { "\r\n" } else { "\n" };
|
||||||
|
|
||||||
|
for line in val.split(split_char) {
|
||||||
|
for term in lower_terms.iter() {
|
||||||
|
let term_str = term.into_string("", &filter_config);
|
||||||
|
let lower_val = line.to_lowercase();
|
||||||
|
if lower_val
|
||||||
|
.contains(&term.into_string("", &config).to_lowercase())
|
||||||
|
{
|
||||||
|
output.push(Value::String {
|
||||||
|
val: highlight_search_string(
|
||||||
|
line,
|
||||||
|
&term_str,
|
||||||
|
&string_style,
|
||||||
|
)?,
|
||||||
|
span,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
return Err(ShellError::UnsupportedInput(
|
||||||
|
format!(
|
||||||
|
"Unsupport value type '{}' from raw stream",
|
||||||
|
value.get_type()
|
||||||
|
),
|
||||||
|
span,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_ => {
|
||||||
|
return Err(ShellError::UnsupportedInput(
|
||||||
|
"Unsupport type from raw stream".to_string(),
|
||||||
|
span,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Ok(output.into_pipeline_data(ctrlc))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user