forked from availproject/avail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics.rs
126 lines (109 loc) · 3.24 KB
/
metrics.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
use crate::{Cells, HashOf, Kate, KateApiServer, ProofResponse, Rows};
use avail_core::{traits::ExtendedHeader, AppId, OpaqueExtrinsic};
use da_runtime::apis::DataAvailApi;
use crate::RTKateApi;
use da_control::kate::GDataProof;
use da_control::kate::GRow;
use frame_system::limits::BlockLength;
use jsonrpsee::{
core::{async_trait, RpcResult},
proc_macros::rpc,
};
use sc_client_api::BlockBackend;
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_runtime::traits::Block as BlockT;
#[rpc(client, server)]
pub trait KateApiMetrics<Block>
where
Block: BlockT,
{
#[method(name = "kate_queryRowsMetrics")]
async fn query_rows_metrics(
&self,
rows: Rows,
at: Option<HashOf<Block>>,
) -> RpcResult<(Vec<GRow>, u128)>;
#[method(name = "kate_queryAppDataMetrics")]
async fn query_app_data_metrics(
&self,
app_id: AppId,
at: Option<HashOf<Block>>,
) -> RpcResult<(Vec<Option<GRow>>, u128)>;
#[method(name = "kate_queryProofMetrics")]
async fn query_proof_metrics(
&self,
cells: Cells,
at: Option<HashOf<Block>>,
) -> RpcResult<(Vec<GDataProof>, u128)>;
#[method(name = "kate_blockLengthMetrics")]
async fn query_block_length_metrics(
&self,
at: Option<HashOf<Block>>,
) -> RpcResult<(BlockLength, u128)>;
#[method(name = "kate_queryDataProofMetrics")]
async fn query_data_proof_metrics(
&self,
transaction_index: u32,
at: Option<HashOf<Block>>,
) -> RpcResult<(ProofResponse, u128)>;
}
#[async_trait]
impl<Client, Block> KateApiMetricsServer<Block> for Kate<Client, Block>
where
Block: BlockT<Extrinsic = OpaqueExtrinsic>,
<Block as BlockT>::Header: ExtendedHeader,
Client: Send + Sync + 'static,
Client: HeaderBackend<Block> + ProvideRuntimeApi<Block> + BlockBackend<Block>,
Client::Api: DataAvailApi<Block> + RTKateApi<Block>,
{
async fn query_rows_metrics(
&self,
rows: Rows,
at: Option<HashOf<Block>>,
) -> RpcResult<(Vec<GRow>, u128)> {
let start = std::time::Instant::now();
let result = self.query_rows(rows, at).await;
let elapsed = start.elapsed();
result.map(|r| (r, elapsed.as_micros()))
}
async fn query_app_data_metrics(
&self,
app_id: AppId,
at: Option<HashOf<Block>>,
) -> RpcResult<(Vec<Option<GRow>>, u128)> {
let start = std::time::Instant::now();
let result = self.query_app_data(app_id, at).await;
let elapsed = start.elapsed();
result.map(|r| (r, elapsed.as_micros()))
}
async fn query_proof_metrics(
&self,
cells: Cells,
at: Option<HashOf<Block>>,
) -> RpcResult<(Vec<GDataProof>, u128)> {
let start = std::time::Instant::now();
let result = self.query_proof(cells, at).await;
let elapsed = start.elapsed();
result.map(|r| (r, elapsed.as_micros()))
}
async fn query_block_length_metrics(
&self,
at: Option<HashOf<Block>>,
) -> RpcResult<(BlockLength, u128)> {
let start = std::time::Instant::now();
let result = self.query_block_length(at).await;
let elapsed = start.elapsed();
result.map(|r| (r, elapsed.as_micros()))
}
async fn query_data_proof_metrics(
&self,
transaction_index: u32,
at: Option<HashOf<Block>>,
) -> RpcResult<(ProofResponse, u128)> {
let start = std::time::Instant::now();
let result = self.query_data_proof(transaction_index, at).await;
let elapsed = start.elapsed();
result.map(|r| (r, elapsed.as_micros()))
}
}