Crates.io | json_rpc |
lib.rs | json_rpc |
version | 0.2.0 |
source | src |
created_at | 2015-06-08 08:17:38.964293 |
updated_at | 2015-12-11 23:53:50.453159 |
description | JSON-RPC 2.0 Implementation |
homepage | |
repository | https://github.com/bcndanos/json_rpc |
max_upload_size | |
id | 2337 |
size | 36,144 |
JSON-RPC 2.0 Implementation in Rust
Crate | Travis |
---|---|
#Overview
Currently in development. Look at the examples in ./examples for more information.
#License
Dual-licensed to be compatible with the Rust project.
Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.
This is a basic example with two methods:
#[macro_use(rpc_method)]
extern crate json_rpc;
use json_rpc::{Server, Json, Error};
fn main() {
let mut rpc_server = Server::new();
// Registers a Rpc Method named "Subtract" with two parameter "by Name".
rpc_method!(rpc_server, Subtract, oper1<u64>;oper2<u64>, {
Ok(Json::U64(oper1 - oper2))
});
// Registers a Rpc Method named "Multiply" with N parameteres "by Position".
rpc_method!(rpc_server, Multiply, values[u64], {
let mut r = 1;
for v in values { r *= v }
Ok(Json::U64(r))
});
let str_request = "{\"jsonrpc\":\"2.0\",\"method\":\"Subtract\", \"params\":{\"oper1\":23, \"oper2\":4}, \"id\":2}".to_string();
match rpc_server.request(str_request) {
Some(str_response) => assert_eq!(str_response, "{\"id\":2,\"jsonrpc\":\"2.0\",\"result\":19}") ,
None => unreachable!(),
};
let str_request = "{\"jsonrpc\":\"2.0\",\"method\":\"Multiply\", \"params\":[5, 6, 7], \"id\":3}".to_string();
match rpc_server.request(str_request) {
Some(str_response) => assert_eq!(str_response, "{\"id\":3,\"jsonrpc\":\"2.0\",\"result\":210}") ,
None => unreachable!(),
};
}