mirror of
https://github.com/nushell/nushell.git
synced 2025-01-31 02:32:55 +01:00
port over the prepend command from nushell (#446)
This commit is contained in:
parent
c8b9913718
commit
a42bbea98d
@ -115,6 +115,7 @@ pub fn create_default_context() -> EngineState {
|
|||||||
Mv,
|
Mv,
|
||||||
ParEach,
|
ParEach,
|
||||||
Parse,
|
Parse,
|
||||||
|
Prepend,
|
||||||
Ps,
|
Ps,
|
||||||
Range,
|
Range,
|
||||||
Random,
|
Random,
|
||||||
|
@ -10,6 +10,7 @@ mod last;
|
|||||||
mod length;
|
mod length;
|
||||||
mod lines;
|
mod lines;
|
||||||
mod par_each;
|
mod par_each;
|
||||||
|
mod prepend;
|
||||||
mod range;
|
mod range;
|
||||||
mod reject;
|
mod reject;
|
||||||
mod reverse;
|
mod reverse;
|
||||||
@ -33,6 +34,7 @@ pub use last::Last;
|
|||||||
pub use length::Length;
|
pub use length::Length;
|
||||||
pub use lines::Lines;
|
pub use lines::Lines;
|
||||||
pub use par_each::ParEach;
|
pub use par_each::ParEach;
|
||||||
|
pub use prepend::Prepend;
|
||||||
pub use range::Range;
|
pub use range::Range;
|
||||||
pub use reject::Reject;
|
pub use reject::Reject;
|
||||||
pub use reverse::Reverse;
|
pub use reverse::Reverse;
|
||||||
|
122
crates/nu-command/src/filters/prepend.rs
Normal file
122
crates/nu-command/src/filters/prepend.rs
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
use nu_engine::CallExt;
|
||||||
|
use nu_protocol::ast::Call;
|
||||||
|
use nu_protocol::engine::{Command, EngineState, Stack};
|
||||||
|
use nu_protocol::{
|
||||||
|
Category, Example, IntoInterruptiblePipelineData, PipelineData, ShellError, Signature, Span,
|
||||||
|
SyntaxShape, Value,
|
||||||
|
};
|
||||||
|
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct Prepend;
|
||||||
|
|
||||||
|
impl Command for Prepend {
|
||||||
|
fn name(&self) -> &str {
|
||||||
|
"prepend"
|
||||||
|
}
|
||||||
|
|
||||||
|
fn signature(&self) -> nu_protocol::Signature {
|
||||||
|
Signature::build("prepend")
|
||||||
|
.required("row", SyntaxShape::Any, "the row to prepend")
|
||||||
|
.category(Category::Filters)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage(&self) -> &str {
|
||||||
|
"Prepend a row to the table."
|
||||||
|
}
|
||||||
|
|
||||||
|
fn examples(&self) -> Vec<Example> {
|
||||||
|
vec![
|
||||||
|
Example {
|
||||||
|
example: "[1,2,3,4] | prepend 0",
|
||||||
|
description: "Prepend one Int item",
|
||||||
|
result: Some(Value::List {
|
||||||
|
vals: vec![
|
||||||
|
Value::test_int(0),
|
||||||
|
Value::test_int(1),
|
||||||
|
Value::test_int(2),
|
||||||
|
Value::test_int(3),
|
||||||
|
Value::test_int(4),
|
||||||
|
],
|
||||||
|
span: Span::unknown(),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
Example {
|
||||||
|
example: "[2,3,4] | prepend [0,1]",
|
||||||
|
description: "Prepend two Int items",
|
||||||
|
result: Some(Value::List {
|
||||||
|
vals: vec![
|
||||||
|
Value::test_int(0),
|
||||||
|
Value::test_int(1),
|
||||||
|
Value::test_int(2),
|
||||||
|
Value::test_int(3),
|
||||||
|
Value::test_int(4),
|
||||||
|
],
|
||||||
|
span: Span::unknown(),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
Example {
|
||||||
|
example: "[2,nu,4,shell] | prepend [0,1,rocks]",
|
||||||
|
description: "Prepend Ints and Strings",
|
||||||
|
result: Some(Value::List {
|
||||||
|
vals: vec![
|
||||||
|
Value::test_int(0),
|
||||||
|
Value::test_int(1),
|
||||||
|
Value::test_string("rocks"),
|
||||||
|
Value::test_int(2),
|
||||||
|
Value::test_string("nu"),
|
||||||
|
Value::test_int(4),
|
||||||
|
Value::test_string("shell"),
|
||||||
|
],
|
||||||
|
span: Span::unknown(),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run(
|
||||||
|
&self,
|
||||||
|
engine_state: &EngineState,
|
||||||
|
stack: &mut Stack,
|
||||||
|
call: &Call,
|
||||||
|
input: PipelineData,
|
||||||
|
) -> Result<PipelineData, ShellError> {
|
||||||
|
let val: Value = call.req(engine_state, stack, 0)?;
|
||||||
|
let vec: Vec<Value> = process_value(val);
|
||||||
|
|
||||||
|
Ok(vec
|
||||||
|
.into_iter()
|
||||||
|
.chain(input)
|
||||||
|
.into_iter()
|
||||||
|
.into_pipeline_data(engine_state.ctrlc.clone()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn process_value(val: Value) -> Vec<Value> {
|
||||||
|
match val {
|
||||||
|
Value::List {
|
||||||
|
vals: input_vals,
|
||||||
|
span: _,
|
||||||
|
} => {
|
||||||
|
let mut output = vec![];
|
||||||
|
for input_val in input_vals {
|
||||||
|
output.push(input_val);
|
||||||
|
}
|
||||||
|
output
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
vec![val]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_examples() {
|
||||||
|
use crate::test_examples;
|
||||||
|
|
||||||
|
test_examples(Prepend {})
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user