2019-03-29 18:21:17 +01:00
|
|
|
use std::cell::RefCell;
|
2019-11-14 13:38:24 +01:00
|
|
|
use std::future::Future;
|
2019-02-19 20:31:54 +01:00
|
|
|
use std::rc::Rc;
|
|
|
|
use std::sync::Arc;
|
2019-11-14 13:38:24 +01:00
|
|
|
use std::task::{self, Context, Poll};
|
2019-01-25 04:19:44 +01:00
|
|
|
|
2018-08-25 18:02:14 +02:00
|
|
|
mod and_then;
|
2018-08-30 18:17:17 +02:00
|
|
|
mod apply;
|
2019-03-09 18:01:02 +01:00
|
|
|
mod apply_cfg;
|
2019-02-23 03:20:54 +01:00
|
|
|
pub mod boxed;
|
2018-12-09 18:56:23 +01:00
|
|
|
mod cell;
|
2018-08-25 18:02:14 +02:00
|
|
|
mod fn_service;
|
2019-11-14 13:38:24 +01:00
|
|
|
mod into;
|
2018-08-28 19:39:27 +02:00
|
|
|
mod map;
|
2019-05-12 15:03:50 +02:00
|
|
|
mod map_config;
|
2018-08-25 18:02:14 +02:00
|
|
|
mod map_err;
|
|
|
|
mod map_init_err;
|
2019-11-14 13:38:24 +01:00
|
|
|
mod pipeline;
|
2018-10-03 06:47:50 +02:00
|
|
|
mod then;
|
2019-02-03 19:42:27 +01:00
|
|
|
mod transform;
|
2019-03-12 20:53:08 +01:00
|
|
|
mod transform_err;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
pub use self::apply::{apply_fn, apply_fn_factory};
|
|
|
|
pub use self::apply_cfg::{apply_cfg, apply_cfg_factory};
|
|
|
|
pub use self::fn_service::{factory_fn, factory_fn_cfg, service_fn, service_fn2};
|
|
|
|
pub use self::into::{into_factory, into_service, ServiceFactoryMapper, ServiceMapper};
|
|
|
|
pub use self::map_config::{map_config, unit_config, MappedConfig};
|
|
|
|
pub use self::pipeline::{pipeline, pipeline_factory, Pipeline, PipelineFactory};
|
|
|
|
pub use self::transform::{apply, Transform};
|
2019-05-12 15:03:50 +02:00
|
|
|
|
2018-12-09 18:56:23 +01:00
|
|
|
/// An asynchronous function from `Request` to a `Response`.
|
2019-03-09 15:36:23 +01:00
|
|
|
pub trait Service {
|
|
|
|
/// Requests handled by the service.
|
|
|
|
type Request;
|
|
|
|
|
2018-12-09 18:56:23 +01:00
|
|
|
/// Responses given by the service.
|
|
|
|
type Response;
|
|
|
|
|
|
|
|
/// Errors produced by the service.
|
|
|
|
type Error;
|
|
|
|
|
|
|
|
/// The future response value.
|
2019-11-14 13:38:24 +01:00
|
|
|
type Future: Future<Output = Result<Self::Response, Self::Error>>;
|
2018-12-09 18:56:23 +01:00
|
|
|
|
|
|
|
/// Returns `Ready` when the service is able to process requests.
|
|
|
|
///
|
|
|
|
/// If the service is at capacity, then `NotReady` is returned and the task
|
|
|
|
/// is notified when the service becomes ready again. This function is
|
|
|
|
/// expected to be called while on a task.
|
|
|
|
///
|
|
|
|
/// This is a **best effort** implementation. False positives are permitted.
|
|
|
|
/// It is permitted for the service to return `Ready` from a `poll_ready`
|
|
|
|
/// call and the next invocation of `call` results in an error.
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut task::Context<'_>) -> Poll<Result<(), Self::Error>>;
|
2018-12-09 18:56:23 +01:00
|
|
|
|
|
|
|
/// Process the request and return the response asynchronously.
|
|
|
|
///
|
|
|
|
/// This function is expected to be callable off task. As such,
|
|
|
|
/// implementations should take care to not call `poll_ready`. If the
|
|
|
|
/// service is at capacity and the request is unable to be handled, the
|
|
|
|
/// returned `Future` should resolve to an error.
|
|
|
|
///
|
|
|
|
/// Calling `call` without calling `poll_ready` is permitted. The
|
|
|
|
/// implementation must be resilient to this fact.
|
2019-03-09 15:36:23 +01:00
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future;
|
2018-12-13 03:32:19 +01:00
|
|
|
}
|
2018-12-09 18:56:23 +01:00
|
|
|
|
2018-11-30 03:56:15 +01:00
|
|
|
/// Creates new `Service` values.
|
|
|
|
///
|
|
|
|
/// Acts as a service factory. This is useful for cases where new `Service`
|
2019-07-25 07:46:11 +02:00
|
|
|
/// values must be produced. One case is a TCP server listener. The listener
|
2018-11-30 03:56:15 +01:00
|
|
|
/// accepts new TCP streams, obtains a new `Service` value using the
|
2019-11-14 13:38:24 +01:00
|
|
|
/// `ServiceFactory` trait, and uses that new `Service` value to process inbound
|
2018-11-30 03:56:15 +01:00
|
|
|
/// requests on that new TCP stream.
|
2019-02-22 21:44:37 +01:00
|
|
|
///
|
2019-03-09 15:36:23 +01:00
|
|
|
/// `Config` is a service factory configuration type.
|
2019-11-14 13:38:24 +01:00
|
|
|
pub trait ServiceFactory {
|
2019-03-09 15:36:23 +01:00
|
|
|
/// Requests handled by the service.
|
|
|
|
type Request;
|
|
|
|
|
2018-11-30 03:56:15 +01:00
|
|
|
/// Responses given by the service
|
|
|
|
type Response;
|
|
|
|
|
|
|
|
/// Errors produced by the service
|
|
|
|
type Error;
|
|
|
|
|
2019-05-12 15:03:50 +02:00
|
|
|
/// Service factory configuration
|
|
|
|
type Config;
|
|
|
|
|
2018-11-30 03:56:15 +01:00
|
|
|
/// The `Service` value created by this factory
|
2019-03-09 15:36:23 +01:00
|
|
|
type Service: Service<
|
|
|
|
Request = Self::Request,
|
|
|
|
Response = Self::Response,
|
|
|
|
Error = Self::Error,
|
|
|
|
>;
|
2018-11-30 03:56:15 +01:00
|
|
|
|
|
|
|
/// Errors produced while building a service.
|
|
|
|
type InitError;
|
|
|
|
|
|
|
|
/// The future of the `Service` instance.
|
2019-11-14 13:38:24 +01:00
|
|
|
type Future: Future<Output = Result<Self::Service, Self::InitError>>;
|
2018-11-30 03:56:15 +01:00
|
|
|
|
|
|
|
/// Create and return a new service value asynchronously.
|
2019-05-12 15:03:50 +02:00
|
|
|
fn new_service(&self, cfg: &Self::Config) -> Self::Future;
|
2018-08-25 18:02:14 +02:00
|
|
|
}
|
|
|
|
|
2019-03-09 15:36:23 +01:00
|
|
|
impl<'a, S> Service for &'a mut S
|
2018-12-09 18:56:23 +01:00
|
|
|
where
|
2019-03-09 15:36:23 +01:00
|
|
|
S: Service + 'a,
|
2018-12-09 18:56:23 +01:00
|
|
|
{
|
2019-03-09 15:36:23 +01:00
|
|
|
type Request = S::Request;
|
2018-12-09 18:56:23 +01:00
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
|
|
(**self).poll_ready(ctx)
|
2018-12-09 18:56:23 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 15:36:23 +01:00
|
|
|
fn call(&mut self, request: Self::Request) -> S::Future {
|
2018-12-09 18:56:23 +01:00
|
|
|
(**self).call(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 15:36:23 +01:00
|
|
|
impl<S> Service for Box<S>
|
2018-12-09 19:14:08 +01:00
|
|
|
where
|
2019-03-09 15:36:23 +01:00
|
|
|
S: Service + ?Sized,
|
2018-12-09 19:14:08 +01:00
|
|
|
{
|
2019-03-09 15:36:23 +01:00
|
|
|
type Request = S::Request;
|
2018-12-09 19:14:08 +01:00
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), S::Error>> {
|
|
|
|
(**self).poll_ready(ctx)
|
2018-12-09 19:14:08 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 15:36:23 +01:00
|
|
|
fn call(&mut self, request: Self::Request) -> S::Future {
|
2018-12-09 19:14:08 +01:00
|
|
|
(**self).call(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-29 18:21:17 +01:00
|
|
|
impl<S> Service for Rc<RefCell<S>>
|
|
|
|
where
|
|
|
|
S: Service,
|
|
|
|
{
|
|
|
|
type Request = S::Request;
|
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
|
|
|
self.borrow_mut().poll_ready(ctx)
|
2019-03-29 18:21:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, request: Self::Request) -> S::Future {
|
2019-11-14 13:38:24 +01:00
|
|
|
(&mut (**self).borrow_mut()).call(request)
|
2019-03-29 18:21:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
impl<S> ServiceFactory for Rc<S>
|
2019-02-19 20:31:54 +01:00
|
|
|
where
|
2019-11-14 13:38:24 +01:00
|
|
|
S: ServiceFactory,
|
2019-02-19 20:31:54 +01:00
|
|
|
{
|
2019-03-09 15:36:23 +01:00
|
|
|
type Request = S::Request;
|
2019-02-19 20:31:54 +01:00
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
2019-05-12 15:03:50 +02:00
|
|
|
type Config = S::Config;
|
2019-02-19 20:31:54 +01:00
|
|
|
type Service = S::Service;
|
|
|
|
type InitError = S::InitError;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-05-12 15:03:50 +02:00
|
|
|
fn new_service(&self, cfg: &S::Config) -> S::Future {
|
2019-02-22 21:44:37 +01:00
|
|
|
self.as_ref().new_service(cfg)
|
2019-02-19 20:31:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
impl<S> ServiceFactory for Arc<S>
|
2019-02-19 20:31:54 +01:00
|
|
|
where
|
2019-11-14 13:38:24 +01:00
|
|
|
S: ServiceFactory,
|
2019-02-19 20:31:54 +01:00
|
|
|
{
|
2019-03-09 15:36:23 +01:00
|
|
|
type Request = S::Request;
|
2019-02-19 20:31:54 +01:00
|
|
|
type Response = S::Response;
|
|
|
|
type Error = S::Error;
|
2019-05-12 15:03:50 +02:00
|
|
|
type Config = S::Config;
|
2019-02-19 20:31:54 +01:00
|
|
|
type Service = S::Service;
|
|
|
|
type InitError = S::InitError;
|
|
|
|
type Future = S::Future;
|
|
|
|
|
2019-05-12 15:03:50 +02:00
|
|
|
fn new_service(&self, cfg: &S::Config) -> S::Future {
|
2019-02-22 21:44:37 +01:00
|
|
|
self.as_ref().new_service(cfg)
|
2019-02-19 20:31:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 18:57:47 +02:00
|
|
|
/// Trait for types that can be converted to a `Service`
|
2019-03-09 15:36:23 +01:00
|
|
|
pub trait IntoService<T>
|
2018-09-04 18:49:21 +02:00
|
|
|
where
|
2019-03-09 15:36:23 +01:00
|
|
|
T: Service,
|
2018-09-04 18:49:21 +02:00
|
|
|
{
|
2018-09-04 18:57:47 +02:00
|
|
|
/// Convert to a `Service`
|
2018-09-04 18:49:21 +02:00
|
|
|
fn into_service(self) -> T;
|
|
|
|
}
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
/// Trait for types that can be converted to a `ServiceFactory`
|
|
|
|
pub trait IntoServiceFactory<T>
|
2018-09-04 18:49:21 +02:00
|
|
|
where
|
2019-11-14 13:38:24 +01:00
|
|
|
T: ServiceFactory,
|
2018-09-04 18:49:21 +02:00
|
|
|
{
|
2019-11-14 13:38:24 +01:00
|
|
|
/// Convert `Self` an `ServiceFactory`
|
|
|
|
fn into_factory(self) -> T;
|
2018-09-04 18:49:21 +02:00
|
|
|
}
|
|
|
|
|
2019-03-09 15:36:23 +01:00
|
|
|
impl<T> IntoService<T> for T
|
2018-09-04 18:49:21 +02:00
|
|
|
where
|
2019-03-09 15:36:23 +01:00
|
|
|
T: Service,
|
2018-09-04 18:49:21 +02:00
|
|
|
{
|
|
|
|
fn into_service(self) -> T {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 13:38:24 +01:00
|
|
|
impl<T> IntoServiceFactory<T> for T
|
2019-02-22 23:30:00 +01:00
|
|
|
where
|
2019-11-14 13:38:24 +01:00
|
|
|
T: ServiceFactory,
|
2019-02-22 23:30:00 +01:00
|
|
|
{
|
2019-11-14 13:38:24 +01:00
|
|
|
fn into_factory(self) -> T {
|
2019-02-22 23:30:00 +01:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|