mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
452 lines
11 KiB
Rust
452 lines
11 KiB
Rust
use std::{fmt, future::Future, marker::PhantomData};
|
|
|
|
use crate::{IntoService, IntoServiceFactory, Service, ServiceCtx, ServiceFactory};
|
|
|
|
#[inline]
|
|
/// Create `ServiceFactory` for function that can act as a `Service`
|
|
pub fn fn_service<F, Fut, Req, Res, Err, Cfg>(
|
|
f: F,
|
|
) -> FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
|
where
|
|
F: Fn(Req) -> Fut + Clone,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
FnServiceFactory::new(f)
|
|
}
|
|
|
|
#[inline]
|
|
/// Create `ServiceFactory` for function that can produce services
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```rust
|
|
/// use std::io;
|
|
/// use ntex_service::{fn_factory, fn_service, Service, ServiceFactory};
|
|
///
|
|
/// /// Service that divides two usize values.
|
|
/// async fn div((x, y): (usize, usize)) -> Result<usize, io::Error> {
|
|
/// if y == 0 {
|
|
/// Err(io::Error::new(io::ErrorKind::Other, "divide by zdro"))
|
|
/// } else {
|
|
/// Ok(x / y)
|
|
/// }
|
|
/// }
|
|
///
|
|
/// #[ntex::main]
|
|
/// async fn main() -> io::Result<()> {
|
|
/// // Create service factory that produces `div` services
|
|
/// let factory = fn_factory(|| {
|
|
/// async {Ok::<_, io::Error>(fn_service(div))}
|
|
/// });
|
|
///
|
|
/// // construct new service
|
|
/// let srv = factory.pipeline(&()).await?;
|
|
///
|
|
/// // now we can use `div` service
|
|
/// let result = srv.call((10, 20)).await?;
|
|
///
|
|
/// println!("10 / 20 = {}", result);
|
|
///
|
|
/// Ok(())
|
|
/// }
|
|
/// ```
|
|
pub fn fn_factory<F, Srv, Fut, Req, Err>(f: F) -> FnServiceNoConfig<F, Srv, Fut, Req, Err>
|
|
where
|
|
F: Fn() -> Fut,
|
|
Srv: Service<Req>,
|
|
Fut: Future<Output = Result<Srv, Err>>,
|
|
{
|
|
FnServiceNoConfig::new(f)
|
|
}
|
|
|
|
#[inline]
|
|
/// Create `ServiceFactory` for function that accepts config argument and can produce services
|
|
///
|
|
/// Any function that has following form `Fn(Config) -> Future<Output = Service>` could
|
|
/// act as a `ServiceFactory`.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```rust
|
|
/// use std::io;
|
|
/// use ntex_service::{fn_factory_with_config, fn_service, Service, ServiceFactory};
|
|
///
|
|
/// #[ntex::main]
|
|
/// async fn main() -> io::Result<()> {
|
|
/// // Create service factory. factory uses config argument for
|
|
/// // services it generates.
|
|
/// let factory = fn_factory_with_config(|y: &usize| {
|
|
/// let y = *y;
|
|
/// async move { Ok::<_, io::Error>(fn_service(move |x: usize| async move { Ok::<_, io::Error>(x * y) })) }
|
|
/// });
|
|
///
|
|
/// // construct new service with config argument
|
|
/// let srv = factory.pipeline(&10).await?;
|
|
///
|
|
/// let result = srv.call(10).await?;
|
|
/// assert_eq!(result, 100);
|
|
///
|
|
/// println!("10 * 10 = {}", result);
|
|
/// Ok(())
|
|
/// }
|
|
/// ```
|
|
pub fn fn_factory_with_config<F, Fut, Cfg, Srv, Req, Err>(
|
|
f: F,
|
|
) -> FnServiceConfig<F, Fut, Cfg, Srv, Req, Err>
|
|
where
|
|
F: Fn(Cfg) -> Fut,
|
|
Fut: Future<Output = Result<Srv, Err>>,
|
|
Srv: Service<Req>,
|
|
{
|
|
FnServiceConfig { f, _t: PhantomData }
|
|
}
|
|
|
|
pub struct FnService<F, Req> {
|
|
f: F,
|
|
_t: PhantomData<Req>,
|
|
}
|
|
|
|
impl<F, Req> Clone for FnService<F, Req>
|
|
where
|
|
F: Clone,
|
|
{
|
|
fn clone(&self) -> Self {
|
|
Self {
|
|
f: self.f.clone(),
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<F, Req> fmt::Debug for FnService<F, Req> {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("FnService")
|
|
.field("f", &std::any::type_name::<F>())
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err> Service<Req> for FnService<F, Req>
|
|
where
|
|
F: Fn(Req) -> Fut,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
type Response = Res;
|
|
type Error = Err;
|
|
|
|
#[inline]
|
|
async fn call(&self, req: Req, _: ServiceCtx<'_, Self>) -> Result<Res, Err> {
|
|
(self.f)(req).await
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err> IntoService<FnService<F, Req>, Req> for F
|
|
where
|
|
F: Fn(Req) -> Fut,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
#[inline]
|
|
fn into_service(self) -> FnService<F, Req> {
|
|
FnService {
|
|
f: self,
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
|
where
|
|
F: Fn(Req) -> Fut,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
f: F,
|
|
_t: PhantomData<(Req, Cfg)>,
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err, Cfg> FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
|
where
|
|
F: Fn(Req) -> Fut + Clone,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
fn new(f: F) -> Self {
|
|
FnServiceFactory { f, _t: PhantomData }
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err, Cfg> Clone for FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
|
where
|
|
F: Fn(Req) -> Fut + Clone,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
#[inline]
|
|
fn clone(&self) -> Self {
|
|
Self {
|
|
f: self.f.clone(),
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err, Cfg> fmt::Debug for FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
|
where
|
|
F: Fn(Req) -> Fut,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("FnServiceFactory")
|
|
.field("f", &std::any::type_name::<F>())
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err> Service<Req> for FnServiceFactory<F, Fut, Req, Res, Err, ()>
|
|
where
|
|
F: Fn(Req) -> Fut,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
type Response = Res;
|
|
type Error = Err;
|
|
|
|
#[inline]
|
|
async fn call(&self, req: Req, _: ServiceCtx<'_, Self>) -> Result<Res, Err> {
|
|
(self.f)(req).await
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err, Cfg> ServiceFactory<Req, Cfg>
|
|
for FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
|
where
|
|
F: Fn(Req) -> Fut + Clone,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
type Response = Res;
|
|
type Error = Err;
|
|
|
|
type Service = FnService<F, Req>;
|
|
type InitError = ();
|
|
|
|
#[inline]
|
|
async fn create(&self, _: Cfg) -> Result<Self::Service, Self::InitError> {
|
|
Ok(FnService {
|
|
f: self.f.clone(),
|
|
_t: PhantomData,
|
|
})
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Req, Res, Err, Cfg>
|
|
IntoServiceFactory<FnServiceFactory<F, Fut, Req, Res, Err, Cfg>, Req, Cfg> for F
|
|
where
|
|
F: Fn(Req) -> Fut + Clone,
|
|
Fut: Future<Output = Result<Res, Err>>,
|
|
{
|
|
#[inline]
|
|
fn into_factory(self) -> FnServiceFactory<F, Fut, Req, Res, Err, Cfg> {
|
|
FnServiceFactory::new(self)
|
|
}
|
|
}
|
|
|
|
/// Convert `Fn(Config) -> Future<Service>` fn to NewService
|
|
pub struct FnServiceConfig<F, Fut, Cfg, Srv, Req, Err>
|
|
where
|
|
F: Fn(Cfg) -> Fut,
|
|
Fut: Future<Output = Result<Srv, Err>>,
|
|
Srv: Service<Req>,
|
|
{
|
|
f: F,
|
|
_t: PhantomData<(Fut, Cfg, Srv, Req, Err)>,
|
|
}
|
|
|
|
impl<F, Fut, Cfg, Srv, Req, Err> Clone for FnServiceConfig<F, Fut, Cfg, Srv, Req, Err>
|
|
where
|
|
F: Fn(Cfg) -> Fut + Clone,
|
|
Fut: Future<Output = Result<Srv, Err>>,
|
|
Srv: Service<Req>,
|
|
{
|
|
#[inline]
|
|
fn clone(&self) -> Self {
|
|
FnServiceConfig {
|
|
f: self.f.clone(),
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Cfg, Srv, Req, Err> fmt::Debug for FnServiceConfig<F, Fut, Cfg, Srv, Req, Err>
|
|
where
|
|
F: Fn(Cfg) -> Fut,
|
|
Fut: Future<Output = Result<Srv, Err>>,
|
|
Srv: Service<Req>,
|
|
{
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("FnServiceConfig")
|
|
.field("f", &std::any::type_name::<F>())
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl<F, Fut, Cfg, Srv, Req, Err> ServiceFactory<Req, Cfg>
|
|
for FnServiceConfig<F, Fut, Cfg, Srv, Req, Err>
|
|
where
|
|
F: Fn(Cfg) -> Fut,
|
|
Fut: Future<Output = Result<Srv, Err>>,
|
|
Srv: Service<Req>,
|
|
{
|
|
type Response = Srv::Response;
|
|
type Error = Srv::Error;
|
|
|
|
type Service = Srv;
|
|
type InitError = Err;
|
|
|
|
#[inline]
|
|
async fn create(&self, cfg: Cfg) -> Result<Self::Service, Self::InitError> {
|
|
(self.f)(cfg).await
|
|
}
|
|
}
|
|
|
|
/// Converter for `Fn() -> Future<Service>` fn
|
|
pub struct FnServiceNoConfig<F, S, R, Req, E>
|
|
where
|
|
F: Fn() -> R,
|
|
S: Service<Req>,
|
|
R: Future<Output = Result<S, E>>,
|
|
{
|
|
f: F,
|
|
_t: PhantomData<Req>,
|
|
}
|
|
|
|
impl<F, S, R, Req, E> FnServiceNoConfig<F, S, R, Req, E>
|
|
where
|
|
F: Fn() -> R,
|
|
R: Future<Output = Result<S, E>>,
|
|
S: Service<Req>,
|
|
{
|
|
fn new(f: F) -> Self {
|
|
Self { f, _t: PhantomData }
|
|
}
|
|
}
|
|
|
|
impl<F, S, R, Req, E, C> ServiceFactory<Req, C> for FnServiceNoConfig<F, S, R, Req, E>
|
|
where
|
|
F: Fn() -> R,
|
|
R: Future<Output = Result<S, E>>,
|
|
S: Service<Req>,
|
|
C: 'static,
|
|
{
|
|
type Response = S::Response;
|
|
type Error = S::Error;
|
|
type Service = S;
|
|
type InitError = E;
|
|
|
|
#[inline]
|
|
async fn create(&self, _: C) -> Result<S, E> {
|
|
(self.f)().await
|
|
}
|
|
}
|
|
|
|
impl<F, S, R, Req, E> Clone for FnServiceNoConfig<F, S, R, Req, E>
|
|
where
|
|
F: Fn() -> R + Clone,
|
|
R: Future<Output = Result<S, E>>,
|
|
S: Service<Req>,
|
|
{
|
|
#[inline]
|
|
fn clone(&self) -> Self {
|
|
Self::new(self.f.clone())
|
|
}
|
|
}
|
|
|
|
impl<F, S, R, Req, E> fmt::Debug for FnServiceNoConfig<F, S, R, Req, E>
|
|
where
|
|
F: Fn() -> R,
|
|
R: Future<Output = Result<S, E>>,
|
|
S: Service<Req>,
|
|
{
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
f.debug_struct("FnServiceNoConfig")
|
|
.field("f", &std::any::type_name::<F>())
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
impl<F, S, R, Req, E, C> IntoServiceFactory<FnServiceNoConfig<F, S, R, Req, E>, Req, C>
|
|
for F
|
|
where
|
|
F: Fn() -> R,
|
|
R: Future<Output = Result<S, E>>,
|
|
S: Service<Req>,
|
|
C: 'static,
|
|
{
|
|
#[inline]
|
|
fn into_factory(self) -> FnServiceNoConfig<F, S, R, Req, E> {
|
|
FnServiceNoConfig::new(self)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use ntex_util::future::lazy;
|
|
use std::task::Poll;
|
|
|
|
use super::*;
|
|
use crate::Pipeline;
|
|
|
|
#[ntex::test]
|
|
async fn test_fn_service() {
|
|
let new_srv = fn_service(|()| async { Ok::<_, ()>("srv") }).clone();
|
|
format!("{:?}", new_srv);
|
|
|
|
let srv = Pipeline::new(new_srv.create(()).await.unwrap()).bind();
|
|
let res = srv.call(()).await;
|
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
|
assert!(res.is_ok());
|
|
assert_eq!(res.unwrap(), "srv");
|
|
format!("{:?}", srv);
|
|
|
|
let srv2 = Pipeline::new(new_srv.clone()).bind();
|
|
let res = srv2.call(()).await;
|
|
assert!(res.is_ok());
|
|
assert_eq!(res.unwrap(), "srv");
|
|
format!("{:?}", srv2);
|
|
|
|
assert_eq!(lazy(|cx| srv2.poll_shutdown(cx)).await, Poll::Ready(()));
|
|
}
|
|
|
|
#[ntex::test]
|
|
async fn test_fn_service_service() {
|
|
let srv = Pipeline::new(
|
|
fn_service(|()| async { Ok::<_, ()>("srv") })
|
|
.clone()
|
|
.create(&())
|
|
.await
|
|
.unwrap()
|
|
.clone(),
|
|
)
|
|
.bind();
|
|
|
|
let res = srv.call(()).await;
|
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
|
assert!(res.is_ok());
|
|
assert_eq!(res.unwrap(), "srv");
|
|
assert_eq!(lazy(|cx| srv.poll_shutdown(cx)).await, Poll::Ready(()));
|
|
}
|
|
|
|
#[ntex::test]
|
|
async fn test_fn_service_with_config() {
|
|
let new_srv = fn_factory_with_config(|cfg: &usize| {
|
|
let cfg = *cfg;
|
|
async move {
|
|
Ok::<_, ()>(fn_service(
|
|
move |()| async move { Ok::<_, ()>(("srv", cfg)) },
|
|
))
|
|
}
|
|
})
|
|
.clone();
|
|
|
|
let srv = Pipeline::new(new_srv.create(&1).await.unwrap()).bind();
|
|
let res = srv.call(()).await;
|
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
|
assert!(res.is_ok());
|
|
assert_eq!(res.unwrap(), ("srv", 1));
|
|
}
|
|
}
|