nushell/src/plugins/skip.rs

60 lines
1.6 KiB
Rust
Raw Normal View History

2019-07-03 19:37:09 +02:00
use nu::{
serve_plugin, CallInfo, CoerceInto, Plugin, Primitive, ReturnSuccess, ReturnValue, ShellError,
Signature, SyntaxShape, Tagged, TaggedItem, Value,
2019-07-03 19:37:09 +02:00
};
2019-07-24 09:44:12 +02:00
struct Skip {
2019-07-03 19:37:09 +02:00
skip_amount: i64,
}
2019-07-24 09:44:12 +02:00
impl Skip {
fn new() -> Skip {
Skip { skip_amount: 0 }
2019-07-03 19:37:09 +02:00
}
}
2019-07-24 09:44:12 +02:00
impl Plugin for Skip {
2019-08-02 21:15:07 +02:00
fn config(&mut self) -> Result<Signature, ShellError> {
2019-09-11 16:36:50 +02:00
Ok(Signature::build("skip")
.desc("Skip a number of rows")
.rest(SyntaxShape::Number)
.filter())
2019-07-03 19:37:09 +02:00
}
fn begin_filter(&mut self, call_info: CallInfo) -> Result<Vec<ReturnValue>, ShellError> {
if let Some(args) = call_info.args.positional {
2019-07-03 19:37:09 +02:00
for arg in args {
match arg {
2019-08-01 03:58:42 +02:00
Tagged {
2019-07-03 19:37:09 +02:00
item: Value::Primitive(Primitive::Int(i)),
tag,
2019-07-03 19:37:09 +02:00
} => {
self.skip_amount = i.tagged(tag).coerce_into("converting for skip")?;
2019-07-03 19:37:09 +02:00
}
_ => {
return Err(ShellError::labeled_error(
"Unrecognized type in params",
"expected an integer",
arg.tag(),
))
}
2019-07-03 19:37:09 +02:00
}
}
}
Ok(vec![])
2019-07-03 19:37:09 +02:00
}
2019-08-01 03:58:42 +02:00
fn filter(&mut self, input: Tagged<Value>) -> Result<Vec<ReturnValue>, ShellError> {
2019-07-03 19:37:09 +02:00
if self.skip_amount == 0 {
2019-07-13 04:07:06 +02:00
Ok(vec![ReturnSuccess::value(input)])
2019-07-03 19:37:09 +02:00
} else {
self.skip_amount -= 1;
Ok(vec![])
}
}
}
fn main() {
2019-07-24 09:44:12 +02:00
serve_plugin(&mut Skip::new());
2019-07-03 19:37:09 +02:00
}