-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta-macros.rs
91 lines (69 loc) · 2.25 KB
/
meta-macros.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
use std::collections::BTreeMap;
use jsonrpc_core::futures::future;
use jsonrpc_core::{BoxFuture, MetaIoHandler, Metadata, Params, Result, Value};
use jsonrpc_derive::rpc;
#[derive(Clone)]
struct Meta(String);
impl Metadata for Meta {}
#[rpc]
pub trait Rpc<One> {
type Metadata;
/// Get One type.
#[rpc(name = "getOne")]
fn one(&self) -> Result<One>;
/// Adds two numbers and returns a result.
#[rpc(name = "add")]
fn add(&self, a: u64, b: u64) -> Result<u64>;
/// Multiplies two numbers. Second number is optional.
#[rpc(name = "mul")]
fn mul(&self, a: u64, b: Option<u64>) -> Result<u64>;
/// Retrieves and debug prints the underlying `Params` object.
#[rpc(name = "raw", params = "raw")]
fn raw(&self, params: Params) -> Result<String>;
/// Performs an asynchronous operation.
#[rpc(name = "callAsync")]
fn call(&self, a: u64) -> BoxFuture<Result<String>>;
/// Performs an asynchronous operation with meta.
#[rpc(meta, name = "callAsyncMeta", alias("callAsyncMetaAlias"))]
fn call_meta(&self, a: Self::Metadata, b: BTreeMap<String, Value>) -> BoxFuture<Result<String>>;
/// Handles a notification.
#[rpc(name = "notify")]
fn notify(&self, a: u64);
}
struct RpcImpl;
impl Rpc<u64> for RpcImpl {
type Metadata = Meta;
fn one(&self) -> Result<u64> {
Ok(100)
}
fn add(&self, a: u64, b: u64) -> Result<u64> {
Ok(a + b)
}
fn mul(&self, a: u64, b: Option<u64>) -> Result<u64> {
Ok(a * b.unwrap_or(1))
}
fn raw(&self, params: Params) -> Result<String> {
Ok(format!("Got: {:?}", params))
}
fn call(&self, x: u64) -> BoxFuture<Result<String>> {
Box::pin(future::ready(Ok(format!("OK: {}", x))))
}
fn call_meta(&self, meta: Self::Metadata, map: BTreeMap<String, Value>) -> BoxFuture<Result<String>> {
Box::pin(future::ready(Ok(format!("From: {}, got: {:?}", meta.0, map))))
}
fn notify(&self, a: u64) {
println!("Received `notify` with value: {}", a);
}
}
fn main() {
let mut io = MetaIoHandler::default();
let rpc = RpcImpl;
io.extend_with(rpc.to_delegate());
let server =
jsonrpc_tcp_server::ServerBuilder::with_meta_extractor(io, |context: &jsonrpc_tcp_server::RequestContext| {
Meta(format!("{}", context.peer_addr))
})
.start(&"0.0.0.0:3030".parse().unwrap())
.expect("Server must start with no issues");
server.wait()
}