Skip to content

Commit a9767d8

Browse files
authored
chore(hubble): raceclient - provide winning client in result (#3156)
2 parents 18c86b4 + 3ca6735 commit a9767d8

File tree

6 files changed

+188
-410
lines changed

6 files changed

+188
-410
lines changed

hubble/src/indexer/aptos/provider.rs

+40-97
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ use aptos_rest_client::{
77
};
88
use url::Url;
99

10-
use crate::{indexer::api::BlockHeight, race_client::RaceClient};
10+
use crate::{
11+
indexer::api::BlockHeight,
12+
race_client::{RaceClient, RaceClientId, RaceClientResponse},
13+
};
1114

1215
#[derive(Clone, Debug)]
1316
pub struct Provider {
@@ -16,7 +19,13 @@ pub struct Provider {
1619

1720
#[derive(Clone, Debug, Copy)]
1821
pub struct RpcProviderId {
19-
index: usize,
22+
race_client_id: RaceClientId,
23+
}
24+
25+
impl From<RpcProviderId> for RaceClientId {
26+
fn from(value: RpcProviderId) -> Self {
27+
value.race_client_id
28+
}
2029
}
2130

2231
#[derive(Debug)]
@@ -26,16 +35,20 @@ pub struct RpcResult<T> {
2635
}
2736

2837
impl<T> RpcResult<T> {
29-
fn new(provider_index: usize, result: T) -> Self {
38+
fn new(race_client_id: RaceClientId, result: T) -> Self {
3039
Self {
31-
provider_id: RpcProviderId {
32-
index: provider_index,
33-
},
40+
provider_id: RpcProviderId { race_client_id },
3441
response: result,
3542
}
3643
}
3744
}
3845

46+
impl<T> From<RaceClientResponse<T>> for RpcResult<T> {
47+
fn from(value: RaceClientResponse<T>) -> Self {
48+
RpcResult::new(value.race_client_id, value.response)
49+
}
50+
}
51+
3952
impl Provider {
4053
pub fn new(rpc_urls: Vec<Url>) -> Self {
4154
Self {
@@ -48,55 +61,28 @@ impl Provider {
4861
}
4962
}
5063

51-
fn rpc_client(&self, provider_id: Option<RpcProviderId>) -> RaceClient<Client> {
52-
Self::select_client(self.rpc_client.clone(), provider_id.map(|id| id.index))
53-
}
54-
55-
fn select_client<T: Clone>(
56-
client: RaceClient<T>,
57-
provider_index: Option<usize>,
58-
) -> RaceClient<T> {
59-
match provider_index {
60-
Some(provider_index) => RaceClient::new(vec![client.clients[provider_index].clone()]),
61-
None => client,
62-
}
63-
}
64-
6564
// RPC
6665
pub async fn get_index(
6766
&self,
6867
provider_id: Option<RpcProviderId>,
6968
) -> Result<RpcResult<Response<IndexResponse>>, RestError> {
70-
let result = self.rpc_client(provider_id).get_index().await?;
71-
72-
// TODO: improve race client to return index with result
73-
Ok(RpcResult::new(
74-
provider_id.map_or_else(
75-
|| self.rpc_client.fastest_index(),
76-
|provider_id| provider_id.index,
77-
),
78-
result,
79-
))
69+
self.rpc_client
70+
.race(provider_id.map(Into::into), |c| c.get_index())
71+
.await
72+
.map(Into::into)
8073
}
8174

8275
pub async fn get_block_by_height(
8376
&self,
8477
height: BlockHeight,
8578
provider_id: Option<RpcProviderId>,
8679
) -> Result<RpcResult<Response<Block>>, RestError> {
87-
let result = self
88-
.rpc_client(provider_id)
89-
.get_block_by_height(height)
90-
.await?;
91-
92-
// TODO: improve race client to return index with result
93-
Ok(RpcResult::new(
94-
provider_id.map_or_else(
95-
|| self.rpc_client.fastest_index(),
96-
|provider_id| provider_id.index,
97-
),
98-
result,
99-
))
80+
self.rpc_client
81+
.race(provider_id.map(Into::into), |c| {
82+
c.get_block_by_height(height, false)
83+
})
84+
.await
85+
.map(Into::into)
10086
}
10187

10288
pub async fn get_transactions(
@@ -105,67 +91,24 @@ impl Provider {
10591
limit: u16,
10692
provider_id: Option<RpcProviderId>,
10793
) -> Result<RpcResult<Response<Vec<Transaction>>>, RestError> {
108-
let result = self
109-
.rpc_client(provider_id)
110-
.get_transactions(start, limit)
111-
.await?;
112-
113-
// TODO: improve race client to return index with result
114-
Ok(RpcResult::new(
115-
provider_id.map_or_else(
116-
|| self.rpc_client.fastest_index(),
117-
|provider_id| provider_id.index,
118-
),
119-
result,
120-
))
94+
self.rpc_client
95+
.race(provider_id.map(Into::into), |c| {
96+
c.get_transactions(Some(start), Some(limit))
97+
})
98+
.await
99+
.map(Into::into)
121100
}
122101

123102
pub async fn get_transaction_by_version(
124103
&self,
125104
version: u64,
126105
provider_id: Option<RpcProviderId>,
127106
) -> Result<RpcResult<Response<Transaction>>, RestError> {
128-
let result = self
129-
.rpc_client(provider_id)
130-
.get_transaction_by_version(version)
131-
.await?;
132-
133-
// TODO: improve race client to return index with result
134-
Ok(RpcResult::new(
135-
provider_id.map_or_else(
136-
|| self.rpc_client.fastest_index(),
137-
|provider_id| provider_id.index,
138-
),
139-
result,
140-
))
141-
}
142-
}
143-
144-
impl RaceClient<Client> {
145-
pub async fn get_index(&self) -> Result<Response<IndexResponse>, RestError> {
146-
self.race(|c| c.get_index()).await
147-
}
148-
149-
pub async fn get_block_by_height(
150-
&self,
151-
height: BlockHeight,
152-
) -> Result<Response<Block>, RestError> {
153-
self.race(|c| c.get_block_by_height(height, false)).await
154-
}
155-
156-
pub async fn get_transactions(
157-
&self,
158-
start: BlockHeight,
159-
limit: u16,
160-
) -> Result<Response<Vec<Transaction>>, RestError> {
161-
self.race(|c| c.get_transactions(Some(start), Some(limit)))
107+
self.rpc_client
108+
.race(provider_id.map(Into::into), |c| {
109+
c.get_transaction_by_version(version)
110+
})
162111
.await
163-
}
164-
165-
pub async fn get_transaction_by_version(
166-
&self,
167-
version: u64,
168-
) -> Result<Response<Transaction>, RestError> {
169-
self.race(|c| c.get_transaction_by_version(version)).await
112+
.map(Into::into)
170113
}
171114
}

hubble/src/indexer/eth/create_client_tracker.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ pub fn schedule_create_client_checker(
5252
let tx = provider
5353
.get_transaction_by_hash(FixedBytes::from_str(&transaction_hash).expect("valid transaction hash"), None)
5454
.await?
55-
.response
56-
.expect("transaction");
55+
.expect("transaction")
56+
.response;
5757

5858
let msg = match <IbcHandler::CreateClientCall as alloy::sol_types::SolCall>::abi_decode(&tx.input,true) {
5959
Ok(msg) => msg,

hubble/src/indexer/eth/fetcher_client.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -109,23 +109,24 @@ impl EthFetcherClient {
109109
.await;
110110

111111
match block {
112-
Ok(rpc_result) => match rpc_result.response {
113-
Some(block) => {
112+
Ok(rpc_result) => match rpc_result {
113+
Some(result) => {
114+
let block = result.response;
114115
debug!(
115116
"{}: fetched (provider index: {:?})",
116-
selection, rpc_result.provider_id
117+
selection, result.provider_id
117118
);
118119

119120
Ok(EthBlockHandle {
120121
reference: block.block_reference()?,
121122
details: match mode {
122123
FetchMode::Lazy => BlockDetails::Lazy(block),
123124
FetchMode::Eager => BlockDetails::Eager(
124-
self.fetch_details(&block, rpc_result.provider_id).await?,
125+
self.fetch_details(&block, result.provider_id).await?,
125126
),
126127
},
127128
eth_client: self.clone(),
128-
provider_id: rpc_result.provider_id,
129+
provider_id: result.provider_id,
129130
})
130131
}
131132
None => {

0 commit comments

Comments
 (0)