1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-12-01 01:44:35 +01:00
actix-net/actix-utils/src/framed.rs

479 lines
14 KiB
Rust
Raw Normal View History

2018-09-13 03:47:39 +02:00
//! Framed dispatcher service and related utilities
use std::marker::PhantomData;
2018-09-25 05:40:31 +02:00
use std::mem;
2018-09-13 03:47:39 +02:00
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
2018-12-10 06:51:35 +01:00
use actix_rt::Arbiter;
2018-12-09 19:15:49 +01:00
use actix_service::{IntoNewService, IntoService, NewService, Service};
2018-09-25 06:03:05 +02:00
use futures::future::{ok, FutureResult};
2018-09-13 03:47:39 +02:00
use futures::unsync::mpsc;
use futures::{Async, AsyncSink, Future, Poll, Sink, Stream};
type Request<U> = <U as Decoder>::Item;
type Response<U> = <U as Encoder>::Item;
2018-09-13 03:47:39 +02:00
2018-09-25 05:40:31 +02:00
pub struct FramedNewService<S, T, U> {
2018-09-13 03:47:39 +02:00
factory: S,
_t: PhantomData<(T, U)>,
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> FramedNewService<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: NewService<Request<U>, Response = Response<U>>,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Future: 'static,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
2018-11-30 03:56:15 +01:00
pub fn new<F1: IntoNewService<S, Request<U>>>(factory: F1) -> Self {
2018-09-13 03:47:39 +02:00
Self {
factory: factory.into_new_service(),
_t: PhantomData,
}
}
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> Clone for FramedNewService<S, T, U>
2018-09-13 03:47:39 +02:00
where
S: Clone,
{
fn clone(&self) -> Self {
Self {
factory: self.factory.clone(),
_t: PhantomData,
}
}
}
2018-11-30 03:56:15 +01:00
impl<S, T, U> NewService<Framed<T, U>> for FramedNewService<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: NewService<Request<U>, Response = Response<U>> + Clone,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Future: 'static,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
2018-09-25 05:40:31 +02:00
type Response = FramedTransport<S::Service, T, U>;
2018-09-13 03:47:39 +02:00
type Error = S::InitError;
type InitError = S::InitError;
2018-09-25 05:40:31 +02:00
type Service = FramedService<S, T, U>;
2018-09-13 03:47:39 +02:00
type Future = FutureResult<Self::Service, Self::InitError>;
fn new_service(&self) -> Self::Future {
ok(FramedService {
factory: self.factory.clone(),
_t: PhantomData,
})
}
}
2018-09-25 05:40:31 +02:00
pub struct FramedService<S, T, U> {
2018-09-13 03:47:39 +02:00
factory: S,
_t: PhantomData<(T, U)>,
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> Clone for FramedService<S, T, U>
2018-09-13 03:47:39 +02:00
where
S: Clone,
{
fn clone(&self) -> Self {
Self {
factory: self.factory.clone(),
_t: PhantomData,
}
}
}
2018-11-30 03:56:15 +01:00
impl<S, T, U> Service<Framed<T, U>> for FramedService<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: NewService<Request<U>, Response = Response<U>>,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Future: 'static,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
2018-09-25 05:40:31 +02:00
type Response = FramedTransport<S::Service, T, U>;
2018-09-13 03:47:39 +02:00
type Error = S::InitError;
2018-09-25 05:40:31 +02:00
type Future = FramedServiceResponseFuture<S, T, U>;
2018-09-13 03:47:39 +02:00
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(Async::Ready(()))
}
2018-11-30 03:56:15 +01:00
fn call(&mut self, req: Framed<T, U>) -> Self::Future {
2018-09-13 03:47:39 +02:00
FramedServiceResponseFuture {
2018-09-25 05:40:31 +02:00
fut: self.factory.new_service(),
2018-09-13 03:47:39 +02:00
framed: Some(req),
}
}
}
#[doc(hidden)]
2018-09-25 05:40:31 +02:00
pub struct FramedServiceResponseFuture<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: NewService<Request<U>, Response = Response<U>>,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Future: 'static,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
2018-09-25 05:40:31 +02:00
fut: S::Future,
2018-09-13 03:47:39 +02:00
framed: Option<Framed<T, U>>,
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> Future for FramedServiceResponseFuture<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: NewService<Request<U>, Response = Response<U>>,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Future: 'static,
<<S as NewService<Request<U>>>::Service as Service<Request<U>>>::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
2018-09-25 05:40:31 +02:00
type Item = FramedTransport<S::Service, T, U>;
2018-09-13 03:47:39 +02:00
type Error = S::InitError;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
match self.fut.poll()? {
Async::NotReady => Ok(Async::NotReady),
2018-09-25 05:40:31 +02:00
Async::Ready(service) => Ok(Async::Ready(FramedTransport::new(
self.framed.take().unwrap(),
service,
))),
}
}
}
2018-09-25 05:40:31 +02:00
/// Framed transport errors
2018-09-25 07:31:05 +02:00
pub enum FramedTransportError<E, U: Encoder + Decoder> {
Service(E),
Encoder(<U as Encoder>::Error),
Decoder(<U as Decoder>::Error),
}
impl<E, U: Encoder + Decoder> From<E> for FramedTransportError<E, U> {
fn from(err: E) -> Self {
FramedTransportError::Service(err)
}
}
/// FramedTransport - is a future that reads frames from Framed object
2018-09-13 03:47:39 +02:00
/// and pass then to the service.
2018-09-25 05:40:31 +02:00
pub struct FramedTransport<S, T, U>
2018-09-13 03:47:39 +02:00
where
2018-11-30 03:56:15 +01:00
S: Service<Request<U>, Response = Response<U>>,
2018-09-13 03:47:39 +02:00
T: AsyncRead + AsyncWrite,
U: Encoder + Decoder,
{
service: S,
2018-09-25 05:40:31 +02:00
state: TransportState<S, U>,
2018-09-13 03:47:39 +02:00
framed: Framed<T, U>,
request: Option<Request<U>>,
response: Option<Response<U>>,
write_rx: mpsc::Receiver<Result<Response<U>, S::Error>>,
write_tx: mpsc::Sender<Result<Response<U>, S::Error>>,
2018-09-13 03:47:39 +02:00
flushed: bool,
}
2018-11-30 03:56:15 +01:00
enum TransportState<S: Service<Request<U>>, U: Encoder + Decoder> {
Processing,
2018-09-25 07:31:05 +02:00
Error(FramedTransportError<S::Error, U>),
EncoderError(FramedTransportError<S::Error, U>),
Stopping,
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> FramedTransport<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: Service<Request<U>, Response = Response<U>>,
2018-09-13 03:47:39 +02:00
S::Future: 'static,
2018-09-25 05:40:31 +02:00
S::Error: 'static,
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
2018-11-30 03:56:15 +01:00
pub fn new<F: IntoService<S, Request<U>>>(framed: Framed<T, U>, service: F) -> Self {
2018-09-13 03:47:39 +02:00
let (write_tx, write_rx) = mpsc::channel(16);
FramedTransport {
2018-09-13 03:47:39 +02:00
framed,
write_rx,
write_tx,
service: service.into_service(),
state: TransportState::Processing,
request: None,
response: None,
2018-09-13 03:47:39 +02:00
flushed: true,
}
}
/// Get reference to a service wrapped by `FramedTransport` instance.
pub fn get_ref(&self) -> &S {
&self.service
}
/// Get mutable reference to a service wrapped by `FramedTransport`
/// instance.
pub fn get_mut(&mut self) -> &mut S {
&mut self.service
}
/// Get reference to a framed instance wrapped by `FramedTransport`
/// instance.
pub fn get_framed(&self) -> &Framed<T, U> {
&self.framed
}
/// Get mutable reference to a framed instance wrapped by `FramedTransport`
/// instance.
pub fn get_framed_mut(&mut self) -> &mut Framed<T, U> {
&mut self.framed
}
2018-09-13 03:47:39 +02:00
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> FramedTransport<S, T, U>
2018-09-13 03:47:39 +02:00
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: Service<Request<U>, Response = Response<U>>,
2018-09-13 03:47:39 +02:00
S::Future: 'static,
2018-09-25 05:40:31 +02:00
S::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
2018-09-13 03:47:39 +02:00
{
fn poll_service(&mut self) -> bool {
match self.service.poll_ready() {
Ok(Async::Ready(_)) => {
2018-09-27 05:40:45 +02:00
if let Some(item) = self.request.take() {
let sender = self.write_tx.clone();
2018-12-10 06:51:35 +01:00
Arbiter::spawn(
2018-09-27 05:40:45 +02:00
self.service
.call(item)
.then(|item| sender.send(item).map(|_| ()).map_err(|_| ())),
);
}
loop {
2018-09-27 05:40:45 +02:00
let item = match self.framed.poll() {
Ok(Async::Ready(Some(el))) => el,
Err(err) => {
2018-09-25 05:40:31 +02:00
self.state =
TransportState::Error(FramedTransportError::Decoder(err));
return true;
2018-09-13 03:47:39 +02:00
}
Ok(Async::NotReady) => return false,
Ok(Async::Ready(None)) => {
self.state = TransportState::Stopping;
return true;
2018-09-13 03:47:39 +02:00
}
2018-09-27 05:40:45 +02:00
};
match self.service.poll_ready() {
Ok(Async::Ready(_)) => {
let sender = self.write_tx.clone();
2018-12-10 06:51:35 +01:00
Arbiter::spawn(
2018-09-27 05:40:45 +02:00
self.service
.call(item)
.then(|item| sender.send(item).map(|_| ()).map_err(|_| ())),
);
}
Ok(Async::NotReady) => {
self.request = Some(item);
return false;
}
Err(err) => {
self.state =
TransportState::Error(FramedTransportError::Service(err));
return true;
}
2018-09-13 03:47:39 +02:00
}
}
}
2018-12-06 23:04:42 +01:00
Ok(Async::NotReady) => false,
Err(err) => {
2018-09-25 05:40:31 +02:00
self.state = TransportState::Error(FramedTransportError::Service(err));
2018-12-06 23:04:42 +01:00
true
2018-09-13 03:47:39 +02:00
}
}
}
2018-09-13 03:47:39 +02:00
/// write to sink
fn poll_response(&mut self) -> bool {
let mut item = self.response.take();
2018-09-13 03:47:39 +02:00
loop {
item = if let Some(msg) = item {
self.flushed = false;
match self.framed.start_send(msg) {
Ok(AsyncSink::Ready) => None,
Ok(AsyncSink::NotReady(item)) => Some(item),
Err(err) => {
2018-09-25 05:40:31 +02:00
self.state =
TransportState::EncoderError(FramedTransportError::Encoder(err));
return true;
2018-09-13 03:47:39 +02:00
}
}
} else {
None
};
// flush sink
if !self.flushed {
match self.framed.poll_complete() {
Ok(Async::Ready(_)) => {
self.flushed = true;
}
Ok(Async::NotReady) => break,
Err(err) => {
2018-09-25 05:40:31 +02:00
self.state =
TransportState::EncoderError(FramedTransportError::Encoder(err));
return true;
2018-09-13 03:47:39 +02:00
}
}
}
// check channel
if self.flushed {
if item.is_none() {
match self.write_rx.poll() {
Ok(Async::Ready(Some(msg))) => match msg {
Ok(msg) => item = Some(msg),
Err(err) => {
2018-09-25 05:40:31 +02:00
self.state =
TransportState::Error(FramedTransportError::Service(err));
return true;
}
2018-09-13 03:47:39 +02:00
},
Ok(Async::NotReady) => break,
Err(_) => panic!("Bug in gw code"),
Ok(Async::Ready(None)) => panic!("Bug in gw code"),
}
} else {
continue;
}
} else {
self.response = item;
2018-09-13 03:47:39 +02:00
break;
}
}
false
}
}
2018-09-25 05:40:31 +02:00
impl<S, T, U> Future for FramedTransport<S, T, U>
where
T: AsyncRead + AsyncWrite,
U: Decoder + Encoder,
2018-11-30 03:56:15 +01:00
S: Service<Request<U>, Response = Response<U>>,
S::Future: 'static,
2018-09-25 05:40:31 +02:00
S::Error: 'static,
<U as Encoder>::Item: 'static,
2018-09-25 05:40:31 +02:00
<U as Encoder>::Error: 'static,
{
type Item = ();
2018-09-25 07:31:05 +02:00
type Error = FramedTransportError<S::Error, U>;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
2018-09-25 05:40:31 +02:00
match mem::replace(&mut self.state, TransportState::Processing) {
TransportState::Processing => {
2018-12-06 23:04:42 +01:00
if self.poll_service() || self.poll_response() {
self.poll()
} else {
Ok(Async::NotReady)
}
}
2018-09-25 05:40:31 +02:00
TransportState::Error(err) => {
2018-12-06 23:04:42 +01:00
if self.poll_response() || self.flushed {
Err(err)
} else {
self.state = TransportState::Error(err);
Ok(Async::NotReady)
}
}
2018-12-06 23:04:42 +01:00
TransportState::EncoderError(err) => Err(err),
TransportState::Stopping => Ok(Async::Ready(())),
2018-09-25 05:40:31 +02:00
}
2018-09-13 03:47:39 +02:00
}
}
2018-10-06 00:37:15 +02:00
pub struct IntoFramed<T, U, F>
where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
{
factory: F,
_t: PhantomData<(T,)>,
}
impl<T, U, F> IntoFramed<T, U, F>
where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
{
pub fn new(factory: F) -> Self {
IntoFramed {
factory,
_t: PhantomData,
}
}
}
2018-11-30 03:56:15 +01:00
impl<T, U, F> NewService<T> for IntoFramed<T, U, F>
2018-10-06 00:37:15 +02:00
where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
{
type Response = Framed<T, U>;
type Error = ();
type InitError = ();
type Service = IntoFramedService<T, U, F>;
type Future = FutureResult<Self::Service, Self::InitError>;
fn new_service(&self) -> Self::Future {
ok(IntoFramedService {
factory: self.factory.clone(),
_t: PhantomData,
})
}
}
pub struct IntoFramedService<T, U, F>
where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
{
factory: F,
_t: PhantomData<(T,)>,
}
2018-11-30 03:56:15 +01:00
impl<T, U, F> Service<T> for IntoFramedService<T, U, F>
2018-10-06 00:37:15 +02:00
where
T: AsyncRead + AsyncWrite,
F: Fn() -> U + Send + Clone + 'static,
U: Encoder + Decoder,
{
type Response = Framed<T, U>;
type Error = ();
type Future = FutureResult<Self::Response, Self::Error>;
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
Ok(Async::Ready(()))
}
2018-11-30 03:56:15 +01:00
fn call(&mut self, req: T) -> Self::Future {
2018-10-06 00:37:15 +02:00
ok(Framed::new(req, (self.factory)()))
}
}