nushell/src/plugins/inc.rs

103 lines
3.6 KiB
Rust
Raw Normal View History

2019-06-27 06:56:48 +02:00
use nu::{Primitive, ReturnValue, ShellError, Spanned, Value};
use serde::{Deserialize, Serialize};
use std::io;
/// A wrapper for proactive notifications to the IDE (eg. diagnostics). These must
/// follow the JSON 2.0 RPC spec
#[derive(Debug, Serialize, Deserialize)]
pub struct JsonRpc<T> {
jsonrpc: String,
pub method: String,
2019-06-27 07:16:29 +02:00
pub params: Vec<T>,
2019-06-27 06:56:48 +02:00
}
impl<T> JsonRpc<T> {
2019-06-27 07:16:29 +02:00
pub fn new<U: Into<String>>(method: U, params: Vec<T>) -> Self {
2019-06-27 06:56:48 +02:00
JsonRpc {
jsonrpc: "2.0".into(),
method: method.into(),
params,
}
}
}
2019-06-27 07:16:29 +02:00
fn send_response<T: Serialize>(result: Vec<T>) {
2019-06-27 06:56:48 +02:00
let response = JsonRpc::new("response", result);
let response_raw = serde_json::to_string(&response).unwrap();
println!("{}", response_raw);
}
#[derive(Debug, Serialize, Deserialize)]
#[serde(tag = "method")]
#[allow(non_camel_case_types)]
pub enum NuCommand {
init { params: Vec<Spanned<Value>> },
filter { params: Value },
quit,
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut inc_by = 1;
loop {
let mut input = String::new();
match io::stdin().read_line(&mut input) {
Ok(_) => {
let command = serde_json::from_str::<NuCommand>(&input);
match command {
Ok(NuCommand::init { params }) => {
for param in params {
match param {
Spanned {
item: Value::Primitive(Primitive::Int(i)),
..
} => {
inc_by = i;
}
_ => {
2019-06-27 07:16:29 +02:00
send_response(vec![ReturnValue::Value(Value::Error(
Box::new(ShellError::string("Unrecognized type in params")),
))]);
2019-06-27 06:56:48 +02:00
}
}
}
}
Ok(NuCommand::filter { params }) => match params {
Value::Primitive(Primitive::Int(i)) => {
send_response(vec![ReturnValue::Value(Value::int(i + inc_by))]);
}
Value::Primitive(Primitive::Bytes(b)) => {
send_response(vec![ReturnValue::Value(Value::bytes(
2019-06-30 08:46:49 +02:00
b + inc_by as u64,
2019-06-27 06:56:48 +02:00
))]);
}
2019-06-30 08:46:49 +02:00
x => {
2019-06-27 07:16:29 +02:00
send_response(vec![ReturnValue::Value(Value::Error(Box::new(
2019-06-30 08:46:49 +02:00
ShellError::string(format!("Unrecognized type in stream: {:?}", x)),
2019-06-27 07:16:29 +02:00
)))]);
2019-06-27 06:56:48 +02:00
}
},
Ok(NuCommand::quit) => {
break;
}
2019-06-30 08:46:49 +02:00
Err(e) => {
2019-06-27 07:16:29 +02:00
send_response(vec![ReturnValue::Value(Value::Error(Box::new(
2019-06-30 08:46:49 +02:00
ShellError::string(format!(
"Unrecognized type in stream: {} {:?}",
input, e
)),
2019-06-27 07:16:29 +02:00
)))]);
2019-06-27 06:56:48 +02:00
}
}
}
2019-06-27 07:16:29 +02:00
Err(_) => {
send_response(vec![ReturnValue::Value(Value::Error(Box::new(
2019-06-30 08:46:49 +02:00
ShellError::string(format!("Unrecognized type in stream: {}", input)),
2019-06-27 07:16:29 +02:00
)))]);
2019-06-27 06:56:48 +02:00
}
}
}
Ok(())
}