@@ -7,7 +7,10 @@ use aptos_rest_client::{
7
7
} ;
8
8
use url:: Url ;
9
9
10
- use crate :: { indexer:: api:: BlockHeight , race_client:: RaceClient } ;
10
+ use crate :: {
11
+ indexer:: api:: BlockHeight ,
12
+ race_client:: { RaceClient , RaceClientId , RaceClientResponse } ,
13
+ } ;
11
14
12
15
#[ derive( Clone , Debug ) ]
13
16
pub struct Provider {
@@ -16,7 +19,13 @@ pub struct Provider {
16
19
17
20
#[ derive( Clone , Debug , Copy ) ]
18
21
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
+ }
20
29
}
21
30
22
31
#[ derive( Debug ) ]
@@ -26,16 +35,20 @@ pub struct RpcResult<T> {
26
35
}
27
36
28
37
impl < T > RpcResult < T > {
29
- fn new ( provider_index : usize , result : T ) -> Self {
38
+ fn new ( race_client_id : RaceClientId , result : T ) -> Self {
30
39
Self {
31
- provider_id : RpcProviderId {
32
- index : provider_index,
33
- } ,
40
+ provider_id : RpcProviderId { race_client_id } ,
34
41
response : result,
35
42
}
36
43
}
37
44
}
38
45
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
+
39
52
impl Provider {
40
53
pub fn new ( rpc_urls : Vec < Url > ) -> Self {
41
54
Self {
@@ -48,55 +61,28 @@ impl Provider {
48
61
}
49
62
}
50
63
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
-
65
64
// RPC
66
65
pub async fn get_index (
67
66
& self ,
68
67
provider_id : Option < RpcProviderId > ,
69
68
) -> 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)
80
73
}
81
74
82
75
pub async fn get_block_by_height (
83
76
& self ,
84
77
height : BlockHeight ,
85
78
provider_id : Option < RpcProviderId > ,
86
79
) -> 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)
100
86
}
101
87
102
88
pub async fn get_transactions (
@@ -105,67 +91,24 @@ impl Provider {
105
91
limit : u16 ,
106
92
provider_id : Option < RpcProviderId > ,
107
93
) -> 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)
121
100
}
122
101
123
102
pub async fn get_transaction_by_version (
124
103
& self ,
125
104
version : u64 ,
126
105
provider_id : Option < RpcProviderId > ,
127
106
) -> 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
+ } )
162
111
. 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)
170
113
}
171
114
}
0 commit comments