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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
use crate::core;
use crate::core::futures::{Future, IntoFuture};
use crate::subscription::{new_subscription, Subscriber};
use crate::types::{PubSubMetadata, SubscriptionId};
pub trait SubscribeRpcMethod<M: PubSubMetadata>: Send + Sync + 'static {
fn call(&self, params: core::Params, meta: M, subscriber: Subscriber);
}
impl<M, F> SubscribeRpcMethod<M> for F
where
F: Fn(core::Params, M, Subscriber) + Send + Sync + 'static,
M: PubSubMetadata,
{
fn call(&self, params: core::Params, meta: M, subscriber: Subscriber) {
(*self)(params, meta, subscriber)
}
}
pub trait UnsubscribeRpcMethod<M>: Send + Sync + 'static {
type Out: Future<Item = core::Value, Error = core::Error> + Send + 'static;
fn call(&self, id: SubscriptionId, meta: Option<M>) -> Self::Out;
}
impl<M, F, I> UnsubscribeRpcMethod<M> for F
where
F: Fn(SubscriptionId, Option<M>) -> I + Send + Sync + 'static,
I: IntoFuture<Item = core::Value, Error = core::Error>,
I::Future: Send + 'static,
{
type Out = I::Future;
fn call(&self, id: SubscriptionId, meta: Option<M>) -> Self::Out {
(*self)(id, meta).into_future()
}
}
pub struct PubSubHandler<T: PubSubMetadata, S: core::Middleware<T> = core::middleware::Noop> {
handler: core::MetaIoHandler<T, S>,
}
impl<T: PubSubMetadata> Default for PubSubHandler<T> {
fn default() -> Self {
PubSubHandler {
handler: Default::default(),
}
}
}
impl<T: PubSubMetadata, S: core::Middleware<T>> PubSubHandler<T, S> {
pub fn new(handler: core::MetaIoHandler<T, S>) -> Self {
PubSubHandler { handler }
}
pub fn add_subscription<F, G>(&mut self, notification: &str, subscribe: (&str, F), unsubscribe: (&str, G))
where
F: SubscribeRpcMethod<T>,
G: UnsubscribeRpcMethod<T>,
{
let (sub, unsub) = new_subscription(notification, subscribe.1, unsubscribe.1);
self.handler.add_method_with_meta(subscribe.0, sub);
self.handler.add_method_with_meta(unsubscribe.0, unsub);
}
}
impl<T: PubSubMetadata, S: core::Middleware<T>> ::std::ops::Deref for PubSubHandler<T, S> {
type Target = core::MetaIoHandler<T, S>;
fn deref(&self) -> &Self::Target {
&self.handler
}
}
impl<T: PubSubMetadata, S: core::Middleware<T>> ::std::ops::DerefMut for PubSubHandler<T, S> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.handler
}
}
impl<T: PubSubMetadata, S: core::Middleware<T>> Into<core::MetaIoHandler<T, S>> for PubSubHandler<T, S> {
fn into(self) -> core::MetaIoHandler<T, S> {
self.handler
}
}
#[cfg(test)]
mod tests {
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
use crate::core;
use crate::core::futures::future;
use crate::core::futures::sync::mpsc;
use crate::subscription::{Session, Subscriber};
use crate::types::{PubSubMetadata, SubscriptionId};
use super::PubSubHandler;
#[derive(Clone)]
struct Metadata(Arc<Session>);
impl core::Metadata for Metadata {}
impl PubSubMetadata for Metadata {
fn session(&self) -> Option<Arc<Session>> {
Some(self.0.clone())
}
}
#[test]
fn should_handle_subscription() {
let mut handler = PubSubHandler::default();
let called = Arc::new(AtomicBool::new(false));
let called2 = called.clone();
handler.add_subscription(
"hello",
("subscribe_hello", |params, _meta, subscriber: Subscriber| {
assert_eq!(params, core::Params::None);
let _sink = subscriber.assign_id(SubscriptionId::Number(5));
}),
("unsubscribe_hello", move |id, _meta| {
called2.store(true, Ordering::SeqCst);
assert_eq!(id, SubscriptionId::Number(5));
future::ok(core::Value::Bool(true))
}),
);
let (tx, _rx) = mpsc::channel(1);
let meta = Metadata(Arc::new(Session::new(tx)));
let req = r#"{"jsonrpc":"2.0","id":1,"method":"subscribe_hello","params":null}"#;
let res = handler.handle_request_sync(req, meta);
let response = r#"{"jsonrpc":"2.0","result":5,"id":1}"#;
assert_eq!(res, Some(response.into()));
assert_eq!(called.load(Ordering::SeqCst), true);
}
}