1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-05 09:39:37 +00:00
actix-web/src/cloneable.rs

52 lines
1.1 KiB
Rust
Raw Permalink Normal View History

2018-11-30 02:56:15 +00:00
use std::marker::PhantomData;
2018-11-30 19:55:30 +00:00
use std::rc::Rc;
2018-11-30 02:56:15 +00:00
2018-12-09 18:15:49 +00:00
use actix_service::Service;
2018-09-18 04:46:02 +00:00
use futures::Poll;
2018-10-03 05:18:07 +00:00
use super::cell::Cell;
2018-09-18 04:46:02 +00:00
/// Service that allows to turn non-clone service to a service with `Clone` impl
2018-11-30 19:55:30 +00:00
pub struct CloneableService<T: 'static> {
service: Cell<T>,
_t: PhantomData<Rc<()>>,
2018-09-18 04:46:02 +00:00
}
2018-11-30 19:55:30 +00:00
impl<T: 'static> CloneableService<T> {
pub fn new<Request>(service: T) -> Self
where
T: Service<Request>,
{
2018-09-18 04:46:02 +00:00
Self {
2018-10-03 05:18:07 +00:00
service: Cell::new(service),
2018-11-30 02:56:15 +00:00
_t: PhantomData,
2018-09-18 04:46:02 +00:00
}
}
}
2018-11-30 19:55:30 +00:00
impl<T: 'static> Clone for CloneableService<T> {
2018-09-18 04:46:02 +00:00
fn clone(&self) -> Self {
Self {
service: self.service.clone(),
2018-11-30 02:56:15 +00:00
_t: PhantomData,
2018-09-18 04:46:02 +00:00
}
}
}
2018-11-30 19:55:30 +00:00
impl<T: 'static, Request> Service<Request> for CloneableService<T>
where
T: Service<Request>,
{
type Response = T::Response;
type Error = T::Error;
type Future = T::Future;
2018-09-18 04:46:02 +00:00
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
self.service.borrow_mut().poll_ready()
}
2018-11-30 19:55:30 +00:00
fn call(&mut self, req: Request) -> Self::Future {
2018-09-18 04:46:02 +00:00
self.service.borrow_mut().call(req)
}
}