1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-27 19:12:56 +01:00

add CloneableService

This commit is contained in:
Nikolay Kim 2018-09-17 21:46:02 -07:00
parent ed23caa314
commit 601c8a4ee6
2 changed files with 43 additions and 0 deletions

42
src/cloneable.rs Normal file
View File

@ -0,0 +1,42 @@
use std::cell::RefCell;
use std::rc::Rc;
use futures::Poll;
use super::service::Service;
/// Service that allows to turn non-clone service to a service with `Clone` impl
pub struct CloneableService<S: Service + 'static> {
service: Rc<RefCell<S>>,
}
impl<S: Service + 'static> CloneableService<S> {
pub fn new(service: S) -> Self {
Self {
service: Rc::new(RefCell::new(service)),
}
}
}
impl<S: Service + 'static> Clone for CloneableService<S> {
fn clone(&self) -> Self {
Self {
service: self.service.clone(),
}
}
}
impl<S: Service + 'static> Service for CloneableService<S> {
type Request = S::Request;
type Response = S::Response;
type Error = S::Error;
type Future = S::Future;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
self.service.borrow_mut().poll_ready()
}
fn call(&mut self, req: Self::Request) -> Self::Future {
self.service.borrow_mut().call(req)
}
}

View File

@ -55,6 +55,7 @@ extern crate webpki;
#[cfg(feature = "rust-tls")] #[cfg(feature = "rust-tls")]
extern crate webpki_roots; extern crate webpki_roots;
pub mod cloneable;
pub mod connector; pub mod connector;
pub mod counter; pub mod counter;
pub mod framed; pub mod framed;