boluo-core 0.1.1

boluo的核心类型和特征
Documentation
//! 服务的特征和相关类型的定义。

mod and_then;
pub use and_then::AndThen;

mod boxed;
pub use boxed::{ArcService, BoxCloneService, BoxService};

mod ext;
pub use ext::ServiceExt;

mod map_err;
pub use map_err::MapErr;

mod map_request;
pub use map_request::MapRequest;

mod map_response;
pub use map_response::MapResponse;

mod map_result;
pub use map_result::MapResult;

mod or_else;
pub use or_else::OrElse;

mod service_fn;
pub use service_fn::{service_fn, ServiceFn};

mod then;
pub use then::Then;

use std::future::Future;
use std::sync::Arc;

/// 表示一个接收请求并返回响应的异步函数。
///
/// # 例子
///
/// ```
/// use std::convert::Infallible;
///
/// use boluo_core::request::Request;
/// use boluo_core::response::Response;
/// use boluo_core::service::Service;
///
/// // 回声服务,响应请求主体。
/// struct Echo;
///
/// impl Service<Request> for Echo {
///     type Response = Response;
///     type Error = Infallible;
///
///     async fn call(&self, req: Request) -> Result<Self::Response, Self::Error> {
///         Ok(Response::new(req.into_body()))
///     }
/// }
/// ```
pub trait Service<Req>: Send + Sync {
    /// 服务返回的响应。
    type Response;

    /// 服务产生的错误。
    type Error;

    /// 处理请求并异步返回响应。
    fn call(&self, req: Req) -> impl Future<Output = Result<Self::Response, Self::Error>> + Send;
}

impl<S, Req> Service<Req> for &mut S
where
    S: Service<Req> + ?Sized,
    Req: Send,
{
    type Response = S::Response;
    type Error = S::Error;

    async fn call(&self, req: Req) -> Result<Self::Response, Self::Error> {
        S::call(self, req).await
    }
}

impl<S, Req> Service<Req> for &S
where
    S: Service<Req> + ?Sized,
    Req: Send,
{
    type Response = S::Response;
    type Error = S::Error;

    async fn call(&self, req: Req) -> Result<Self::Response, Self::Error> {
        S::call(self, req).await
    }
}

impl<S, Req> Service<Req> for Box<S>
where
    S: Service<Req> + ?Sized,
    Req: Send,
{
    type Response = S::Response;
    type Error = S::Error;

    async fn call(&self, req: Req) -> Result<Self::Response, Self::Error> {
        S::call(self, req).await
    }
}

impl<S, Req> Service<Req> for Arc<S>
where
    S: Service<Req> + ?Sized,
    Req: Send,
{
    type Response = S::Response;
    type Error = S::Error;

    async fn call(&self, req: Req) -> Result<Self::Response, Self::Error> {
        S::call(self, req).await
    }
}