mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 16:02:59 +01:00
use TakeItem instead of TakeRequest
This commit is contained in:
parent
8acf9eb98a
commit
30db78c19c
@ -6,5 +6,6 @@ mod encoder;
|
|||||||
mod service;
|
mod service;
|
||||||
|
|
||||||
pub use self::codec::{Codec, InMessage, OutMessage};
|
pub use self::codec::{Codec, InMessage, OutMessage};
|
||||||
|
pub use self::decoder::{PayloadDecoder, RequestDecoder};
|
||||||
pub use self::dispatcher::Dispatcher;
|
pub use self::dispatcher::Dispatcher;
|
||||||
pub use self::service::{H1Service, H1ServiceHandler, TakeRequest};
|
pub use self::service::{H1Service, H1ServiceHandler};
|
||||||
|
@ -2,17 +2,15 @@ use std::fmt::Debug;
|
|||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
use std::net;
|
use std::net;
|
||||||
|
|
||||||
use actix_net::codec::Framed;
|
|
||||||
use actix_net::service::{IntoNewService, NewService, Service};
|
use actix_net::service::{IntoNewService, NewService, Service};
|
||||||
use futures::{future, Async, Future, Poll, Stream};
|
use futures::{Async, Future, Poll};
|
||||||
use tokio_io::{AsyncRead, AsyncWrite};
|
use tokio_io::{AsyncRead, AsyncWrite};
|
||||||
|
|
||||||
use config::{KeepAlive, ServiceConfig};
|
use config::{KeepAlive, ServiceConfig};
|
||||||
use error::{DispatchError, ParseError};
|
use error::DispatchError;
|
||||||
use request::Request;
|
use request::Request;
|
||||||
use response::Response;
|
use response::Response;
|
||||||
|
|
||||||
use super::codec::{Codec, InMessage};
|
|
||||||
use super::dispatcher::Dispatcher;
|
use super::dispatcher::Dispatcher;
|
||||||
|
|
||||||
/// `NewService` implementation for HTTP1 transport
|
/// `NewService` implementation for HTTP1 transport
|
||||||
@ -257,78 +255,3 @@ where
|
|||||||
Dispatcher::new(req, self.cfg.clone(), self.srv.clone())
|
Dispatcher::new(req, self.cfg.clone(), self.srv.clone())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `NewService` that implements, read one request from framed object feature.
|
|
||||||
pub struct TakeRequest<T> {
|
|
||||||
_t: PhantomData<T>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> TakeRequest<T> {
|
|
||||||
/// Create new `TakeRequest` instance.
|
|
||||||
pub fn new() -> Self {
|
|
||||||
TakeRequest { _t: PhantomData }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> NewService for TakeRequest<T>
|
|
||||||
where
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
{
|
|
||||||
type Request = Framed<T, Codec>;
|
|
||||||
type Response = (Option<InMessage>, Framed<T, Codec>);
|
|
||||||
type Error = ParseError;
|
|
||||||
type InitError = ();
|
|
||||||
type Service = TakeRequestService<T>;
|
|
||||||
type Future = future::FutureResult<Self::Service, Self::InitError>;
|
|
||||||
|
|
||||||
fn new_service(&self) -> Self::Future {
|
|
||||||
future::ok(TakeRequestService { _t: PhantomData })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// `NewService` that implements, read one request from framed object feature.
|
|
||||||
pub struct TakeRequestService<T> {
|
|
||||||
_t: PhantomData<T>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Service for TakeRequestService<T>
|
|
||||||
where
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
{
|
|
||||||
type Request = Framed<T, Codec>;
|
|
||||||
type Response = (Option<InMessage>, Framed<T, Codec>);
|
|
||||||
type Error = ParseError;
|
|
||||||
type Future = TakeRequestServiceResponse<T>;
|
|
||||||
|
|
||||||
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
||||||
Ok(Async::Ready(()))
|
|
||||||
}
|
|
||||||
|
|
||||||
fn call(&mut self, framed: Self::Request) -> Self::Future {
|
|
||||||
TakeRequestServiceResponse {
|
|
||||||
framed: Some(framed),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct TakeRequestServiceResponse<T>
|
|
||||||
where
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
{
|
|
||||||
framed: Option<Framed<T, Codec>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Future for TakeRequestServiceResponse<T>
|
|
||||||
where
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
{
|
|
||||||
type Item = (Option<InMessage>, Framed<T, Codec>);
|
|
||||||
type Error = ParseError;
|
|
||||||
|
|
||||||
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
||||||
match self.framed.as_mut().unwrap().poll()? {
|
|
||||||
Async::Ready(item) => Ok(Async::Ready((item, self.framed.take().unwrap()))),
|
|
||||||
Async::NotReady => Ok(Async::NotReady),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -12,6 +12,7 @@ use actix_net::codec::Framed;
|
|||||||
use actix_net::framed::IntoFramed;
|
use actix_net::framed::IntoFramed;
|
||||||
use actix_net::server::Server;
|
use actix_net::server::Server;
|
||||||
use actix_net::service::NewServiceExt;
|
use actix_net::service::NewServiceExt;
|
||||||
|
use actix_net::stream::TakeItem;
|
||||||
use actix_web::{test, ws as web_ws};
|
use actix_web::{test, ws as web_ws};
|
||||||
use bytes::Bytes;
|
use bytes::Bytes;
|
||||||
use futures::future::{ok, Either};
|
use futures::future::{ok, Either};
|
||||||
@ -36,7 +37,7 @@ fn test_simple() {
|
|||||||
Server::new()
|
Server::new()
|
||||||
.bind("test", addr, move || {
|
.bind("test", addr, move || {
|
||||||
IntoFramed::new(|| h1::Codec::new(false))
|
IntoFramed::new(|| h1::Codec::new(false))
|
||||||
.and_then(h1::TakeRequest::new().map_err(|_| ()))
|
.and_then(TakeItem::new().map_err(|_| ()))
|
||||||
.and_then(|(req, framed): (_, Framed<_, _>)| {
|
.and_then(|(req, framed): (_, Framed<_, _>)| {
|
||||||
// validate request
|
// validate request
|
||||||
if let Some(h1::InMessage::MessageWithPayload(req)) = req {
|
if let Some(h1::InMessage::MessageWithPayload(req)) = req {
|
||||||
|
Loading…
Reference in New Issue
Block a user