forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blocking.rs
314 lines (272 loc) · 9.6 KB
/
blocking.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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0
use std::time::Duration;
use super::{
request::{JsonRpcRequest, MethodRequest},
response::{MethodResponse, Response},
state::StateManager,
validate, validate_batch, BatchResponse, USER_AGENT,
};
use crate::{
error::WaitForTransactionError,
views::{
AccountStateWithProofView, AccountView, CurrencyInfoView, EventView, MetadataView,
StateProofView, TransactionView,
},
Error, Result, Retry, State,
};
use diem_crypto::hash::CryptoHash;
use diem_types::{
account_address::AccountAddress,
transaction::{SignedTransaction, Transaction},
};
use serde::{de::DeserializeOwned, Serialize};
const REQUEST_TIMEOUT: u64 = 10_000;
#[derive(Clone, Debug)]
pub struct BlockingClient {
url: String,
state: StateManager,
retry: Retry,
}
impl BlockingClient {
pub fn new<T: Into<String>>(url: T) -> Self {
Self {
url: url.into(),
state: StateManager::new(),
retry: Retry::default(),
}
}
pub fn last_known_state(&self) -> Option<State> {
self.state.last_known_state()
}
pub fn wait_for_signed_transaction(
&self,
txn: &SignedTransaction,
timeout: Option<Duration>,
delay: Option<Duration>,
) -> Result<Response<TransactionView>, WaitForTransactionError> {
self.wait_for_transaction(
txn.sender(),
txn.sequence_number(),
txn.expiration_timestamp_secs(),
&Transaction::UserTransaction(txn.clone()).hash().to_hex(),
timeout,
delay,
)
}
pub fn wait_for_transaction(
&self,
address: AccountAddress,
seq: u64,
expiration_time_secs: u64,
txn_hash: &str,
timeout: Option<Duration>,
delay: Option<Duration>,
) -> Result<Response<TransactionView>, WaitForTransactionError> {
const DEFAULT_TIMEOUT: Duration = Duration::from_secs(5);
const DEFAULT_DELAY: Duration = Duration::from_millis(50);
let start = std::time::Instant::now();
while start.elapsed() < timeout.unwrap_or(DEFAULT_TIMEOUT) {
let txn_resp = self
.get_account_transaction(address, seq, true)
.map_err(WaitForTransactionError::GetTransactionError)?;
if let (Some(txn), state) = txn_resp.into_parts() {
if txn.hash.0 != txn_hash {
return Err(WaitForTransactionError::TransactionHashMismatchError(txn));
}
match txn.vm_status {
diem_json_rpc_types::views::VMStatusView::Executed => {}
_ => return Err(WaitForTransactionError::TransactionExecutionFailed(txn)),
}
return Ok(Response::new(txn, state));
}
if let Some(state) = self.last_known_state() {
if expiration_time_secs <= state.timestamp_usecs / 1_000_000 {
return Err(WaitForTransactionError::TransactionExpired);
}
}
std::thread::sleep(delay.unwrap_or(DEFAULT_DELAY));
}
Err(WaitForTransactionError::Timeout)
}
pub fn batch(
&self,
requests: Vec<MethodRequest>,
) -> Result<Vec<Result<Response<MethodResponse>>>> {
self.send_batch(requests)
}
pub fn submit(&self, txn: &SignedTransaction) -> Result<Response<()>> {
self.send(MethodRequest::submit(txn).map_err(Error::request)?)
}
pub fn get_metadata_by_version(&self, version: u64) -> Result<Response<MetadataView>> {
self.send(MethodRequest::get_metadata_by_version(version))
}
pub fn get_metadata(&self) -> Result<Response<MetadataView>> {
self.send(MethodRequest::get_metadata())
}
pub fn get_account(&self, address: AccountAddress) -> Result<Response<Option<AccountView>>> {
self.send(MethodRequest::get_account(address))
}
pub fn get_transactions(
&self,
start_seq: u64,
limit: u64,
include_events: bool,
) -> Result<Response<Vec<TransactionView>>> {
self.send(MethodRequest::get_transactions(
start_seq,
limit,
include_events,
))
}
pub fn get_account_transaction(
&self,
address: AccountAddress,
seq: u64,
include_events: bool,
) -> Result<Response<Option<TransactionView>>> {
self.send(MethodRequest::get_account_transaction(
address,
seq,
include_events,
))
}
pub fn get_account_transactions(
&self,
address: AccountAddress,
start_seq: u64,
limit: u64,
include_events: bool,
) -> Result<Response<Vec<TransactionView>>> {
self.send(MethodRequest::get_account_transactions(
address,
start_seq,
limit,
include_events,
))
}
pub fn get_events(
&self,
key: &str,
start_seq: u64,
limit: u64,
) -> Result<Response<Vec<EventView>>> {
self.send(MethodRequest::get_events(key, start_seq, limit))
}
pub fn get_currencies(&self) -> Result<Response<Vec<CurrencyInfoView>>> {
self.send(MethodRequest::get_currencies())
}
pub fn get_network_status(&self) -> Result<Response<u64>> {
self.send(MethodRequest::get_network_status())
}
//
// Experimental APIs
//
pub fn get_state_proof(&self, from_version: u64) -> Result<Response<StateProofView>> {
self.send(MethodRequest::get_state_proof(from_version))
}
pub fn get_account_state_with_proof(
&self,
address: AccountAddress,
from_version: Option<u64>,
to_version: Option<u64>,
) -> Result<Response<AccountStateWithProofView>> {
self.send(MethodRequest::get_account_state_with_proof(
address,
from_version,
to_version,
))
}
pub fn get_transactions_with_proofs(
&self,
start_version: u64,
limit: u64,
) -> Result<Response<()>> {
self.send(MethodRequest::get_transactions_with_proofs(
start_version,
limit,
))
}
pub fn get_events_with_proofs(
&self,
key: &str,
start_seq: u64,
limit: u64,
) -> Result<Response<()>> {
self.send(MethodRequest::get_events_with_proofs(key, start_seq, limit))
}
//
// Private Helpers
//
fn send<T: DeserializeOwned>(&self, request: MethodRequest) -> Result<Response<T>> {
let request = JsonRpcRequest::new(request);
self.retry.retry(|| {
let resp: diem_json_rpc_types::response::JsonRpcResponse = self.send_impl(&request)?;
let (id, state, result) = validate(&self.state, &resp)?;
if request.id() != id {
return Err(Error::rpc_response("invalid response id"));
}
let inner = serde_json::from_value(result).map_err(Error::decode)?;
Ok(Response::new(inner, state))
})
}
fn send_batch(
&self,
requests: Vec<MethodRequest>,
) -> Result<Vec<Result<Response<MethodResponse>>>> {
let request: Vec<JsonRpcRequest> = requests.into_iter().map(JsonRpcRequest::new).collect();
let resp: BatchResponse = self.send_impl(&request)?;
let resp = resp.success()?;
validate_batch(&self.state, &request, resp)
}
// Executes the specified request method using the given parameters by contacting the JSON RPC
// server. If the 'http_proxy' or 'https_proxy' environment variable is set, enable the proxy.
fn send_impl<S: Serialize, T: DeserializeOwned>(&self, payload: &S) -> Result<T> {
let mut request = ureq::post(&self.url)
.timeout_connect(REQUEST_TIMEOUT)
.set("User-Agent", USER_AGENT)
.build();
let proxy = proxy::Proxy::new();
let host = request.get_host().expect("unable to get the host");
let scheme = request
.get_scheme()
.expect("Unable to get the scheme from the host");
let proxy_url = match scheme.as_str() {
"http" => proxy.http(&host),
"https" => proxy.https(&host),
_ => None,
};
if let Some(proxy_url) = proxy_url {
request.set_proxy(ureq::Proxy::new(proxy_url).expect("Unable to parse proxy_url"));
}
let resp = request.send_json(serde_json::json!(payload));
if resp.synthetic() {
let e = resp.into_synthetic_error().unwrap();
let error = match &e {
ureq::Error::BadUrl(_)
| ureq::Error::UnknownScheme(_)
| ureq::Error::DnsFailed(_)
| ureq::Error::BadHeader
| ureq::Error::BadProxy
| ureq::Error::BadProxyCreds
| ureq::Error::ProxyConnect
| ureq::Error::InvalidProxyCreds
| ureq::Error::ConnectionFailed(_)
| ureq::Error::TlsError(_) => Error::request(e),
ureq::Error::Io(io_error) => {
if let std::io::ErrorKind::TimedOut = io_error.kind() {
Error::timeout(e)
} else {
Error::unknown(e)
}
}
_ => Error::unknown(e),
};
return Err(error);
}
if resp.status() != 200 {
return Err(Error::status(resp.status()));
}
resp.into_json_deserialize().map_err(Error::decode)
}
}