1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-31 22:00:07 +01:00
actix-net/actix-service/src/map_init_err.rs

92 lines
1.7 KiB
Rust
Raw Normal View History

2018-11-29 16:56:15 -10:00
use std::marker::PhantomData;
2018-08-25 09:02:14 -07:00
use futures::{Future, Poll};
2018-09-11 09:30:22 -07:00
use super::NewService;
2018-08-25 09:02:14 -07:00
/// `MapInitErr` service combinator
pub struct MapInitErr<A, F, E> {
a: A,
f: F,
2018-11-29 16:56:15 -10:00
e: PhantomData<E>,
2018-08-25 09:02:14 -07:00
}
2018-11-29 16:56:15 -10:00
impl<A, F, E> MapInitErr<A, F, E> {
2018-08-25 09:02:14 -07:00
/// Create new `MapInitErr` combinator
pub fn new(a: A, f: F) -> Self
2018-11-29 16:56:15 -10:00
where
A: NewService,
2018-11-29 16:56:15 -10:00
F: Fn(A::InitError) -> E,
{
2018-08-25 09:02:14 -07:00
Self {
a,
f,
2018-11-29 16:56:15 -10:00
e: PhantomData,
2018-08-25 09:02:14 -07:00
}
}
}
impl<A, F, E> Clone for MapInitErr<A, F, E>
where
2018-11-29 16:56:15 -10:00
A: Clone,
F: Clone,
2018-08-25 09:02:14 -07:00
{
fn clone(&self) -> Self {
Self {
a: self.a.clone(),
f: self.f.clone(),
2018-11-29 16:56:15 -10:00
e: PhantomData,
2018-08-25 09:02:14 -07:00
}
}
}
impl<A, F, E> NewService for MapInitErr<A, F, E>
2018-08-25 09:02:14 -07:00
where
A: NewService,
2018-08-25 09:02:14 -07:00
F: Fn(A::InitError) -> E + Clone,
{
type Request = A::Request;
2018-08-25 09:02:14 -07:00
type Response = A::Response;
type Error = A::Error;
type Service = A::Service;
type InitError = E;
type Future = MapInitErrFuture<A, F, E>;
2018-08-25 09:02:14 -07:00
fn new_service(&self) -> Self::Future {
MapInitErrFuture::new(self.a.new_service(), self.f.clone())
}
}
pub struct MapInitErrFuture<A, F, E>
2018-08-25 09:02:14 -07:00
where
A: NewService,
2018-08-25 09:02:14 -07:00
F: Fn(A::InitError) -> E,
{
f: F,
fut: A::Future,
}
impl<A, F, E> MapInitErrFuture<A, F, E>
2018-08-25 09:02:14 -07:00
where
A: NewService,
2018-08-25 09:02:14 -07:00
F: Fn(A::InitError) -> E,
{
fn new(fut: A::Future, f: F) -> Self {
MapInitErrFuture { f, fut }
}
}
impl<A, F, E> Future for MapInitErrFuture<A, F, E>
2018-08-25 09:02:14 -07:00
where
A: NewService,
2018-08-25 09:02:14 -07:00
F: Fn(A::InitError) -> E,
{
type Item = A::Service;
type Error = E;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
self.fut.poll().map_err(&self.f)
}
}