1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-27 23:42:56 +01:00
actix-net/actix-server/src/service.rs

158 lines
3.8 KiB
Rust
Raw Normal View History

2019-07-18 13:05:40 +02:00
use std::marker::PhantomData;
use std::net::SocketAddr;
Migrate actix-net to std::future (#64) * Migrate actix-codec, actix-rt, and actix-threadpool to std::future * update to latest tokio alpha and futures-rs * Migrate actix-service to std::future, This is a squash of ~8 commits, since it included a lot of experimentation. To see the commits, look into the semtexzv/std-future-service-tmp branch. * update futures-rs and tokio * Migrate actix-threadpool to std::future (#59) * Migrate actix-threadpool to std::future * Cosmetic refactor - turn log::error! into log::warn! as it doesn't throw any error - add Clone and Copy impls for Cancelled making it cheap to operate with - apply rustfmt * Bump up crate version to 0.2.0 and pre-fill its changelog * Disable patching 'actix-threadpool' crate in global workspace as unnecessary * Revert patching and fix 'actix-rt' * Migrate actix-rt to std::future (#47) * remove Pin from Service::poll_ready(); simplify combinators api; make code compile * disable tests * update travis config * refactor naming * drop IntoFuture trait * Migrate actix-server to std::future (#50) Still not finished, this is more WIP, this is an aggregation of several commits, which can be found in semtexzv/std-future-server-tmp branch * update actix-server * rename Factor to ServiceFactory * start server worker in start mehtod * update actix-utils * remove IntoTransform trait * Migrate actix-server::ssl::nativetls to std futures (#61) * Refactor 'nativetls' module * Migrate 'actix-server-config' to std futures - remove "uds" feature - disable features by default * Switch NativeTlsAcceptor to use 'tokio-tls' crate * Bikeshed features names and remove unnecessary dependencies for 'actix-server-config' crate * update openssl impl * migrate actix-connect to std::future * migrate actix-ioframe to std::future * update version to alpha.1 * fix boxed service * migrate server rustls support * migratte openssl and rustls connecttors * store the thread's handle with arbiter (#62) * update ssl connect tests * restore service tests * update readme
2019-11-14 13:38:24 +01:00
use std::task::{Context, Poll};
2018-08-19 19:47:04 +02:00
use actix_service::{Service, ServiceFactory as BaseServiceFactory};
use actix_utils::future::{ready, Ready};
use futures_core::future::LocalBoxFuture;
2018-12-06 23:04:42 +01:00
use log::error;
2018-08-22 02:08:23 +02:00
use crate::socket::{FromStream, MioStream};
use crate::worker::WorkerCounterGuard;
2018-08-19 19:47:04 +02:00
2019-07-18 13:05:40 +02:00
pub trait ServiceFactory<Stream: FromStream>: Send + Clone + 'static {
type Factory: BaseServiceFactory<Stream, Config = ()>;
2018-09-27 05:40:45 +02:00
2019-11-20 19:35:44 +01:00
fn create(&self) -> Self::Factory;
2018-09-27 05:40:45 +02:00
}
pub(crate) trait InternalServiceFactory: Send {
fn name(&self, token: usize) -> &str;
2018-09-27 05:40:45 +02:00
2019-07-18 13:05:40 +02:00
fn clone_factory(&self) -> Box<dyn InternalServiceFactory>;
2018-09-27 05:40:45 +02:00
fn create(&self) -> LocalBoxFuture<'static, Result<(usize, BoxedServerService), ()>>;
2018-09-27 05:40:45 +02:00
}
2018-08-19 19:47:04 +02:00
pub(crate) type BoxedServerService = Box<
2019-07-18 13:05:40 +02:00
dyn Service<
(WorkerCounterGuard, MioStream),
2018-08-19 19:47:04 +02:00
Response = (),
Error = (),
Migrate actix-net to std::future (#64) * Migrate actix-codec, actix-rt, and actix-threadpool to std::future * update to latest tokio alpha and futures-rs * Migrate actix-service to std::future, This is a squash of ~8 commits, since it included a lot of experimentation. To see the commits, look into the semtexzv/std-future-service-tmp branch. * update futures-rs and tokio * Migrate actix-threadpool to std::future (#59) * Migrate actix-threadpool to std::future * Cosmetic refactor - turn log::error! into log::warn! as it doesn't throw any error - add Clone and Copy impls for Cancelled making it cheap to operate with - apply rustfmt * Bump up crate version to 0.2.0 and pre-fill its changelog * Disable patching 'actix-threadpool' crate in global workspace as unnecessary * Revert patching and fix 'actix-rt' * Migrate actix-rt to std::future (#47) * remove Pin from Service::poll_ready(); simplify combinators api; make code compile * disable tests * update travis config * refactor naming * drop IntoFuture trait * Migrate actix-server to std::future (#50) Still not finished, this is more WIP, this is an aggregation of several commits, which can be found in semtexzv/std-future-server-tmp branch * update actix-server * rename Factor to ServiceFactory * start server worker in start mehtod * update actix-utils * remove IntoTransform trait * Migrate actix-server::ssl::nativetls to std futures (#61) * Refactor 'nativetls' module * Migrate 'actix-server-config' to std futures - remove "uds" feature - disable features by default * Switch NativeTlsAcceptor to use 'tokio-tls' crate * Bikeshed features names and remove unnecessary dependencies for 'actix-server-config' crate * update openssl impl * migrate actix-connect to std::future * migrate actix-ioframe to std::future * update version to alpha.1 * fix boxed service * migrate server rustls support * migratte openssl and rustls connecttors * store the thread's handle with arbiter (#62) * update ssl connect tests * restore service tests * update readme
2019-11-14 13:38:24 +01:00
Future = Ready<Result<(), ()>>,
2018-08-19 19:47:04 +02:00
>,
>;
pub(crate) struct StreamService<S, I> {
service: S,
_phantom: PhantomData<I>,
2018-09-07 20:35:25 +02:00
}
impl<S, I> StreamService<S, I> {
pub(crate) fn new(service: S) -> Self {
StreamService {
service,
_phantom: PhantomData,
}
2018-09-07 20:35:25 +02:00
}
2018-08-19 19:47:04 +02:00
}
impl<S, I> Service<(WorkerCounterGuard, MioStream)> for StreamService<S, I>
2018-08-19 19:47:04 +02:00
where
S: Service<I>,
S::Future: 'static,
S::Error: 'static,
2019-07-18 13:05:40 +02:00
I: FromStream,
2018-08-19 19:47:04 +02:00
{
type Response = ();
type Error = ();
Migrate actix-net to std::future (#64) * Migrate actix-codec, actix-rt, and actix-threadpool to std::future * update to latest tokio alpha and futures-rs * Migrate actix-service to std::future, This is a squash of ~8 commits, since it included a lot of experimentation. To see the commits, look into the semtexzv/std-future-service-tmp branch. * update futures-rs and tokio * Migrate actix-threadpool to std::future (#59) * Migrate actix-threadpool to std::future * Cosmetic refactor - turn log::error! into log::warn! as it doesn't throw any error - add Clone and Copy impls for Cancelled making it cheap to operate with - apply rustfmt * Bump up crate version to 0.2.0 and pre-fill its changelog * Disable patching 'actix-threadpool' crate in global workspace as unnecessary * Revert patching and fix 'actix-rt' * Migrate actix-rt to std::future (#47) * remove Pin from Service::poll_ready(); simplify combinators api; make code compile * disable tests * update travis config * refactor naming * drop IntoFuture trait * Migrate actix-server to std::future (#50) Still not finished, this is more WIP, this is an aggregation of several commits, which can be found in semtexzv/std-future-server-tmp branch * update actix-server * rename Factor to ServiceFactory * start server worker in start mehtod * update actix-utils * remove IntoTransform trait * Migrate actix-server::ssl::nativetls to std futures (#61) * Refactor 'nativetls' module * Migrate 'actix-server-config' to std futures - remove "uds" feature - disable features by default * Switch NativeTlsAcceptor to use 'tokio-tls' crate * Bikeshed features names and remove unnecessary dependencies for 'actix-server-config' crate * update openssl impl * migrate actix-connect to std::future * migrate actix-ioframe to std::future * update version to alpha.1 * fix boxed service * migrate server rustls support * migratte openssl and rustls connecttors * store the thread's handle with arbiter (#62) * update ssl connect tests * restore service tests * update readme
2019-11-14 13:38:24 +01:00
type Future = Ready<Result<(), ()>>;
2018-08-19 19:47:04 +02:00
fn poll_ready(&self, ctx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Migrate actix-net to std::future (#64) * Migrate actix-codec, actix-rt, and actix-threadpool to std::future * update to latest tokio alpha and futures-rs * Migrate actix-service to std::future, This is a squash of ~8 commits, since it included a lot of experimentation. To see the commits, look into the semtexzv/std-future-service-tmp branch. * update futures-rs and tokio * Migrate actix-threadpool to std::future (#59) * Migrate actix-threadpool to std::future * Cosmetic refactor - turn log::error! into log::warn! as it doesn't throw any error - add Clone and Copy impls for Cancelled making it cheap to operate with - apply rustfmt * Bump up crate version to 0.2.0 and pre-fill its changelog * Disable patching 'actix-threadpool' crate in global workspace as unnecessary * Revert patching and fix 'actix-rt' * Migrate actix-rt to std::future (#47) * remove Pin from Service::poll_ready(); simplify combinators api; make code compile * disable tests * update travis config * refactor naming * drop IntoFuture trait * Migrate actix-server to std::future (#50) Still not finished, this is more WIP, this is an aggregation of several commits, which can be found in semtexzv/std-future-server-tmp branch * update actix-server * rename Factor to ServiceFactory * start server worker in start mehtod * update actix-utils * remove IntoTransform trait * Migrate actix-server::ssl::nativetls to std futures (#61) * Refactor 'nativetls' module * Migrate 'actix-server-config' to std futures - remove "uds" feature - disable features by default * Switch NativeTlsAcceptor to use 'tokio-tls' crate * Bikeshed features names and remove unnecessary dependencies for 'actix-server-config' crate * update openssl impl * migrate actix-connect to std::future * migrate actix-ioframe to std::future * update version to alpha.1 * fix boxed service * migrate server rustls support * migratte openssl and rustls connecttors * store the thread's handle with arbiter (#62) * update ssl connect tests * restore service tests * update readme
2019-11-14 13:38:24 +01:00
self.service.poll_ready(ctx).map_err(|_| ())
2018-08-19 19:47:04 +02:00
}
fn call(&self, (guard, req): (WorkerCounterGuard, MioStream)) -> Self::Future {
ready(match FromStream::from_mio(req) {
Ok(stream) => {
let f = self.service.call(stream);
actix_rt::spawn(async move {
let _ = f.await;
drop(guard);
2019-03-11 20:01:55 +01:00
});
Ok(())
}
Err(e) => {
error!("Can not convert to an async tcp stream: {}", e);
Err(())
2018-09-07 22:06:51 +02:00
}
})
2018-08-19 19:47:04 +02:00
}
}
2019-07-18 13:05:40 +02:00
pub(crate) struct StreamNewService<F: ServiceFactory<Io>, Io: FromStream> {
2018-09-27 05:40:45 +02:00
name: String,
inner: F,
token: usize,
2019-03-09 16:27:56 +01:00
addr: SocketAddr,
2019-07-18 13:05:40 +02:00
_t: PhantomData<Io>,
2018-09-27 05:40:45 +02:00
}
2019-07-18 13:05:40 +02:00
impl<F, Io> StreamNewService<F, Io>
2018-09-27 05:40:45 +02:00
where
2019-07-18 13:05:40 +02:00
F: ServiceFactory<Io>,
Io: FromStream + Send + 'static,
2018-09-27 05:40:45 +02:00
{
2019-03-09 16:27:56 +01:00
pub(crate) fn create(
name: String,
token: usize,
2019-03-09 16:27:56 +01:00
inner: F,
addr: SocketAddr,
2019-07-18 13:05:40 +02:00
) -> Box<dyn InternalServiceFactory> {
2019-03-09 16:27:56 +01:00
Box::new(Self {
name,
token,
inner,
addr,
2019-07-18 13:05:40 +02:00
_t: PhantomData,
2019-03-09 16:27:56 +01:00
})
2018-09-27 05:40:45 +02:00
}
2018-08-19 19:47:04 +02:00
}
2019-07-18 13:05:40 +02:00
impl<F, Io> InternalServiceFactory for StreamNewService<F, Io>
2018-08-19 19:47:04 +02:00
where
2019-07-18 13:05:40 +02:00
F: ServiceFactory<Io>,
Io: FromStream + Send + 'static,
2018-08-19 19:47:04 +02:00
{
fn name(&self, _: usize) -> &str {
2018-09-18 05:19:48 +02:00
&self.name
}
2019-07-18 13:05:40 +02:00
fn clone_factory(&self) -> Box<dyn 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,
2019-03-09 16:27:56 +01:00
addr: self.addr,
2019-07-18 13:05:40 +02:00
_t: PhantomData,
2018-08-19 19:47:04 +02:00
})
}
fn create(&self) -> LocalBoxFuture<'static, Result<(usize, BoxedServerService), ()>> {
let token = self.token;
let fut = self.inner.create().new_service(());
Box::pin(async move {
match fut.await {
Ok(inner) => {
let service = Box::new(StreamService::new(inner)) as _;
2021-04-28 00:58:02 +02:00
Ok((token, service))
}
Err(_) => Err(()),
}
})
2018-08-19 19:47:04 +02:00
}
}
2019-07-18 13:05:40 +02:00
impl<F, T, I> ServiceFactory<I> for F
2018-09-08 23:50:16 +02:00
where
F: Fn() -> T + Send + Clone + 'static,
T: BaseServiceFactory<I, Config = ()>,
2019-07-18 13:05:40 +02:00
I: FromStream,
2018-09-08 23:50:16 +02:00
{
2019-11-20 19:35:44 +01:00
type Factory = T;
2018-09-08 23:50:16 +02:00
fn create(&self) -> T {
(self)()
}
}