use futures::future::BoxFuture;
use futures::io::AsyncRead;
use std::error::Error;
use std::fmt::{self, Debug};
use std::io;
use std::pin::Pin;
use std::task::{Context, Poll};
#[cfg(all(feature = "hyper-client", not(target_arch = "wasm32")))]
pub(crate) mod hyper;
#[cfg(all(feature = "curl-client", not(target_arch = "wasm32")))]
pub(crate) mod isahc;
#[cfg(all(feature = "wasm-client", target_arch = "wasm32"))]
pub(crate) mod wasm;
#[cfg(feature = "native-client")]
pub(crate) mod native;
pub type Request = http::Request<Body>;
pub type Response = http::Response<Body>;
pub trait HttpClient: Debug + Unpin + Send + Sync + Clone + 'static {
type Error: Error + Send + Sync;
fn send(&self, req: Request) -> BoxFuture<'static, Result<Response, Self::Error>>;
}
pub struct Body {
reader: Box<dyn AsyncRead + Unpin + Send + 'static>,
}
impl Body {
pub fn empty() -> Self {
Self {
reader: Box::new(futures::io::empty()),
}
}
pub fn from_reader(reader: impl AsyncRead + Unpin + Send + 'static) -> Self {
Self {
reader: Box::new(reader),
}
}
}
impl AsyncRead for Body {
#[allow(missing_doc_code_examples)]
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<io::Result<usize>> {
Pin::new(&mut self.reader).poll_read(cx, buf)
}
}
impl fmt::Debug for Body {
#[allow(missing_doc_code_examples)]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Body").field("reader", &"<hidden>").finish()
}
}
impl From<Vec<u8>> for Body {
#[allow(missing_doc_code_examples)]
#[inline]
fn from(vec: Vec<u8>) -> Body {
Self {
reader: Box::new(io::Cursor::new(vec)),
}
}
}
impl<R: AsyncRead + Unpin + Send + 'static> From<Box<R>> for Body {
#[allow(missing_doc_code_examples)]
fn from(reader: Box<R>) -> Self {
Self { reader }
}
}