Skip to content

Commit

Permalink
feat(service): add service::HttpService that extends service::Service
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkarw committed Aug 16, 2022
1 parent 6f0adfc commit 22bdbb4
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 2 deletions.
52 changes: 52 additions & 0 deletions src/service/http.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
use std::error::Error as StdError;

use crate::body::HttpBody;
use crate::common::Future;
use crate::service::service::Service;
use crate::{Request, Response};

/// An asynchronous function from `Request` to `Response`.
pub trait HttpService<ReqBody>: sealed::Sealed<ReqBody> {
/// The `HttpBody` body of the `http::Response`.
type ResBody: HttpBody;

/// The error type that can occur within this `Service`.
///
/// Note: Returning an `Error` to a hyper server will cause the connection
/// to be abruptly aborted. In most cases, it is better to return a `Response`
/// with a 4xx or 5xx status code.
type Error: Into<Box<dyn StdError + Send + Sync>>;

/// The `Future` returned by this `Service`.
type Future: Future<Output = Result<Response<Self::ResBody>, Self::Error>>;

#[doc(hidden)]
fn call(&mut self, req: Request<ReqBody>) -> Self::Future;
}

impl<T, B1, B2> HttpService<B1> for T
where
T: Service<Request<B1>, Response = Response<B2>>,
B2: HttpBody,
T::Error: Into<Box<dyn StdError + Send + Sync>>,
{
type ResBody = B2;

type Error = T::Error;
type Future = T::Future;

fn call(&mut self, req: Request<B1>) -> Self::Future {
Service::call(self, req)
}
}

impl<T, B1, B2> sealed::Sealed<B1> for T
where
T: Service<Request<B1>, Response = Response<B2>>,
B2: HttpBody,
{
}

mod sealed {
pub trait Sealed<T> {}
}
5 changes: 3 additions & 2 deletions src/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@
//! if you need to implement `Service` for a type manually, you can follow the example
//! in `service_struct_impl.rs`.

mod tower_http;
mod http;
#[cfg(all(any(feature = "http1", feature = "http2"), feature = "client"))]
mod oneshot;
mod service;
mod tower_http;
mod util;

pub(super) use self::tower_http::TowerHttpService;
#[cfg(all(any(feature = "http1", feature = "http2"), feature = "client"))]
pub(super) use self::oneshot::{oneshot, Oneshot};
pub(super) use self::tower_http::TowerHttpService;

pub use self::util::service_fn;

0 comments on commit 22bdbb4

Please sign in to comment.