use std::convert::TryFrom;
use std::convert::TryInto;
+use std::sync::Mutex;
/// A simple REST client for requesting resources using HTTP `GET`.
pub struct RestClient {
endpoint: HttpEndpoint,
+ client: Mutex<Option<HttpClient>>,
}
impl RestClient {
///
/// The endpoint should contain the REST path component (e.g., http://127.0.0.1:8332/rest).
pub fn new(endpoint: HttpEndpoint) -> std::io::Result<Self> {
- Ok(Self { endpoint })
+ Ok(Self { endpoint, client: Mutex::new(None) })
}
/// Requests a resource encoded in `F` format and interpreted as type `T`.
where F: TryFrom<Vec<u8>, Error = std::io::Error> + TryInto<T, Error = std::io::Error> {
let host = format!("{}:{}", self.endpoint.host(), self.endpoint.port());
let uri = format!("{}/{}", self.endpoint.path().trim_end_matches("/"), resource_path);
- let mut client = HttpClient::connect(&self.endpoint)?;
- client.get::<F>(&uri, &host).await?.try_into()
+ let mut client = if let Some(client) = self.client.lock().unwrap().take() { client }
+ else { HttpClient::connect(&self.endpoint)? };
+ let res = client.get::<F>(&uri, &host).await?.try_into();
+ *self.client.lock().unwrap() = Some(client);
+ res
}
}
use bitcoin::hash_types::BlockHash;
use bitcoin::hashes::hex::ToHex;
+use std::sync::Mutex;
+
use serde_json;
use std::convert::TryFrom;
pub struct RpcClient {
basic_auth: String,
endpoint: HttpEndpoint,
+ client: Mutex<Option<HttpClient>>,
id: AtomicUsize,
}
Ok(Self {
basic_auth: "Basic ".to_string() + credentials,
endpoint,
+ client: Mutex::new(None),
id: AtomicUsize::new(0),
})
}
"id": &self.id.fetch_add(1, Ordering::AcqRel).to_string()
});
- let mut client = HttpClient::connect(&self.endpoint)?;
- let mut response = match client.post::<JsonResponse>(&uri, &host, &self.basic_auth, content).await {
+ let mut client = if let Some(client) = self.client.lock().unwrap().take() { client }
+ else { HttpClient::connect(&self.endpoint)? };
+ let http_response = client.post::<JsonResponse>(&uri, &host, &self.basic_auth, content).await;
+ *self.client.lock().unwrap() = Some(client);
+
+ let mut response = match http_response {
Ok(JsonResponse(response)) => response,
Err(e) if e.kind() == std::io::ErrorKind::Other => {
match e.get_ref().unwrap().downcast_ref::<HttpError>() {