-
Notifications
You must be signed in to change notification settings - Fork 226
/
client.rs
337 lines (296 loc) · 11.2 KB
/
client.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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
//! Tendermint RPC client.
mod compat;
pub use compat::CompatMode;
#[cfg(any(feature = "http-client", feature = "websocket-client"))]
mod subscription;
#[cfg(any(feature = "http-client", feature = "websocket-client"))]
pub use subscription::{Subscription, SubscriptionClient};
#[cfg(any(feature = "http-client", feature = "websocket-client"))]
pub mod sync;
#[cfg(any(feature = "http-client", feature = "websocket-client"))]
mod transport;
#[cfg(feature = "http-client")]
pub use transport::http::{HttpClient, HttpClientUrl};
#[cfg(feature = "websocket-client")]
pub use transport::websocket::{
WebSocketClient, WebSocketClientDriver, WebSocketClientUrl, WebSocketConfig,
};
#[cfg(any(feature = "http-client", feature = "websocket-client"))]
pub use transport::mock::{MockClient, MockRequestMatcher, MockRequestMethodMatcher};
use core::fmt;
use async_trait::async_trait;
use serde::{de::DeserializeOwned, Serialize};
use tendermint::{abci, block::Height, evidence::Evidence, Genesis, Hash};
use crate::{
endpoint::{validators::DEFAULT_VALIDATORS_PER_PAGE, *},
paging::Paging,
prelude::*,
query::Query,
Error, Order, SimpleRequest,
};
/// Provides lightweight access to the Tendermint RPC. It gives access to all
/// endpoints with the exception of the event subscription-related ones.
///
/// To access event subscription capabilities, use a client that implements the
/// [`SubscriptionClient`] trait.
///
/// [`SubscriptionClient`]: trait.SubscriptionClient.html
#[async_trait]
pub trait Client {
/// `/abci_info`: get information about the ABCI application.
async fn abci_info(&self) -> Result<abci::response::Info, Error> {
Ok(self.perform(abci_info::Request).await?.response)
}
/// `/abci_query`: query the ABCI application
async fn abci_query<V>(
&self,
path: Option<String>,
data: V,
height: Option<Height>,
prove: bool,
) -> Result<abci_query::AbciQuery, Error>
where
V: Into<Vec<u8>> + Send,
{
Ok(self
.perform(abci_query::Request::new(path, data, height, prove))
.await?
.response)
}
/// `/block`: get block at a given height.
async fn block<H>(&self, height: H) -> Result<block::Response, Error>
where
H: Into<Height> + Send,
{
self.perform(block::Request::new(height.into())).await
}
/// `/block_by_hash`: get block by hash.
async fn block_by_hash(
&self,
hash: tendermint::Hash,
) -> Result<block_by_hash::Response, Error> {
self.perform(block_by_hash::Request::new(hash)).await
}
/// `/block`: get the latest block.
async fn latest_block(&self) -> Result<block::Response, Error> {
self.perform(block::Request::default()).await
}
/// `/header`: get block header at a given height.
async fn header<H>(&self, height: H) -> Result<header::Response, Error>
where
H: Into<Height> + Send,
{
self.perform(header::Request::new(height.into())).await
}
/// `/header_by_hash`: get block by hash.
async fn header_by_hash(
&self,
hash: tendermint::Hash,
) -> Result<header_by_hash::Response, Error> {
self.perform(header_by_hash::Request::new(hash)).await
}
/// `/block_results`: get ABCI results for a block at a particular height.
async fn block_results<H>(&self, height: H) -> Result<block_results::Response, Error>
where
H: Into<Height> + Send,
{
self.perform(block_results::Request::new(height.into()))
.await
}
/// `/block_results`: get ABCI results for the latest block.
async fn latest_block_results(&self) -> Result<block_results::Response, Error> {
self.perform(block_results::Request::default()).await
}
/// `/block_search`: search for blocks by BeginBlock and EndBlock events.
async fn block_search(
&self,
query: Query,
page: u32,
per_page: u8,
order: Order,
) -> Result<block_search::Response, Error> {
self.perform(block_search::Request::new(query, page, per_page, order))
.await
}
/// `/blockchain`: get block headers for `min` <= `height` <= `max`.
///
/// Block headers are returned in descending order (highest first).
///
/// Returns at most 20 items.
async fn blockchain<H>(&self, min: H, max: H) -> Result<blockchain::Response, Error>
where
H: Into<Height> + Send,
{
// TODO(tarcieri): return errors for invalid params before making request?
self.perform(blockchain::Request::new(min.into(), max.into()))
.await
}
/// `/broadcast_tx_async`: broadcast a transaction, returning immediately.
async fn broadcast_tx_async<T>(&self, tx: T) -> Result<broadcast::tx_async::Response, Error>
where
T: Into<Vec<u8>> + Send,
{
self.perform(broadcast::tx_async::Request::new(tx)).await
}
/// `/broadcast_tx_sync`: broadcast a transaction, returning the response
/// from `CheckTx`.
async fn broadcast_tx_sync<T>(&self, tx: T) -> Result<broadcast::tx_sync::Response, Error>
where
T: Into<Vec<u8>> + Send,
{
self.perform(broadcast::tx_sync::Request::new(tx)).await
}
/// `/broadcast_tx_commit`: broadcast a transaction, returning the response
/// from `DeliverTx`.
async fn broadcast_tx_commit<T>(&self, tx: T) -> Result<broadcast::tx_commit::Response, Error>
where
T: Into<Vec<u8>> + Send,
{
self.perform(broadcast::tx_commit::Request::new(tx)).await
}
/// `/commit`: get block commit at a given height.
async fn commit<H>(&self, height: H) -> Result<commit::Response, Error>
where
H: Into<Height> + Send,
{
self.perform(commit::Request::new(height.into())).await
}
/// `/consensus_params`: get current consensus parameters at the specified
/// height.
async fn consensus_params<H>(&self, height: H) -> Result<consensus_params::Response, Error>
where
H: Into<Height> + Send,
{
self.perform(consensus_params::Request::new(Some(height.into())))
.await
}
/// `/consensus_state`: get current consensus state
async fn consensus_state(&self) -> Result<consensus_state::Response, Error> {
self.perform(consensus_state::Request::new()).await
}
// TODO(thane): Simplify once validators endpoint removes pagination.
/// `/validators`: get validators a given height.
async fn validators<H>(&self, height: H, paging: Paging) -> Result<validators::Response, Error>
where
H: Into<Height> + Send,
{
let height = height.into();
match paging {
Paging::Default => {
self.perform(validators::Request::new(Some(height), None, None))
.await
},
Paging::Specific {
page_number,
per_page,
} => {
self.perform(validators::Request::new(
Some(height),
Some(page_number),
Some(per_page),
))
.await
},
Paging::All => {
let mut page_num = 1_usize;
let mut validators = Vec::new();
let per_page = DEFAULT_VALIDATORS_PER_PAGE.into();
loop {
let response = self
.perform(validators::Request::new(
Some(height),
Some(page_num.into()),
Some(per_page),
))
.await?;
validators.extend(response.validators);
if validators.len() as i32 == response.total {
return Ok(validators::Response::new(
response.block_height,
validators,
response.total,
));
}
page_num += 1;
}
},
}
}
/// `/consensus_params`: get the latest consensus parameters.
async fn latest_consensus_params(&self) -> Result<consensus_params::Response, Error> {
self.perform(consensus_params::Request::new(None)).await
}
/// `/commit`: get the latest block commit
async fn latest_commit(&self) -> Result<commit::Response, Error> {
self.perform(commit::Request::default()).await
}
/// `/health`: get node health.
///
/// Returns empty result (200 OK) on success, no response in case of an error.
async fn health(&self) -> Result<(), Error> {
self.perform(health::Request).await?;
Ok(())
}
/// `/genesis`: get genesis file.
async fn genesis<AppState>(&self) -> Result<Genesis<AppState>, Error>
where
AppState: fmt::Debug + Serialize + DeserializeOwned + Send,
{
Ok(self.perform(genesis::Request::default()).await?.genesis)
}
/// `/net_info`: obtain information about P2P and other network connections.
async fn net_info(&self) -> Result<net_info::Response, Error> {
self.perform(net_info::Request).await
}
/// `/status`: get Tendermint status including node info, pubkey, latest
/// block hash, app hash, block height and time.
async fn status(&self) -> Result<status::Response, Error> {
self.perform(status::Request).await
}
/// `/broadcast_evidence`: broadcast an evidence.
async fn broadcast_evidence(&self, e: Evidence) -> Result<evidence::Response, Error> {
self.perform(evidence::Request::new(e)).await
}
/// `/tx`: find transaction by hash.
async fn tx(&self, hash: Hash, prove: bool) -> Result<tx::Response, Error> {
self.perform(tx::Request::new(hash, prove)).await
}
/// `/tx_search`: search for transactions with their results.
async fn tx_search(
&self,
query: Query,
prove: bool,
page: u32,
per_page: u8,
order: Order,
) -> Result<tx_search::Response, Error> {
self.perform(tx_search::Request::new(query, prove, page, per_page, order))
.await
}
#[cfg(any(feature = "http-client", feature = "websocket-client"))]
/// Poll the `/health` endpoint until it returns a successful result or
/// the given `timeout` has elapsed.
async fn wait_until_healthy<T>(&self, timeout: T) -> Result<(), Error>
where
T: Into<core::time::Duration> + Send,
{
let timeout = timeout.into();
let poll_interval = core::time::Duration::from_millis(200);
let mut attempts_remaining = timeout.as_millis() / poll_interval.as_millis();
while self.health().await.is_err() {
if attempts_remaining == 0 {
return Err(Error::timeout(timeout));
}
attempts_remaining -= 1;
tokio::time::sleep(poll_interval).await;
}
Ok(())
}
/// Perform a request against the RPC endpoint.
///
/// This method is used by the default implementations of specific
/// endpoint methods. The latest protocol dialect is assumed to be invoked.
async fn perform<R>(&self, request: R) -> Result<R::Output, Error>
where
R: SimpleRequest;
}