2017-10-07 06:48:14 +02:00
|
|
|
use std::rc::Rc;
|
2017-10-29 14:05:31 +01:00
|
|
|
use std::cell::RefCell;
|
2017-10-07 06:48:14 +02:00
|
|
|
use std::marker::PhantomData;
|
2017-11-29 19:31:24 +01:00
|
|
|
use std::result::Result as StdResult;
|
2017-10-07 06:48:14 +02:00
|
|
|
|
|
|
|
use actix::Actor;
|
2017-11-29 19:31:24 +01:00
|
|
|
// use http::{header, Version};
|
2017-10-15 23:17:41 +02:00
|
|
|
use futures::Stream;
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-11-29 04:49:17 +01:00
|
|
|
use task::{Task, DrainFut, IoContext};
|
2017-11-10 22:42:32 +01:00
|
|
|
use body::Binary;
|
2017-11-29 19:31:24 +01:00
|
|
|
use error::{Error}; //, ExpectError, Result};
|
2017-10-07 06:48:14 +02:00
|
|
|
use context::HttpContext;
|
2017-10-15 07:52:38 +02:00
|
|
|
use httprequest::HttpRequest;
|
2017-10-24 08:25:32 +02:00
|
|
|
use httpresponse::HttpResponse;
|
2017-10-07 06:48:14 +02:00
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
#[doc(hidden)]
|
2017-10-07 06:48:14 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Frame {
|
2017-10-13 23:43:17 +02:00
|
|
|
Message(HttpResponse),
|
2017-11-10 22:42:32 +01:00
|
|
|
Payload(Option<Binary>),
|
2017-10-29 14:05:31 +01:00
|
|
|
Drain(Rc<RefCell<DrainFut>>),
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 21:35:34 +01:00
|
|
|
impl Frame {
|
|
|
|
pub fn eof() -> Frame {
|
|
|
|
Frame::Payload(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-08 23:56:51 +02:00
|
|
|
/// Trait defines object that could be regestered as resource route
|
2017-10-16 10:19:23 +02:00
|
|
|
#[allow(unused_variables)]
|
2017-10-07 06:48:14 +02:00
|
|
|
pub trait RouteHandler<S>: 'static {
|
2017-10-10 08:07:32 +02:00
|
|
|
/// Handle request
|
2017-11-29 04:49:17 +01:00
|
|
|
fn handle(&self, req: HttpRequest<S>, task: &mut Task);
|
2017-10-10 08:07:32 +02:00
|
|
|
|
|
|
|
/// Set route prefix
|
2017-10-16 10:19:23 +02:00
|
|
|
fn set_prefix(&mut self, prefix: String) {}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 19:31:24 +01:00
|
|
|
/*
|
2017-10-16 00:59:26 +02:00
|
|
|
/// Actors with ability to handle http requests.
|
2017-10-16 00:52:52 +02:00
|
|
|
#[allow(unused_variables)]
|
2017-11-29 19:31:24 +01:00
|
|
|
pub trait RouteState {
|
2017-10-16 00:59:26 +02:00
|
|
|
/// Shared state. State is shared with all routes within same application
|
2017-11-27 06:18:38 +01:00
|
|
|
/// and could be accessed with `HttpRequest::state()` method.
|
2017-10-07 06:48:14 +02:00
|
|
|
type State;
|
|
|
|
|
2017-10-16 10:19:23 +02:00
|
|
|
/// Handle `EXPECT` header. By default respones with `HTTP/1.1 100 Continue`
|
2017-11-29 04:49:17 +01:00
|
|
|
fn expect(req: &mut HttpRequest<Self::State>, ctx: &mut Self::Context) -> Result<()>
|
2017-10-16 00:52:52 +02:00
|
|
|
where Self: Actor<Context=HttpContext<Self>>
|
|
|
|
{
|
|
|
|
// handle expect header only for HTTP/1.1
|
|
|
|
if req.version() == Version::HTTP_11 {
|
|
|
|
if let Some(expect) = req.headers().get(header::EXPECT) {
|
|
|
|
if let Ok(expect) = expect.to_str() {
|
|
|
|
if expect.to_lowercase() == "100-continue" {
|
|
|
|
ctx.write("HTTP/1.1 100 Continue\r\n\r\n");
|
|
|
|
Ok(())
|
|
|
|
} else {
|
2017-11-20 04:51:14 +01:00
|
|
|
Err(ExpectError::UnknownExpect.into())
|
2017-10-16 00:52:52 +02:00
|
|
|
}
|
|
|
|
} else {
|
2017-11-20 04:51:14 +01:00
|
|
|
Err(ExpectError::Encoding.into())
|
2017-10-16 00:52:52 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 19:31:24 +01:00
|
|
|
/// Handle incoming request with http actor.
|
|
|
|
fn handle(req: HttpRequest<Self::State>) -> Result<Reply>
|
|
|
|
where Self: Default, Self: Actor<Context=HttpContext<Self>>
|
|
|
|
{
|
|
|
|
Ok(HttpContext::new(req, Self::default()).into())
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
2017-11-29 19:31:24 +01:00
|
|
|
}*/
|
2017-10-15 23:17:41 +02:00
|
|
|
|
2017-10-16 00:59:26 +02:00
|
|
|
/// Fn() route handler
|
2017-10-15 23:17:41 +02:00
|
|
|
pub(crate)
|
|
|
|
struct FnHandler<S, R, F>
|
2017-11-27 06:18:38 +01:00
|
|
|
where F: Fn(HttpRequest<S>) -> R + 'static,
|
2017-11-29 18:17:00 +01:00
|
|
|
R: Into<Reply>,
|
2017-10-15 23:17:41 +02:00
|
|
|
S: 'static,
|
|
|
|
{
|
|
|
|
f: Box<F>,
|
|
|
|
s: PhantomData<S>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, R, F> FnHandler<S, R, F>
|
2017-11-27 06:18:38 +01:00
|
|
|
where F: Fn(HttpRequest<S>) -> R + 'static,
|
2017-11-29 18:17:00 +01:00
|
|
|
R: Into<Reply> + 'static,
|
2017-10-15 23:17:41 +02:00
|
|
|
S: 'static,
|
|
|
|
{
|
|
|
|
pub fn new(f: F) -> Self {
|
|
|
|
FnHandler{f: Box::new(f), s: PhantomData}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, R, F> RouteHandler<S> for FnHandler<S, R, F>
|
2017-11-27 06:18:38 +01:00
|
|
|
where F: Fn(HttpRequest<S>) -> R + 'static,
|
2017-11-29 18:17:00 +01:00
|
|
|
R: Into<Reply> + 'static,
|
2017-10-15 23:17:41 +02:00
|
|
|
S: 'static,
|
|
|
|
{
|
2017-11-29 04:49:17 +01:00
|
|
|
fn handle(&self, req: HttpRequest<S>, task: &mut Task) {
|
2017-11-29 18:17:00 +01:00
|
|
|
(self.f)(req).into().into(task)
|
2017-10-15 23:17:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Async route handler
|
|
|
|
pub(crate)
|
|
|
|
struct StreamHandler<S, R, F>
|
2017-11-27 06:18:38 +01:00
|
|
|
where F: Fn(HttpRequest<S>) -> R + 'static,
|
2017-11-16 07:06:28 +01:00
|
|
|
R: Stream<Item=Frame, Error=Error> + 'static,
|
2017-10-15 23:17:41 +02:00
|
|
|
S: 'static,
|
|
|
|
{
|
|
|
|
f: Box<F>,
|
|
|
|
s: PhantomData<S>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, R, F> StreamHandler<S, R, F>
|
2017-11-27 06:18:38 +01:00
|
|
|
where F: Fn(HttpRequest<S>) -> R + 'static,
|
2017-11-16 07:06:28 +01:00
|
|
|
R: Stream<Item=Frame, Error=Error> + 'static,
|
2017-10-15 23:17:41 +02:00
|
|
|
S: 'static,
|
|
|
|
{
|
|
|
|
pub fn new(f: F) -> Self {
|
|
|
|
StreamHandler{f: Box::new(f), s: PhantomData}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, R, F> RouteHandler<S> for StreamHandler<S, R, F>
|
2017-11-27 06:18:38 +01:00
|
|
|
where F: Fn(HttpRequest<S>) -> R + 'static,
|
2017-11-16 07:06:28 +01:00
|
|
|
R: Stream<Item=Frame, Error=Error> + 'static,
|
2017-10-15 23:17:41 +02:00
|
|
|
S: 'static,
|
|
|
|
{
|
2017-11-29 04:49:17 +01:00
|
|
|
fn handle(&self, req: HttpRequest<S>, task: &mut Task) {
|
|
|
|
task.stream((self.f)(req))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ReplyItem {
|
|
|
|
Message(HttpResponse),
|
|
|
|
Actor(Box<IoContext<Item=Frame, Error=Error>>),
|
|
|
|
Stream(Box<Stream<Item=Frame, Error=Error>>),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents response process.
|
|
|
|
pub struct Reply(ReplyItem);
|
|
|
|
|
|
|
|
impl Reply
|
|
|
|
{
|
|
|
|
/// Create actor response
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn actor<A, S>(ctx: HttpContext<A, S>) -> Reply
|
|
|
|
where A: Actor<Context=HttpContext<A, S>>, S: 'static
|
|
|
|
{
|
|
|
|
Reply(ReplyItem::Actor(Box::new(ctx)))
|
2017-11-29 04:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Create async response
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn stream<S>(stream: S) -> Reply
|
2017-11-29 04:49:17 +01:00
|
|
|
where S: Stream<Item=Frame, Error=Error> + 'static
|
|
|
|
{
|
2017-11-29 19:31:24 +01:00
|
|
|
Reply(ReplyItem::Stream(Box::new(stream)))
|
2017-11-29 04:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Send response
|
2017-11-29 19:31:24 +01:00
|
|
|
pub fn reply<R: Into<HttpResponse>>(response: R) -> Reply {
|
|
|
|
Reply(ReplyItem::Message(response.into()))
|
2017-11-29 04:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn into(self, task: &mut Task)
|
|
|
|
{
|
|
|
|
match self.0 {
|
|
|
|
ReplyItem::Message(msg) => {
|
|
|
|
task.reply(msg)
|
|
|
|
},
|
|
|
|
ReplyItem::Actor(ctx) => {
|
|
|
|
task.context(ctx)
|
|
|
|
}
|
|
|
|
ReplyItem::Stream(stream) => {
|
|
|
|
task.stream(stream)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:00 +01:00
|
|
|
impl<T: Into<HttpResponse>> From<T> for Reply
|
2017-11-29 04:49:17 +01:00
|
|
|
{
|
|
|
|
fn from(item: T) -> Self {
|
|
|
|
Reply(ReplyItem::Message(item.into()))
|
2017-10-15 23:17:41 +02:00
|
|
|
}
|
|
|
|
}
|
2017-11-29 19:31:24 +01:00
|
|
|
|
|
|
|
impl<E: Into<Error>> From<StdResult<Reply, E>> for Reply {
|
|
|
|
fn from(res: StdResult<Reply, E>) -> Self {
|
|
|
|
match res {
|
|
|
|
Ok(val) => val,
|
|
|
|
Err(err) => err.into().into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A: Actor<Context=HttpContext<A, S>>, S: 'static> From<HttpContext<A, S>> for Reply
|
|
|
|
{
|
|
|
|
fn from(item: HttpContext<A, S>) -> Self {
|
|
|
|
Reply(ReplyItem::Actor(Box::new(item)))
|
|
|
|
}
|
|
|
|
}
|