66
66
67
67
#![ allow( clippy:: result_large_err) ]
68
68
69
+ use std:: collections:: HashMap ;
69
70
use std:: fmt;
70
71
use std:: num:: TryFromIntError ;
71
72
use std:: time:: Duration ;
72
- use std:: { collections:: HashMap , marker:: PhantomData } ;
73
73
74
- pub mod api;
74
+ #[ cfg( feature = "async" ) ]
75
+ use r#async:: Sleeper ;
75
76
77
+ pub mod api;
76
78
#[ cfg( feature = "async" ) ]
77
79
pub mod r#async;
78
80
#[ cfg( feature = "blocking" ) ]
@@ -111,7 +113,7 @@ pub fn convert_fee_rate(target: usize, estimates: HashMap<u16, f64>) -> Option<f
111
113
}
112
114
113
115
#[ derive( Debug , Clone ) ]
114
- pub struct Builder < S = DefaultSleeper > {
116
+ pub struct Builder {
115
117
/// The URL of the Esplora server.
116
118
pub base_url : String ,
117
119
/// Optional URL of the proxy to use to make requests to the Esplora server
@@ -133,13 +135,8 @@ pub struct Builder<S = DefaultSleeper> {
133
135
pub headers : HashMap < String , String > ,
134
136
/// Max retries
135
137
pub max_retries : usize ,
136
- /// Async runtime, trait must implement `sleep` function, default is `tokio`
137
- marker : PhantomData < S > ,
138
138
}
139
139
140
- #[ derive( Debug , Clone , Copy ) ]
141
- pub struct DefaultSleeper ;
142
-
143
140
impl Builder {
144
141
/// Instantiate a new builder
145
142
pub fn new ( base_url : & str ) -> Self {
@@ -149,38 +146,9 @@ impl Builder {
149
146
timeout : None ,
150
147
headers : HashMap :: new ( ) ,
151
148
max_retries : DEFAULT_MAX_RETRIES ,
152
- marker : PhantomData ,
153
- }
154
- }
155
-
156
- /// Build a blocking client from builder
157
- #[ cfg( feature = "blocking" ) ]
158
- pub fn build_blocking ( self ) -> BlockingClient {
159
- BlockingClient :: from_builder ( self )
160
- }
161
- }
162
-
163
- #[ cfg( feature = "async" ) ]
164
- impl < S : r#async:: Sleeper > Builder < S > {
165
- /// Instantiate a new builder, with a custom runtime
166
- pub fn new_custom_runtime ( base_url : & str ) -> Self {
167
- Builder {
168
- base_url : base_url. to_string ( ) ,
169
- proxy : None ,
170
- timeout : None ,
171
- headers : HashMap :: new ( ) ,
172
- max_retries : DEFAULT_MAX_RETRIES ,
173
- marker : PhantomData ,
174
149
}
175
150
}
176
151
177
- // Build an asynchronous client from builder
178
- pub fn build_async ( self ) -> Result < AsyncClient < S > , Error > {
179
- AsyncClient :: from_builder ( self )
180
- }
181
- }
182
-
183
- impl < S > Builder < S > {
184
152
/// Set the proxy of the builder
185
153
pub fn proxy ( mut self , proxy : & str ) -> Self {
186
154
self . proxy = Some ( proxy. to_string ( ) ) ;
@@ -205,6 +173,25 @@ impl<S> Builder<S> {
205
173
self . max_retries = count;
206
174
self
207
175
}
176
+
177
+ /// Build a blocking client from builder
178
+ #[ cfg( feature = "blocking" ) ]
179
+ pub fn build_blocking ( self ) -> BlockingClient {
180
+ BlockingClient :: from_builder ( self )
181
+ }
182
+
183
+ /// Build an asynchronous client from builder
184
+ #[ cfg( feature = "tokio" ) ]
185
+ pub fn build_async ( self ) -> Result < AsyncClient , Error > {
186
+ AsyncClient :: from_builder ( self )
187
+ }
188
+
189
+ /// Build an asynchronous client from builder where the returned client uses a
190
+ /// user-defined [`Sleeper`].
191
+ #[ cfg( feature = "async" ) ]
192
+ pub fn build_async_with_sleeper < S : Sleeper > ( self ) -> Result < AsyncClient < S > , Error > {
193
+ AsyncClient :: from_builder ( self )
194
+ }
208
195
}
209
196
210
197
/// Errors that can happen during a request to `Esplora` servers.
@@ -284,6 +271,7 @@ mod test {
284
271
bitcoind:: bitcoincore_rpc:: json:: AddressType , bitcoind:: bitcoincore_rpc:: RpcApi ,
285
272
electrum_client:: ElectrumApi ,
286
273
} ,
274
+ r#async:: DefaultSleeper ,
287
275
std:: time:: Duration ,
288
276
tokio:: sync:: OnceCell ,
289
277
} ;
@@ -342,7 +330,9 @@ mod test {
342
330
let blocking_client = builder. build_blocking ( ) ;
343
331
344
332
let builder_async = Builder :: new ( & format ! ( "http://{}" , esplora_url) ) ;
345
- let async_client = builder_async. build_async ( ) . unwrap ( ) ;
333
+ let async_client = builder_async
334
+ . build_async_with_sleeper :: < DefaultSleeper > ( )
335
+ . unwrap ( ) ;
346
336
347
337
( blocking_client, async_client)
348
338
}
@@ -1015,35 +1005,10 @@ mod test {
1015
1005
assert_eq ! ( tx, tx_async) ;
1016
1006
}
1017
1007
1018
- #[ cfg( all ( feature = "async" , feature = " tokio") ) ]
1008
+ #[ cfg( feature = "tokio" ) ]
1019
1009
#[ test]
1020
1010
fn use_builder_with_tokio_as_normal ( ) {
1021
1011
let builder = Builder :: new ( "https://blockstream.info/testnet/api" ) ;
1022
- let client = builder. build_async ( ) ;
1023
- assert ! ( client. is_ok( ) ) ;
1024
- }
1025
-
1026
- #[ cfg( all( feature = "async" , not( feature = "tokio" ) ) ) ]
1027
- mod custom_async_runtime {
1028
- use super :: * ;
1029
- use crate :: r#async:: Sleeper ;
1030
-
1031
- struct TestRuntime ;
1032
-
1033
- #[ async_trait:: async_trait]
1034
- impl Sleeper for TestRuntime {
1035
- async fn sleep ( duration : Duration ) {
1036
- tokio:: time:: sleep ( duration) . await ;
1037
- }
1038
- }
1039
-
1040
- #[ test]
1041
- fn use_with_custom_runtime ( ) {
1042
- let builder =
1043
- Builder :: < TestRuntime > :: new_custom_runtime ( "https://blockstream.info/testnet/api" ) ;
1044
-
1045
- let client = builder. build_async ( ) ;
1046
- assert ! ( client. is_ok( ) ) ;
1047
- }
1012
+ let _client = builder. build_async ( ) . unwrap ( ) ;
1048
1013
}
1049
1014
}
0 commit comments