forked from paritytech/jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 53
/
pubsub.rs
70 lines (62 loc) · 1.9 KB
/
pubsub.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
use std::sync::{atomic, Arc};
use std::{thread, time};
use jsonrpc_core::*;
use jsonrpc_pubsub::{PubSubHandler, Session, Subscriber, SubscriptionId};
use jsonrpc_tcp_server::{RequestContext, ServerBuilder};
/// To test the server:
///
/// ```bash
/// $ netcat localhost 3030 -
/// {"id":1,"jsonrpc":"2.0","method":"hello_subscribe","params":[10]}
///
/// ```
fn main() {
let mut io = PubSubHandler::new(MetaIoHandler::default());
io.add_sync_method("say_hello", |_params: Params| Ok(Value::String("hello".to_string())));
let is_done = Arc::new(atomic::AtomicBool::default());
let is_done2 = is_done.clone();
io.add_subscription(
"hello",
("subscribe_hello", move |params: Params, _, subscriber: Subscriber| {
if params != Params::None {
subscriber
.reject(Error {
code: ErrorCode::ParseError,
message: "Invalid parameters. Subscription rejected.".into(),
data: None,
})
.unwrap();
return;
}
let is_done = is_done.clone();
thread::spawn(move || {
let sink = subscriber.assign_id(SubscriptionId::Number(5)).unwrap();
// or subscriber.reject(Error {} );
// or drop(subscriber)
loop {
if is_done.load(atomic::Ordering::SeqCst) {
return;
}
thread::sleep(time::Duration::from_millis(100));
match sink.notify(Params::Array(vec![Value::Number(10.into())])) {
Ok(_) => {}
Err(_) => {
println!("Subscription has ended, finishing.");
break;
}
}
}
});
}),
("remove_hello", move |_id: SubscriptionId, _| {
println!("Closing subscription");
is_done2.store(true, atomic::Ordering::SeqCst);
futures::future::ok(Value::Bool(true))
}),
);
let server = ServerBuilder::new(io)
.session_meta_extractor(|context: &RequestContext| Some(Arc::new(Session::new(context.sender.clone()))))
.start(&"127.0.0.1:3030".parse().unwrap())
.expect("Unable to start RPC server");
server.wait();
}