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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#![warn(missing_docs)]
extern crate futures;
extern crate parity_runtime;
extern crate serde_json;
#[macro_use]
extern crate log;
#[cfg(test)]
extern crate fake_fetch;
pub extern crate fetch;
use std::{cmp, fmt, io, str};
use fetch::{Client as FetchClient, Fetch};
use futures::{
future::{self, Either},
Future, Stream,
};
use parity_runtime::Executor;
use serde_json::Value;
#[derive(Debug)]
pub struct PriceInfo {
pub ethusd: f32,
}
#[derive(Debug)]
pub enum Error {
StatusCode(&'static str),
UnexpectedResponse(Option<String>),
Fetch(fetch::Error),
Io(io::Error),
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Self {
Error::Io(err)
}
}
impl From<fetch::Error> for Error {
fn from(err: fetch::Error) -> Self {
Error::Fetch(err)
}
}
pub struct Client<F = FetchClient> {
pool: Executor,
api_endpoint: String,
fetch: F,
}
impl<F> fmt::Debug for Client<F> {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.debug_struct("price_info::Client")
.field("api_endpoint", &self.api_endpoint)
.finish()
}
}
impl<F> cmp::PartialEq for Client<F> {
fn eq(&self, other: &Client<F>) -> bool {
self.api_endpoint == other.api_endpoint
}
}
impl<F: Fetch> Client<F> {
pub fn new(fetch: F, pool: Executor, api_endpoint: String) -> Client<F> {
Client {
pool,
api_endpoint,
fetch,
}
}
pub fn get<G: FnOnce(PriceInfo) + Sync + Send + 'static>(&self, set_price: G) {
let future = self
.fetch
.get(&self.api_endpoint, fetch::Abort::default())
.from_err()
.and_then(|response| {
if !response.is_success() {
let s = Error::StatusCode(
response.status().canonical_reason().unwrap_or("unknown"),
);
return Either::A(future::err(s));
}
Either::B(response.concat2().from_err())
})
.and_then(move |body| {
let body_str = str::from_utf8(&body).ok();
let value: Option<Value> = body_str.and_then(|s| serde_json::from_str(s).ok());
let ethusd = value
.as_ref()
.and_then(|value| value.pointer("/result/ethusd"))
.and_then(|obj| obj.as_str())
.and_then(|s| s.parse().ok());
match ethusd {
Some(ethusd) => {
set_price(PriceInfo { ethusd });
Ok(())
}
None => Err(Error::UnexpectedResponse(body_str.map(From::from))),
}
})
.map_err(|err| {
warn!("Failed to auto-update latest ETH price: {:?}", err);
});
self.pool.spawn(future)
}
}
#[cfg(test)]
mod test {
use fake_fetch::FakeFetch;
use parity_runtime::{Executor, Runtime};
use std::sync::{
atomic::{AtomicBool, Ordering},
Arc,
};
use Client;
fn price_info_ok(response: &str, executor: Executor) -> Client<FakeFetch<String>> {
Client::new(
FakeFetch::new(Some(response.to_owned())),
executor,
"fake_endpoint".to_owned(),
)
}
fn price_info_not_found(executor: Executor) -> Client<FakeFetch<String>> {
Client::new(
FakeFetch::new(None::<String>),
executor,
"fake_endpoint".to_owned(),
)
}
#[test]
fn should_get_price_info() {
let runtime = Runtime::with_thread_count(1);
let response = r#"{
"status": "1",
"message": "OK",
"result": {
"ethbtc": "0.0891",
"ethbtc_timestamp": "1499894236",
"ethusd": "209.55",
"ethusd_timestamp": "1499894229"
}
}"#;
let price_info = price_info_ok(response, runtime.executor());
price_info.get(|price| {
assert_eq!(price.ethusd, 209.55);
});
}
#[test]
fn should_not_call_set_price_if_response_is_malformed() {
let runtime = Runtime::with_thread_count(1);
let response = "{}";
let price_info = price_info_ok(response, runtime.executor());
let b = Arc::new(AtomicBool::new(false));
let bb = b.clone();
price_info.get(move |_| {
bb.store(true, Ordering::SeqCst);
});
assert_eq!(b.load(Ordering::SeqCst), false);
}
#[test]
fn should_not_call_set_price_if_response_is_invalid() {
let runtime = Runtime::with_thread_count(1);
let price_info = price_info_not_found(runtime.executor());
let b = Arc::new(AtomicBool::new(false));
let bb = b.clone();
price_info.get(move |_| {
bb.store(true, Ordering::SeqCst);
});
assert_eq!(b.load(Ordering::SeqCst), false);
}
}