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;
|
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};
|
2018-10-05 22:07:09 +02:00
|
|
|
use tokio_codec::{Decoder, Encoder};
|
2018-09-13 03:47:39 +02:00
|
|
|
use tokio_io::{AsyncRead, AsyncWrite};
|
|
|
|
|
2018-10-05 22:07:09 +02:00
|
|
|
use codec::Framed;
|
2018-09-13 03:47:39 +02:00
|
|
|
use service::{IntoNewService, IntoService, NewService, Service};
|
|
|
|
|
2018-09-25 05:06:20 +02:00
|
|
|
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-09-25 06:03:05 +02:00
|
|
|
S: NewService<Request = Request<U>, Response = Response<U>> + Clone,
|
2018-09-13 03:47:39 +02:00
|
|
|
<<S as NewService>::Service as Service>::Future: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
<<S as NewService>::Service as Service>::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
<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
|
|
|
{
|
|
|
|
pub fn new<F1: IntoNewService<S>>(factory: F1) -> Self {
|
|
|
|
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-09-25 05:40:31 +02:00
|
|
|
impl<S, T, U> NewService for FramedNewService<S, T, U>
|
2018-09-13 03:47:39 +02:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
U: Decoder + Encoder,
|
2018-09-25 06:03:05 +02:00
|
|
|
S: NewService<Request = Request<U>, Response = Response<U>> + Clone,
|
2018-09-13 03:47:39 +02:00
|
|
|
<<S as NewService>::Service as Service>::Future: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
<<S as NewService>::Service as Service>::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
<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
|
|
|
{
|
|
|
|
type Request = Framed<T, U>;
|
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-09-25 05:40:31 +02:00
|
|
|
impl<S, T, U> Service for FramedService<S, T, U>
|
2018-09-13 03:47:39 +02:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
U: Decoder + Encoder,
|
2018-09-25 06:03:05 +02:00
|
|
|
S: NewService<Request = Request<U>, Response = Response<U>>,
|
2018-09-13 03:47:39 +02:00
|
|
|
<<S as NewService>::Service as Service>::Future: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
<<S as NewService>::Service as Service>::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
<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
|
|
|
{
|
|
|
|
type Request = Framed<T, U>;
|
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(()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
|
|
|
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-09-25 06:03:05 +02:00
|
|
|
S: NewService<Request = Request<U>, Response = Response<U>>,
|
2018-09-13 03:47:39 +02:00
|
|
|
<<S as NewService>::Service as Service>::Future: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
<<S as NewService>::Service as Service>::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
<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-09-25 06:03:05 +02:00
|
|
|
S: NewService<Request = Request<U>, Response = Response<U>>,
|
2018-09-13 03:47:39 +02:00
|
|
|
<<S as NewService>::Service as Service>::Future: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
<<S as NewService>::Service as Service>::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
<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:06:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
2018-09-25 05:06:20 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 02:50:29 +02:00
|
|
|
/// 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
|
|
|
|
S: Service,
|
|
|
|
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>,
|
2018-09-25 05:06:20 +02:00
|
|
|
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-09-25 05:40:31 +02:00
|
|
|
enum TransportState<S: Service, U: Encoder + Decoder> {
|
2018-09-25 05:06:20 +02:00
|
|
|
Processing,
|
2018-09-25 07:31:05 +02:00
|
|
|
Error(FramedTransportError<S::Error, U>),
|
|
|
|
EncoderError(FramedTransportError<S::Error, U>),
|
2018-09-25 05:06:20 +02:00
|
|
|
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-09-25 06:03:05 +02:00
|
|
|
S: Service<Request = 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
|
|
|
{
|
|
|
|
pub fn new<F: IntoService<S>>(framed: Framed<T, U>, service: F) -> Self {
|
|
|
|
let (write_tx, write_rx) = mpsc::channel(16);
|
2018-09-25 02:50:29 +02:00
|
|
|
FramedTransport {
|
2018-09-13 03:47:39 +02:00
|
|
|
framed,
|
|
|
|
write_rx,
|
|
|
|
write_tx,
|
2018-09-25 05:06:20 +02:00
|
|
|
service: service.into_service(),
|
|
|
|
state: TransportState::Processing,
|
|
|
|
request: None,
|
|
|
|
response: None,
|
2018-09-13 03:47:39 +02:00
|
|
|
flushed: true,
|
|
|
|
}
|
|
|
|
}
|
2018-10-05 22:13:36 +02:00
|
|
|
|
|
|
|
/// 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-09-25 06:03:05 +02:00
|
|
|
S: Service<Request = 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,
|
2018-09-25 05:06:20 +02:00
|
|
|
<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:06:20 +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();
|
|
|
|
actix::Arbiter::spawn(
|
|
|
|
self.service
|
|
|
|
.call(item)
|
|
|
|
.then(|item| sender.send(item).map(|_| ()).map_err(|_| ())),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-09-25 05:06:20 +02:00
|
|
|
loop {
|
2018-09-27 05:40:45 +02:00
|
|
|
let item = match self.framed.poll() {
|
|
|
|
Ok(Async::Ready(Some(el))) => el,
|
2018-09-25 05:06:20 +02:00
|
|
|
Err(err) => {
|
2018-09-25 05:40:31 +02:00
|
|
|
self.state =
|
|
|
|
TransportState::Error(FramedTransportError::Decoder(err));
|
2018-09-25 05:06:20 +02:00
|
|
|
return true;
|
2018-09-13 03:47:39 +02:00
|
|
|
}
|
2018-09-25 05:06:20 +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();
|
|
|
|
actix::Arbiter::spawn(
|
|
|
|
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-09-25 05:06:20 +02:00
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => return false,
|
|
|
|
Err(err) => {
|
2018-09-25 05:40:31 +02:00
|
|
|
self.state = TransportState::Error(FramedTransportError::Service(err));
|
2018-09-25 05:06:20 +02:00
|
|
|
return true;
|
2018-09-13 03:47:39 +02:00
|
|
|
}
|
|
|
|
}
|
2018-09-25 05:06:20 +02:00
|
|
|
}
|
2018-09-13 03:47:39 +02:00
|
|
|
|
2018-09-25 05:06:20 +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));
|
2018-09-25 05:06:20 +02:00
|
|
|
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));
|
2018-09-25 05:06:20 +02:00
|
|
|
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),
|
2018-09-25 05:06:20 +02:00
|
|
|
Err(err) => {
|
2018-09-25 05:40:31 +02:00
|
|
|
self.state =
|
|
|
|
TransportState::Error(FramedTransportError::Service(err));
|
2018-09-25 05:06:20 +02:00
|
|
|
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 {
|
2018-09-25 05:06:20 +02:00
|
|
|
self.response = item;
|
2018-09-13 03:47:39 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-09-25 05:06:20 +02:00
|
|
|
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-25 05:40:31 +02:00
|
|
|
impl<S, T, U> Future for FramedTransport<S, T, U>
|
2018-09-25 05:06:20 +02:00
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
U: Decoder + Encoder,
|
2018-09-25 06:03:05 +02:00
|
|
|
S: Service<Request = Request<U>, Response = Response<U>>,
|
2018-09-25 05:06:20 +02:00
|
|
|
S::Future: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
S::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
<U as Encoder>::Item: 'static,
|
2018-09-25 05:40:31 +02:00
|
|
|
<U as Encoder>::Error: 'static,
|
2018-09-25 05:06:20 +02:00
|
|
|
{
|
|
|
|
type Item = ();
|
2018-09-25 07:31:05 +02:00
|
|
|
type Error = FramedTransportError<S::Error, U>;
|
2018-09-25 05:06:20 +02:00
|
|
|
|
|
|
|
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) {
|
2018-09-25 05:06:20 +02:00
|
|
|
TransportState::Processing => {
|
|
|
|
if self.poll_service() {
|
|
|
|
return self.poll();
|
|
|
|
}
|
|
|
|
if self.poll_response() {
|
|
|
|
return self.poll();
|
|
|
|
}
|
|
|
|
return Ok(Async::NotReady);
|
|
|
|
}
|
2018-09-25 05:40:31 +02:00
|
|
|
TransportState::Error(err) => {
|
2018-09-25 05:06:20 +02:00
|
|
|
if self.poll_response() {
|
2018-09-25 05:40:31 +02:00
|
|
|
return Err(err);
|
2018-09-25 05:06:20 +02:00
|
|
|
}
|
|
|
|
if self.flushed {
|
2018-09-25 05:40:31 +02:00
|
|
|
return Err(err);
|
2018-09-25 05:06:20 +02:00
|
|
|
}
|
2018-09-25 05:40:31 +02:00
|
|
|
self.state = TransportState::Error(err);
|
2018-09-25 05:06:20 +02:00
|
|
|
return Ok(Async::NotReady);
|
|
|
|
}
|
2018-09-25 05:40:31 +02:00
|
|
|
TransportState::EncoderError(err) => return Err(err),
|
2018-09-25 05:06:20 +02:00
|
|
|
TransportState::Stopping => return 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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, U, F> NewService for IntoFramed<T, U, F>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
F: Fn() -> U + Send + Clone + 'static,
|
|
|
|
U: Encoder + Decoder,
|
|
|
|
{
|
|
|
|
type Request = T;
|
|
|
|
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,)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, U, F> Service for IntoFramedService<T, U, F>
|
|
|
|
where
|
|
|
|
T: AsyncRead + AsyncWrite,
|
|
|
|
F: Fn() -> U + Send + Clone + 'static,
|
|
|
|
U: Encoder + Decoder,
|
|
|
|
{
|
|
|
|
type Request = T;
|
|
|
|
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(()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
|
|
|
ok(Framed::new(req, (self.factory)()))
|
|
|
|
}
|
|
|
|
}
|