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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#![warn(missing_docs)]
use jsonrpc_core::Call;
use jsonrpc_core::Error;
use jsonrpc_core::Id;
use jsonrpc_core::MethodCall;
use jsonrpc_core::Notification;
use jsonrpc_core::Params;
use jsonrpc_core::Version;
use jsonrpc_pubsub::SubscriptionId;
use serde::Deserialize;
use serde::Serialize;
use serde_json::Value;
use super::client::CallMessage;
use super::client::NotifyMessage;
use super::client::RpcError;
pub struct RequestBuilder {
id: u64,
}
impl RequestBuilder {
#[allow(clippy::new_without_default)]
pub fn new() -> Self {
RequestBuilder { id: 0 }
}
fn next_id(&mut self) -> Id {
let id = self.id;
self.id = id + 1;
Id::Num(id)
}
pub fn single_request(&mut self, method: String, params: Params) -> (Id, String) {
let id = self.next_id();
let request = jsonrpc_core::Request::Single(Call::MethodCall(MethodCall {
jsonrpc: Some(Version::V2),
method,
params,
id: id.clone(),
}));
(
id,
serde_json::to_string(&request).expect("Request serialization is infallible; qed"),
)
}
pub fn call_request(&mut self, msg: &CallMessage) -> (Id, String) {
self.single_request(msg.method.clone(), msg.params.clone())
}
pub fn subscribe_request(
&mut self,
subscribe: String,
subscribe_params: Params,
) -> (Id, String) {
self.single_request(subscribe, subscribe_params)
}
pub fn unsubscribe_request(
&mut self,
unsubscribe: String,
sid: SubscriptionId,
) -> (Id, String) {
self.single_request(unsubscribe, Params::Array(vec![Value::from(sid)]))
}
pub fn notification(&mut self, msg: &NotifyMessage) -> String {
let request = jsonrpc_core::Request::Single(Call::Notification(Notification {
jsonrpc: Some(Version::V2),
method: msg.method.clone(),
params: msg.params.clone(),
}));
serde_json::to_string(&request).expect("Request serialization is infallible; qed")
}
}
#[allow(clippy::type_complexity)]
pub fn parse_response(
response: &str,
) -> Result<
(
Id,
Result<Value, RpcError>,
Option<String>,
Option<SubscriptionId>,
),
RpcError,
> {
jsonrpc_core::serde_from_str::<ClientResponse>(response)
.map_err(|e| RpcError::ParseError(e.to_string(), Box::new(e)))
.map(|response| {
let id = response.id().unwrap_or(Id::Null);
let sid = response.subscription_id();
let method = response.method();
let value: Result<Value, Error> = response.into();
let result = value.map_err(RpcError::JsonRpcError);
(id, result, method, sid)
})
}
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
#[serde(untagged)]
pub enum ClientResponse {
Output(jsonrpc_core::Output),
Notification(jsonrpc_core::Notification),
}
impl ClientResponse {
pub fn id(&self) -> Option<Id> {
match *self {
ClientResponse::Output(ref output) => Some(output.id().clone()),
ClientResponse::Notification(_) => None,
}
}
pub fn method(&self) -> Option<String> {
match *self {
ClientResponse::Notification(ref n) => Some(n.method.to_owned()),
ClientResponse::Output(_) => None,
}
}
pub fn subscription_id(&self) -> Option<SubscriptionId> {
match *self {
ClientResponse::Notification(ref n) => match &n.params {
jsonrpc_core::Params::Map(map) => match map.get("subscription") {
Some(value) => SubscriptionId::parse_value(value),
None => None,
},
_ => None,
},
_ => None,
}
}
}
impl From<ClientResponse> for Result<Value, Error> {
fn from(res: ClientResponse) -> Self {
match res {
ClientResponse::Output(output) => output.into(),
ClientResponse::Notification(n) => match &n.params {
Params::Map(map) => {
let subscription = map.get("subscription");
let result = map.get("result");
let error = map.get("error");
match (subscription, result, error) {
(Some(_), Some(result), _) => Ok(result.to_owned()),
(Some(_), _, Some(error)) => {
let error = serde_json::from_value::<Error>(error.to_owned())
.ok()
.unwrap_or_else(Error::parse_error);
Err(error)
}
_ => Ok(n.params.into()),
}
}
_ => Ok(n.params.into()),
},
}
}
}