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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
#![allow(clippy::field_reassign_with_default)]
use std::{collections::BTreeMap, str};
use futures::{future::BoxFuture, FutureExt};
use http::Response;
use hyper::Body;
use once_cell::sync::Lazy;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use tracing::info;
use warp_json_rpc::Builder;
use casper_types::{EraId, ExecutionResult, ProtocolVersion, PublicKey};
use super::{
docs::{DocExample, DOCS_EXAMPLE_PROTOCOL_VERSION},
Error, ErrorCode, ReactorEventT, RpcRequest, RpcWithParams, RpcWithParamsExt, RpcWithoutParams,
RpcWithoutParamsExt,
};
use crate::{
components::consensus::ValidatorChange,
crypto::AsymmetricKeyExt,
effect::EffectBuilder,
reactor::QueueKind,
types::{Block, BlockHash, Deploy, DeployHash, GetStatusResult, Item, PeersMap},
};
static GET_DEPLOY_PARAMS: Lazy<GetDeployParams> = Lazy::new(|| GetDeployParams {
deploy_hash: *Deploy::doc_example().id(),
finalized_approvals: true,
});
static GET_DEPLOY_RESULT: Lazy<GetDeployResult> = Lazy::new(|| GetDeployResult {
api_version: DOCS_EXAMPLE_PROTOCOL_VERSION,
deploy: Deploy::doc_example().clone(),
execution_results: vec![JsonExecutionResult {
block_hash: Block::doc_example().id(),
result: ExecutionResult::example().clone(),
}],
});
static GET_PEERS_RESULT: Lazy<GetPeersResult> = Lazy::new(|| GetPeersResult {
api_version: DOCS_EXAMPLE_PROTOCOL_VERSION,
peers: GetStatusResult::doc_example().peers.clone(),
});
static GET_VALIDATOR_CHANGES_RESULT: Lazy<GetValidatorChangesResult> = Lazy::new(|| {
let change = JsonValidatorStatusChange::new(EraId::new(1), ValidatorChange::Added);
let public_key = PublicKey::doc_example().clone();
let changes = vec![JsonValidatorChanges::new(public_key, vec![change])];
GetValidatorChangesResult {
api_version: DOCS_EXAMPLE_PROTOCOL_VERSION,
changes,
}
});
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct GetDeployParams {
pub deploy_hash: DeployHash,
#[serde(default = "finalized_approvals_default")]
pub finalized_approvals: bool,
}
fn finalized_approvals_default() -> bool {
false
}
impl DocExample for GetDeployParams {
fn doc_example() -> &'static Self {
&*GET_DEPLOY_PARAMS
}
}
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct JsonExecutionResult {
pub block_hash: BlockHash,
pub result: ExecutionResult,
}
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct GetDeployResult {
#[schemars(with = "String")]
pub api_version: ProtocolVersion,
pub deploy: Deploy,
pub execution_results: Vec<JsonExecutionResult>,
}
impl DocExample for GetDeployResult {
fn doc_example() -> &'static Self {
&*GET_DEPLOY_RESULT
}
}
pub struct GetDeploy {}
impl RpcWithParams for GetDeploy {
const METHOD: &'static str = "info_get_deploy";
type RequestParams = GetDeployParams;
type ResponseResult = GetDeployResult;
}
impl RpcWithParamsExt for GetDeploy {
fn handle_request<REv: ReactorEventT>(
effect_builder: EffectBuilder<REv>,
response_builder: Builder,
params: Self::RequestParams,
api_version: ProtocolVersion,
) -> BoxFuture<'static, Result<Response<Body>, Error>> {
async move {
let maybe_deploy_and_metadata = effect_builder
.make_request(
|responder| RpcRequest::GetDeploy {
hash: params.deploy_hash,
finalized_approvals: params.finalized_approvals,
responder,
},
QueueKind::Api,
)
.await;
let (deploy, metadata) = match maybe_deploy_and_metadata {
Some((deploy, metadata)) => (deploy, metadata),
None => {
info!(
"failed to get {} and metadata from storage",
params.deploy_hash
);
return Ok(response_builder.error(warp_json_rpc::Error::custom(
ErrorCode::NoSuchDeploy as i64,
"deploy not known",
))?);
}
};
let execution_results = metadata
.execution_results
.into_iter()
.map(|(block_hash, result)| JsonExecutionResult { block_hash, result })
.collect();
let result = Self::ResponseResult {
api_version,
deploy,
execution_results,
};
Ok(response_builder.success(result)?)
}
.boxed()
}
}
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct GetPeersResult {
#[schemars(with = "String")]
pub api_version: ProtocolVersion,
pub peers: PeersMap,
}
impl DocExample for GetPeersResult {
fn doc_example() -> &'static Self {
&*GET_PEERS_RESULT
}
}
pub struct GetPeers {}
impl RpcWithoutParams for GetPeers {
const METHOD: &'static str = "info_get_peers";
type ResponseResult = GetPeersResult;
}
impl RpcWithoutParamsExt for GetPeers {
fn handle_request<REv: ReactorEventT>(
effect_builder: EffectBuilder<REv>,
response_builder: Builder,
api_version: ProtocolVersion,
) -> BoxFuture<'static, Result<Response<Body>, Error>> {
async move {
let peers = effect_builder
.make_request(
|responder| RpcRequest::GetPeers { responder },
QueueKind::Api,
)
.await;
let result = Self::ResponseResult {
api_version,
peers: PeersMap::from(peers),
};
Ok(response_builder.success(result)?)
}
.boxed()
}
}
pub struct GetStatus {}
impl RpcWithoutParams for GetStatus {
const METHOD: &'static str = "info_get_status";
type ResponseResult = GetStatusResult;
}
impl RpcWithoutParamsExt for GetStatus {
fn handle_request<REv: ReactorEventT>(
effect_builder: EffectBuilder<REv>,
response_builder: Builder,
api_version: ProtocolVersion,
) -> BoxFuture<'static, Result<Response<Body>, Error>> {
async move {
let status_feed = effect_builder
.make_request(
|responder| RpcRequest::GetStatus { responder },
QueueKind::Api,
)
.await;
let body = Self::ResponseResult::new(status_feed, api_version);
Ok(response_builder.success(body)?)
}
.boxed()
}
}
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct JsonValidatorStatusChange {
era_id: EraId,
validator_change: ValidatorChange,
}
impl JsonValidatorStatusChange {
pub(crate) fn new(era_id: EraId, validator_change: ValidatorChange) -> Self {
JsonValidatorStatusChange {
era_id,
validator_change,
}
}
}
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct JsonValidatorChanges {
public_key: PublicKey,
status_changes: Vec<JsonValidatorStatusChange>,
}
impl JsonValidatorChanges {
pub(crate) fn new(
public_key: PublicKey,
status_changes: Vec<JsonValidatorStatusChange>,
) -> Self {
JsonValidatorChanges {
public_key,
status_changes,
}
}
}
#[derive(Serialize, Deserialize, Debug, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct GetValidatorChangesResult {
#[schemars(with = "String")]
pub api_version: ProtocolVersion,
pub changes: Vec<JsonValidatorChanges>,
}
impl GetValidatorChangesResult {
pub(crate) fn new(
api_version: ProtocolVersion,
changes: BTreeMap<PublicKey, Vec<(EraId, ValidatorChange)>>,
) -> Self {
let changes = changes
.into_iter()
.map(|(public_key, mut validator_changes)| {
validator_changes.sort();
let status_changes = validator_changes
.into_iter()
.map(|(era_id, validator_change)| {
JsonValidatorStatusChange::new(era_id, validator_change)
})
.collect();
JsonValidatorChanges::new(public_key, status_changes)
})
.collect();
GetValidatorChangesResult {
api_version,
changes,
}
}
}
impl DocExample for GetValidatorChangesResult {
fn doc_example() -> &'static Self {
&*GET_VALIDATOR_CHANGES_RESULT
}
}
pub struct GetValidatorChanges {}
impl RpcWithoutParams for GetValidatorChanges {
const METHOD: &'static str = "info_get_validator_changes";
type ResponseResult = GetValidatorChangesResult;
}
impl RpcWithoutParamsExt for GetValidatorChanges {
fn handle_request<REv: ReactorEventT>(
effect_builder: EffectBuilder<REv>,
response_builder: Builder,
api_version: ProtocolVersion,
) -> BoxFuture<'static, Result<Response<Body>, Error>> {
async move {
let changes = effect_builder.get_consensus_validator_changes().await;
let result = Self::ResponseResult::new(api_version, changes);
Ok(response_builder.success(result)?)
}
.boxed()
}
}