3
3
//! See: <https://github.com/Blockstream/esplora/blob/master/API.md>
4
4
5
5
use core:: str;
6
- use std:: { collections :: HashMap , str:: FromStr } ;
6
+ use std:: { future :: Future , str:: FromStr } ;
7
7
8
+ use async_trait:: async_trait;
8
9
use bitcoin:: consensus:: Decodable ;
9
10
pub use bitcoin:: consensus:: { deserialize, serialize} ;
10
11
use bitcoin:: hashes:: sha256:: Hash ;
@@ -46,25 +47,25 @@ impl Request {
46
47
pub struct Response {
47
48
pub status_code : i32 ,
48
49
pub body : Vec < u8 > ,
49
- pub reason : String ,
50
- pub headers : HashMap < String , String > ,
51
- pub url : Url ,
50
+ // pub reason: String,
51
+ // pub headers: HashMap<String, String>,
52
+ // pub url: Url,
52
53
}
53
54
54
55
impl Response {
55
56
pub fn new (
56
57
status_code : i32 ,
57
58
body : Vec < u8 > ,
58
- reason_phrase : String ,
59
- headers : HashMap < String , String > ,
60
- url : Url ,
59
+ // reason_phrase: String,
60
+ // headers: HashMap<String, String>,
61
+ // url: Url,
61
62
) -> Self {
62
63
Self {
63
64
status_code,
64
65
body,
65
- reason : reason_phrase,
66
- headers,
67
- url,
66
+ // reason: reason_phrase,
67
+ // headers,
68
+ // url,
68
69
}
69
70
}
70
71
@@ -375,6 +376,7 @@ pub enum Error<E> {
375
376
Client ( E ) ,
376
377
}
377
378
379
+ #[ async_trait]
378
380
pub trait Client {
379
381
fn request ( & self , base_url : & str ) -> Request ;
380
382
@@ -383,9 +385,21 @@ pub trait Client {
383
385
F : FnMut ( Request ) -> Result < Response , E > ,
384
386
{
385
387
let request = self . request ( base_url) ;
386
- let response = handler ( request) . map_err ( Error :: Client ) ?;
388
+ handler ( request) . map_err ( Error :: Client )
389
+ }
387
390
388
- Ok ( response)
391
+ async fn send_async < ' a , F , Fut , E > (
392
+ & ' a self ,
393
+ base_url : & ' a str ,
394
+ handler : & ' a mut F ,
395
+ ) -> Result < Response , Error < E > >
396
+ where
397
+ F : FnMut ( Request ) -> Fut + Send ,
398
+ Fut : Future < Output = Result < Response , E > > + Send + Sync ,
399
+ Self : Sync ,
400
+ {
401
+ let request = self . request ( base_url) ;
402
+ handler ( request) . await . map_err ( Error :: Client )
389
403
}
390
404
391
405
fn deserialize_decodable < T : Decodable > ( & self , response : & Response ) -> Result < T , crate :: Error > ;
0 commit comments