1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/actix-http/src/ws/dispatcher.rs

54 lines
1.4 KiB
Rust
Raw Normal View History

2019-11-18 12:42:27 +00:00
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
2018-12-11 02:08:33 +00:00
use actix_codec::{AsyncRead, AsyncWrite, Framed};
use actix_service::{IntoService, Service};
use actix_utils::dispatcher::{Dispatcher as InnerDispatcher, DispatcherError};
2018-10-05 21:30:40 +00:00
2018-10-10 20:20:00 +00:00
use super::{Codec, Frame, Message};
2018-10-05 21:30:40 +00:00
#[pin_project::pin_project]
2019-12-11 13:20:20 +00:00
pub struct Dispatcher<S, T>
2018-10-05 21:30:40 +00:00
where
S: Service<Frame, Response = Message> + 'static,
2019-11-19 12:54:19 +00:00
T: AsyncRead + AsyncWrite,
2018-10-05 21:30:40 +00:00
{
#[pin]
inner: InnerDispatcher<S, T, Codec, Message>,
2018-10-05 21:30:40 +00:00
}
2019-12-11 13:20:20 +00:00
impl<S, T> Dispatcher<S, T>
2018-10-05 21:30:40 +00:00
where
2019-11-19 12:54:19 +00:00
T: AsyncRead + AsyncWrite,
S: Service<Frame, Response = Message>,
2018-10-05 21:30:40 +00:00
S::Future: 'static,
2019-11-19 12:54:19 +00:00
S::Error: 'static,
2018-10-05 21:30:40 +00:00
{
pub fn new<F: IntoService<S, Frame>>(io: T, service: F) -> Self {
2019-12-11 13:20:20 +00:00
Dispatcher {
inner: InnerDispatcher::new(Framed::new(io, Codec::new()), service),
2018-10-05 21:30:40 +00:00
}
}
pub fn with<F: IntoService<S, Frame>>(framed: Framed<T, Codec>, service: F) -> Self {
2019-12-11 13:20:20 +00:00
Dispatcher {
inner: InnerDispatcher::new(framed, service),
2018-10-05 21:30:40 +00:00
}
}
}
2019-12-11 13:20:20 +00:00
impl<S, T> Future for Dispatcher<S, T>
2018-10-05 21:30:40 +00:00
where
2019-11-19 12:54:19 +00:00
T: AsyncRead + AsyncWrite,
S: Service<Frame, Response = Message>,
2018-10-05 21:30:40 +00:00
S::Future: 'static,
2019-11-19 12:54:19 +00:00
S::Error: 'static,
2018-10-05 21:30:40 +00:00
{
type Output = Result<(), DispatcherError<S::Error, Codec, Message>>;
2018-10-05 21:30:40 +00:00
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
self.project().inner.poll(cx)
2018-10-05 21:30:40 +00:00
}
}