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
use parking_lot::RwLock;
use std::{sync::Arc, time::Duration};
use jsonrpc_core::{
self as core,
futures::{future, Future, Sink, Stream},
MetaIoHandler, Result,
};
use jsonrpc_pubsub::{typed::Subscriber, SubscriptionId};
use tokio_timer;
use parity_runtime::Executor;
use v1::{helpers::GenericPollManager, metadata::Metadata, traits::PubSub};
pub struct PubSubClient<S: core::Middleware<Metadata>> {
poll_manager: Arc<RwLock<GenericPollManager<S>>>,
executor: Executor,
}
impl<S: core::Middleware<Metadata>> PubSubClient<S> {
pub fn new(rpc: MetaIoHandler<Metadata, S>, executor: Executor) -> Self {
let poll_manager = Arc::new(RwLock::new(GenericPollManager::new(rpc)));
let pm2 = Arc::downgrade(&poll_manager);
let timer = tokio_timer::wheel()
.tick_duration(Duration::from_millis(500))
.build();
let interval = timer.interval(Duration::from_millis(1000));
executor.spawn(
interval
.map_err(|e| warn!("Polling timer error: {:?}", e))
.for_each(move |_| {
if let Some(pm2) = pm2.upgrade() {
pm2.read().tick()
} else {
Box::new(future::err(()))
}
}),
);
PubSubClient {
poll_manager,
executor,
}
}
}
impl PubSubClient<core::NoopMiddleware> {
#[cfg(test)]
pub fn new_test(
rpc: MetaIoHandler<Metadata, core::NoopMiddleware>,
executor: Executor,
) -> Self {
let client = Self::new(MetaIoHandler::with_middleware(Default::default()), executor);
*client.poll_manager.write() = GenericPollManager::new_test(rpc);
client
}
}
impl<S: core::Middleware<Metadata>> PubSub for PubSubClient<S> {
type Metadata = Metadata;
fn parity_subscribe(
&self,
mut meta: Metadata,
subscriber: Subscriber<core::Value>,
method: String,
params: Option<core::Params>,
) {
let params = params.unwrap_or_else(|| core::Params::Array(vec![]));
meta.session = None;
let mut poll_manager = self.poll_manager.write();
let (id, receiver) = poll_manager.subscribe(meta, method, params);
match subscriber.assign_id(id.clone()) {
Ok(sink) => {
self.executor.spawn(
receiver
.forward(sink.sink_map_err(|e| {
warn!("Cannot send notification: {:?}", e);
}))
.map(|_| ()),
);
}
Err(_) => {
poll_manager.unsubscribe(&id);
}
}
}
fn parity_unsubscribe(&self, _: Option<Self::Metadata>, id: SubscriptionId) -> Result<bool> {
let res = self.poll_manager.write().unsubscribe(&id);
Ok(res)
}
}