1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-28 04:12:40 +01:00
actix-net/src/server/services.rs

262 lines
6.3 KiB
Rust
Raw Normal View History

use std::net;
2018-09-27 05:40:45 +02:00
use std::time::Duration;
2018-08-19 19:47:04 +02:00
2018-12-09 19:15:49 +01:00
use actix_service::{NewService, Service};
2018-09-27 05:40:45 +02:00
use futures::future::{err, ok, FutureResult};
2018-09-08 18:36:38 +02:00
use futures::{Future, Poll};
2018-12-06 23:04:42 +01:00
use log::error;
2018-09-27 05:40:45 +02:00
use tokio_current_thread::spawn;
2018-08-19 19:47:04 +02:00
use tokio_reactor::Handle;
use tokio_tcp::TcpStream;
2018-08-22 02:08:23 +02:00
use super::Token;
2018-12-06 23:04:42 +01:00
use crate::counter::CounterGuard;
2018-08-19 19:47:04 +02:00
2018-09-27 05:40:45 +02:00
/// Server message
2018-09-07 22:06:51 +02:00
pub enum ServerMessage {
2018-09-28 02:05:48 +02:00
/// New stream
2018-09-07 22:06:51 +02:00
Connect(net::TcpStream),
2018-09-28 02:05:48 +02:00
/// Gracefull shutdown
2018-09-27 05:40:45 +02:00
Shutdown(Duration),
2018-09-28 02:05:48 +02:00
/// Force shutdown
2018-09-07 22:06:51 +02:00
ForceShutdown,
}
2018-09-27 05:40:45 +02:00
pub trait StreamServiceFactory: Send + Clone + 'static {
2018-11-30 03:56:15 +01:00
type NewService: NewService<TcpStream, Response = ()>;
2018-09-27 05:40:45 +02:00
fn create(&self) -> Self::NewService;
}
pub trait ServiceFactory: Send + Clone + 'static {
2018-11-30 03:56:15 +01:00
type NewService: NewService<ServerMessage, Response = ()>;
2018-09-27 05:40:45 +02:00
fn create(&self) -> Self::NewService;
}
pub(crate) trait InternalServiceFactory: Send {
fn name(&self, token: Token) -> &str;
2018-09-27 05:40:45 +02:00
fn clone_factory(&self) -> Box<InternalServiceFactory>;
fn create(&self) -> Box<Future<Item = Vec<(Token, BoxedServerService)>, Error = ()>>;
2018-09-27 05:40:45 +02:00
}
2018-08-19 19:47:04 +02:00
pub(crate) type BoxedServerService = Box<
Service<
2018-11-30 03:56:15 +01:00
(Option<CounterGuard>, ServerMessage),
2018-08-19 19:47:04 +02:00
Response = (),
Error = (),
2018-09-27 05:40:45 +02:00
Future = FutureResult<(), ()>,
2018-08-19 19:47:04 +02:00
>,
>;
2018-09-27 05:40:45 +02:00
pub(crate) struct StreamService<T> {
2018-09-07 20:35:25 +02:00
service: T,
}
2018-09-27 05:40:45 +02:00
impl<T> StreamService<T> {
pub(crate) fn new(service: T) -> Self {
2018-09-27 05:40:45 +02:00
StreamService { service }
2018-09-07 20:35:25 +02:00
}
2018-08-19 19:47:04 +02:00
}
2018-11-30 03:56:15 +01:00
impl<T> Service<(Option<CounterGuard>, ServerMessage)> for StreamService<T>
2018-08-19 19:47:04 +02:00
where
2018-11-30 03:56:15 +01:00
T: Service<TcpStream, Response = ()>,
2018-08-19 19:47:04 +02:00
T::Future: 'static,
T::Error: 'static,
2018-08-19 19:47:04 +02:00
{
type Response = ();
type Error = ();
2018-09-27 05:40:45 +02:00
type Future = FutureResult<(), ()>;
2018-08-19 19:47:04 +02:00
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
2018-09-08 18:36:38 +02:00
self.service.poll_ready().map_err(|_| ())
2018-08-19 19:47:04 +02:00
}
2018-09-27 05:40:45 +02:00
fn call(&mut self, (guard, req): (Option<CounterGuard>, ServerMessage)) -> Self::Future {
2018-09-07 22:06:51 +02:00
match req {
ServerMessage::Connect(stream) => {
let stream = TcpStream::from_std(stream, &Handle::default()).map_err(|e| {
error!("Can not convert to an async tcp stream: {}", e);
});
if let Ok(stream) = stream {
2018-09-28 21:22:49 +02:00
spawn(self.service.call(stream).map_err(|_| ()).map(move |val| {
2018-09-27 05:40:45 +02:00
drop(guard);
val
}));
ok(())
2018-09-07 22:06:51 +02:00
} else {
2018-09-27 05:40:45 +02:00
err(())
2018-09-07 22:06:51 +02:00
}
}
2018-09-27 05:40:45 +02:00
_ => ok(()),
2018-08-19 19:47:04 +02:00
}
}
}
2018-09-27 05:40:45 +02:00
pub(crate) struct ServerService<T> {
service: T,
}
impl<T> ServerService<T> {
fn new(service: T) -> Self {
ServerService { service }
}
}
2018-11-30 03:56:15 +01:00
impl<T> Service<(Option<CounterGuard>, ServerMessage)> for ServerService<T>
2018-09-27 05:40:45 +02:00
where
2018-11-30 03:56:15 +01:00
T: Service<ServerMessage, Response = ()>,
2018-09-27 05:40:45 +02:00
T::Future: 'static,
T::Error: 'static,
{
type Response = ();
type Error = ();
type Future = FutureResult<(), ()>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
self.service.poll_ready().map_err(|_| ())
}
fn call(&mut self, (guard, req): (Option<CounterGuard>, ServerMessage)) -> Self::Future {
2018-09-28 21:22:49 +02:00
spawn(self.service.call(req).map_err(|_| ()).map(move |val| {
2018-09-27 05:40:45 +02:00
drop(guard);
val
}));
ok(())
}
}
pub(crate) struct ServiceNewService<F: ServiceFactory> {
2018-09-18 05:19:48 +02:00
name: String,
inner: F,
token: Token,
2018-08-19 19:47:04 +02:00
}
2018-09-27 05:40:45 +02:00
impl<F> ServiceNewService<F>
2018-08-19 19:47:04 +02:00
where
2018-09-27 05:40:45 +02:00
F: ServiceFactory,
2018-08-19 19:47:04 +02:00
{
pub(crate) fn create(name: String, token: Token, inner: F) -> Box<InternalServiceFactory> {
Box::new(Self { name, inner, token })
2018-08-19 19:47:04 +02:00
}
}
2018-09-27 05:40:45 +02:00
impl<F> InternalServiceFactory for ServiceNewService<F>
where
F: ServiceFactory,
{
fn name(&self, _: Token) -> &str {
2018-09-27 05:40:45 +02:00
&self.name
}
2018-09-18 05:19:48 +02:00
2018-09-27 05:40:45 +02:00
fn clone_factory(&self) -> Box<InternalServiceFactory> {
Box::new(Self {
name: self.name.clone(),
inner: self.inner.clone(),
token: self.token,
2018-09-27 05:40:45 +02:00
})
}
2018-08-19 19:47:04 +02:00
fn create(&self) -> Box<Future<Item = Vec<(Token, BoxedServerService)>, Error = ()>> {
let token = self.token;
2018-09-28 21:22:49 +02:00
Box::new(
self.inner
.create()
.new_service()
.map_err(|_| ())
.map(move |inner| {
let service: BoxedServerService = Box::new(ServerService::new(inner));
vec![(token, service)]
2018-09-28 21:22:49 +02:00
}),
)
2018-09-27 05:40:45 +02:00
}
}
pub(crate) struct StreamNewService<F: StreamServiceFactory> {
name: String,
inner: F,
token: Token,
2018-09-27 05:40:45 +02:00
}
impl<F> StreamNewService<F>
where
F: StreamServiceFactory,
{
pub(crate) fn create(name: String, token: Token, inner: F) -> Box<InternalServiceFactory> {
Box::new(Self { name, token, inner })
2018-09-27 05:40:45 +02:00
}
2018-08-19 19:47:04 +02:00
}
2018-09-27 05:40:45 +02:00
impl<F> InternalServiceFactory for StreamNewService<F>
2018-08-19 19:47:04 +02:00
where
2018-09-27 05:40:45 +02:00
F: StreamServiceFactory,
2018-08-19 19:47:04 +02:00
{
fn name(&self, _: Token) -> &str {
2018-09-18 05:19:48 +02:00
&self.name
}
2018-09-27 05:40:45 +02:00
fn clone_factory(&self) -> Box<InternalServiceFactory> {
2018-08-19 19:47:04 +02:00
Box::new(Self {
2018-09-18 05:19:48 +02:00
name: self.name.clone(),
2018-08-19 19:47:04 +02:00
inner: self.inner.clone(),
token: self.token,
2018-08-19 19:47:04 +02:00
})
}
fn create(&self) -> Box<Future<Item = Vec<(Token, BoxedServerService)>, Error = ()>> {
let token = self.token;
2018-09-28 21:22:49 +02:00
Box::new(
self.inner
.create()
.new_service()
.map_err(|_| ())
.map(move |inner| {
let service: BoxedServerService = Box::new(StreamService::new(inner));
vec![(token, service)]
2018-09-28 21:22:49 +02:00
}),
)
2018-08-19 19:47:04 +02:00
}
}
2018-09-27 05:40:45 +02:00
impl InternalServiceFactory for Box<InternalServiceFactory> {
fn name(&self, token: Token) -> &str {
self.as_ref().name(token)
2018-09-18 05:19:48 +02:00
}
2018-09-27 05:40:45 +02:00
fn clone_factory(&self) -> Box<InternalServiceFactory> {
2018-08-19 19:47:04 +02:00
self.as_ref().clone_factory()
}
fn create(&self) -> Box<Future<Item = Vec<(Token, BoxedServerService)>, Error = ()>> {
2018-08-19 19:47:04 +02:00
self.as_ref().create()
}
}
2018-09-08 23:50:16 +02:00
2018-09-28 02:05:48 +02:00
impl<F, T> ServiceFactory for F
where
F: Fn() -> T + Send + Clone + 'static,
2018-11-30 03:56:15 +01:00
T: NewService<ServerMessage, Response = ()>,
2018-09-28 02:05:48 +02:00
{
type NewService = T;
fn create(&self) -> T {
(self)()
}
}
2018-09-27 05:40:45 +02:00
impl<F, T> StreamServiceFactory for F
2018-09-08 23:50:16 +02:00
where
F: Fn() -> T + Send + Clone + 'static,
2018-11-30 03:56:15 +01:00
T: NewService<TcpStream, Response = ()>,
2018-09-08 23:50:16 +02:00
{
type NewService = T;
fn create(&self) -> T {
(self)()
}
}