#json-rpc #rpc #macro #json

rs-jsonrpc-macros

rs-jsonrpc-core 的辅助宏

1 个稳定版本

使用旧的 Rust 2015

8.0.0 2019 年 5 月 14 日

#16 in #jsonrpc

MIT 许可证

105KB
2.5K SLoC

rs_jsonrpc_core 的高层、类型化包装。

允许以类型化方式创建“服务”对象,将一组 RPC 方法组织在一起。

示例

extern crate rs_jsonrpc_core;
#[macro_use] extern crate rs_jsonrpc_macros;
use rs_jsonrpc_core::{IoHandler, Error, Result};
use rs_jsonrpc_core::futures::future::{self, FutureResult};
build_rpc_trait! {
	pub trait Rpc {
		/// Returns a protocol version
		#[rpc(name = "protocolVersion")]
		fn protocol_version(&self) -> Result<String>;

		/// Adds two numbers and returns a result
		#[rpc(name = "add")]
		fn add(&self, u64, u64) -> Result<u64>;

		/// Performs asynchronous operation
		#[rpc(name = "callAsync")]
		fn call(&self, u64) -> FutureResult<String, Error>;
	}
}
struct RpcImpl;
impl Rpc for RpcImpl {
	fn protocol_version(&self) -> Result<String> {
		Ok("version1".into())
	}

	fn add(&self, a: u64, b: u64) -> Result<u64> {
		Ok(a + b)
	}

	fn call(&self, _: u64) -> FutureResult<String, Error> {
		future::ok("OK".to_owned()).into()
	}
}

fn main() {
     let mut io = IoHandler::new();
     let rpc = RpcImpl;

     io.extend_with(rpc.to_delegate());
}

依赖关系

~1.7–2.7MB
~53K SLoC