mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
648 lines
19 KiB
Rust
648 lines
19 KiB
Rust
use std::cell::RefCell;
|
|
use std::marker::PhantomData;
|
|
use std::rc::Rc;
|
|
|
|
use actix_http::body::{Body, MessageBody};
|
|
use actix_http::{Extensions, PayloadStream, Request, Response};
|
|
use actix_router::{Path, ResourceDef, ResourceInfo, Router, Url};
|
|
use actix_service::{
|
|
AndThenNewService, ApplyNewService, IntoNewService, IntoNewTransform, NewService,
|
|
NewTransform, Service,
|
|
};
|
|
use futures::future::{ok, Either, FutureResult};
|
|
use futures::{Async, Future, IntoFuture, Poll};
|
|
|
|
use crate::helpers::{
|
|
BoxedHttpNewService, BoxedHttpService, DefaultNewService, HttpDefaultNewService,
|
|
};
|
|
use crate::resource::Resource;
|
|
use crate::service::{ServiceRequest, ServiceResponse};
|
|
use crate::state::{State, StateFactory, StateFactoryResult};
|
|
|
|
type BoxedResponse = Box<Future<Item = ServiceResponse, Error = ()>>;
|
|
|
|
pub trait HttpServiceFactory<Request> {
|
|
type Factory: NewService<Request = Request>;
|
|
|
|
fn rdef(&self) -> &ResourceDef;
|
|
|
|
fn create(self) -> Self::Factory;
|
|
}
|
|
|
|
/// Application builder
|
|
pub struct App<P, B, T> {
|
|
services: Vec<(
|
|
ResourceDef,
|
|
BoxedHttpNewService<ServiceRequest<P>, ServiceResponse>,
|
|
)>,
|
|
default: Option<Rc<HttpDefaultNewService<ServiceRequest<P>, ServiceResponse>>>,
|
|
defaults: Vec<
|
|
Rc<
|
|
RefCell<
|
|
Option<Rc<HttpDefaultNewService<ServiceRequest<P>, ServiceResponse>>>,
|
|
>,
|
|
>,
|
|
>,
|
|
endpoint: T,
|
|
factory_ref: Rc<RefCell<Option<AppFactory<P>>>>,
|
|
extensions: Extensions,
|
|
state: Vec<Box<StateFactory>>,
|
|
_t: PhantomData<(P, B)>,
|
|
}
|
|
|
|
impl App<PayloadStream, Body, AppEntry<PayloadStream>> {
|
|
/// Create application with empty state. Application can
|
|
/// be configured with a builder-like pattern.
|
|
pub fn new() -> Self {
|
|
App::create()
|
|
}
|
|
}
|
|
|
|
impl Default for App<PayloadStream, Body, AppEntry<PayloadStream>> {
|
|
fn default() -> Self {
|
|
App::new()
|
|
}
|
|
}
|
|
|
|
impl App<PayloadStream, Body, AppEntry<PayloadStream>> {
|
|
/// Create application with specified state. Application can be
|
|
/// configured with a builder-like pattern.
|
|
///
|
|
/// State is shared with all resources within same application and
|
|
/// could be accessed with `HttpRequest::state()` method.
|
|
///
|
|
/// **Note**: http server accepts an application factory rather than
|
|
/// an application instance. Http server constructs an application
|
|
/// instance for each thread, thus application state must be constructed
|
|
/// multiple times. If you want to share state between different
|
|
/// threads, a shared object should be used, e.g. `Arc`. Application
|
|
/// state does not need to be `Send` or `Sync`.
|
|
pub fn state<S: 'static>(mut self, state: S) -> Self {
|
|
self.state.push(Box::new(State::new(state)));
|
|
self
|
|
}
|
|
|
|
/// Set application state. This function is
|
|
/// similar to `.state()` but it accepts state factory. State get
|
|
/// constructed asynchronously during application initialization.
|
|
pub fn state_factory<S, F, Out>(mut self, state: F) -> Self
|
|
where
|
|
F: Fn() -> Out + 'static,
|
|
Out: IntoFuture + 'static,
|
|
Out::Error: std::fmt::Debug,
|
|
{
|
|
self.state.push(Box::new(State::new(state)));
|
|
self
|
|
}
|
|
|
|
fn create() -> Self {
|
|
let fref = Rc::new(RefCell::new(None));
|
|
App {
|
|
services: Vec::new(),
|
|
default: None,
|
|
defaults: Vec::new(),
|
|
endpoint: AppEntry::new(fref.clone()),
|
|
factory_ref: fref,
|
|
extensions: Extensions::new(),
|
|
state: Vec::new(),
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
// /// Application router builder
|
|
// pub struct AppRouter<S, T, P> {
|
|
// services: Vec<(
|
|
// ResourceDef,
|
|
// BoxedHttpNewService<ServiceRequest<P>, Response>,
|
|
// )>,
|
|
// default: Option<Rc<HttpDefaultNewService<ServiceRequest<P>, Response>>>,
|
|
// defaults:
|
|
// Vec<Rc<RefCell<Option<Rc<HttpDefaultNewService<ServiceRequest<P>, Response>>>>>>,
|
|
// state: AppState<S>,
|
|
// endpoint: T,
|
|
// factory_ref: Rc<RefCell<Option<AppFactory<P>>>>,
|
|
// extensions: Extensions,
|
|
// _t: PhantomData<P>,
|
|
// }
|
|
|
|
impl<P, B, T> App<P, B, T>
|
|
where
|
|
P: 'static,
|
|
B: MessageBody,
|
|
T: NewService<
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse<B>,
|
|
Error = (),
|
|
InitError = (),
|
|
>,
|
|
{
|
|
/// Configure resource for a specific path.
|
|
///
|
|
/// Resources may have variable path segments. For example, a
|
|
/// resource with the path `/a/{name}/c` would match all incoming
|
|
/// requests with paths such as `/a/b/c`, `/a/1/c`, or `/a/etc/c`.
|
|
///
|
|
/// A variable segment is specified in the form `{identifier}`,
|
|
/// where the identifier can be used later in a request handler to
|
|
/// access the matched value for that segment. This is done by
|
|
/// looking up the identifier in the `Params` object returned by
|
|
/// `HttpRequest.match_info()` method.
|
|
///
|
|
/// By default, each segment matches the regular expression `[^{}/]+`.
|
|
///
|
|
/// You can also specify a custom regex in the form `{identifier:regex}`:
|
|
///
|
|
/// For instance, to route `GET`-requests on any route matching
|
|
/// `/users/{userid}/{friend}` and store `userid` and `friend` in
|
|
/// the exposed `Params` object:
|
|
///
|
|
/// ```rust,ignore
|
|
/// # extern crate actix_web;
|
|
/// use actix_web::{http, App, HttpResponse};
|
|
///
|
|
/// fn main() {
|
|
/// let app = App::new().resource("/users/{userid}/{friend}", |r| {
|
|
/// r.get(|r| r.to(|_| HttpResponse::Ok()));
|
|
/// r.head(|r| r.to(|_| HttpResponse::MethodNotAllowed()))
|
|
/// });
|
|
/// }
|
|
/// ```
|
|
pub fn resource<F, U>(mut self, path: &str, f: F) -> Self
|
|
where
|
|
F: FnOnce(Resource<P>) -> Resource<P, U>,
|
|
U: NewService<
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse,
|
|
Error = (),
|
|
InitError = (),
|
|
> + 'static,
|
|
{
|
|
let rdef = ResourceDef::new(path);
|
|
let resource = f(Resource::new());
|
|
self.defaults.push(resource.get_default());
|
|
self.services.push((
|
|
rdef,
|
|
Box::new(HttpNewService::new(resource.into_new_service())),
|
|
));
|
|
self
|
|
}
|
|
|
|
/// Default resource to be used if no matching route could be found.
|
|
///
|
|
/// Default resource works with resources only and does not work with
|
|
/// custom services.
|
|
pub fn default_resource<F, R, U>(mut self, f: F) -> Self
|
|
where
|
|
F: FnOnce(Resource<P>) -> R,
|
|
R: IntoNewService<U>,
|
|
U: NewService<
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse,
|
|
Error = (),
|
|
> + 'static,
|
|
{
|
|
// create and configure default resource
|
|
self.default = Some(Rc::new(Box::new(DefaultNewService::new(
|
|
f(Resource::new()).into_new_service(),
|
|
))));
|
|
|
|
self
|
|
}
|
|
|
|
/// Register resource handler service.
|
|
pub fn service<R, F, U>(mut self, rdef: R, factory: F) -> Self
|
|
where
|
|
R: Into<ResourceDef>,
|
|
F: IntoNewService<U>,
|
|
U: NewService<
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse,
|
|
Error = (),
|
|
> + 'static,
|
|
{
|
|
self.services.push((
|
|
rdef.into(),
|
|
Box::new(HttpNewService::new(factory.into_new_service())),
|
|
));
|
|
self
|
|
}
|
|
|
|
/// Register a middleware.
|
|
pub fn middleware<M, B1, F>(
|
|
self,
|
|
mw: F,
|
|
) -> App<
|
|
P,
|
|
B1,
|
|
impl NewService<
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse<B1>,
|
|
Error = (),
|
|
InitError = (),
|
|
>,
|
|
>
|
|
where
|
|
M: NewTransform<
|
|
T::Service,
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse<B1>,
|
|
Error = (),
|
|
InitError = (),
|
|
>,
|
|
B1: MessageBody,
|
|
F: IntoNewTransform<M, T::Service>,
|
|
{
|
|
let endpoint = ApplyNewService::new(mw, self.endpoint);
|
|
App {
|
|
endpoint,
|
|
state: self.state,
|
|
services: self.services,
|
|
default: self.default,
|
|
defaults: Vec::new(),
|
|
factory_ref: self.factory_ref,
|
|
extensions: Extensions::new(),
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
|
|
/// Register an external resource.
|
|
///
|
|
/// External resources are useful for URL generation purposes only
|
|
/// and are never considered for matching at request time. Calls to
|
|
/// `HttpRequest::url_for()` will work as expected.
|
|
///
|
|
/// ```rust,ignore
|
|
/// # extern crate actix_web;
|
|
/// use actix_web::{App, HttpRequest, HttpResponse, Result};
|
|
///
|
|
/// fn index(req: &HttpRequest) -> Result<HttpResponse> {
|
|
/// let url = req.url_for("youtube", &["oHg5SJYRHA0"])?;
|
|
/// assert_eq!(url.as_str(), "https://youtube.com/watch/oHg5SJYRHA0");
|
|
/// Ok(HttpResponse::Ok().into())
|
|
/// }
|
|
///
|
|
/// fn main() {
|
|
/// let app = App::new()
|
|
/// .resource("/index.html", |r| r.get().f(index))
|
|
/// .external_resource("youtube", "https://youtube.com/watch/{video_id}")
|
|
/// .finish();
|
|
/// }
|
|
/// ```
|
|
pub fn external_resource<N, U>(self, _name: N, _url: U) -> Self
|
|
where
|
|
N: AsRef<str>,
|
|
U: AsRef<str>,
|
|
{
|
|
// self.parts
|
|
// .as_mut()
|
|
// .expect("Use after finish")
|
|
// .router
|
|
// .register_external(name.as_ref(), ResourceDef::external(url.as_ref()));
|
|
self
|
|
}
|
|
}
|
|
|
|
impl<T, P: 'static, B: MessageBody>
|
|
IntoNewService<AndThenNewService<AppStateFactory<P>, T, ()>> for App<P, B, T>
|
|
where
|
|
T: NewService<
|
|
Request = ServiceRequest<P>,
|
|
Response = ServiceResponse<B>,
|
|
Error = (),
|
|
InitError = (),
|
|
>,
|
|
{
|
|
fn into_new_service(self) -> AndThenNewService<AppStateFactory<P>, T, ()> {
|
|
// update resource default service
|
|
if self.default.is_some() {
|
|
for default in &self.defaults {
|
|
if default.borrow_mut().is_none() {
|
|
*default.borrow_mut() = self.default.clone();
|
|
}
|
|
}
|
|
}
|
|
|
|
// set factory
|
|
*self.factory_ref.borrow_mut() = Some(AppFactory {
|
|
services: Rc::new(self.services),
|
|
});
|
|
|
|
AppStateFactory {
|
|
state: self.state,
|
|
extensions: Rc::new(RefCell::new(Rc::new(self.extensions))),
|
|
_t: PhantomData,
|
|
}
|
|
.and_then(self.endpoint)
|
|
}
|
|
}
|
|
|
|
/// Service factory to convert `Request` to a `ServiceRequest<S>`
|
|
pub struct AppStateFactory<P> {
|
|
state: Vec<Box<StateFactory>>,
|
|
extensions: Rc<RefCell<Rc<Extensions>>>,
|
|
_t: PhantomData<P>,
|
|
}
|
|
|
|
impl<P: 'static> NewService for AppStateFactory<P> {
|
|
type Request = Request<P>;
|
|
type Response = ServiceRequest<P>;
|
|
type Error = ();
|
|
type InitError = ();
|
|
type Service = AppStateService<P>;
|
|
type Future = AppStateFactoryResult<P>;
|
|
|
|
fn new_service(&self, _: &()) -> Self::Future {
|
|
AppStateFactoryResult {
|
|
state: self.state.iter().map(|s| s.construct()).collect(),
|
|
extensions: self.extensions.clone(),
|
|
_t: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[doc(hidden)]
|
|
pub struct AppStateFactoryResult<P> {
|
|
state: Vec<Box<StateFactoryResult>>,
|
|
extensions: Rc<RefCell<Rc<Extensions>>>,
|
|
_t: PhantomData<P>,
|
|
}
|
|
|
|
impl<P> Future for AppStateFactoryResult<P> {
|
|
type Item = AppStateService<P>;
|
|
type Error = ();
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
if let Some(extensions) = Rc::get_mut(&mut *self.extensions.borrow_mut()) {
|
|
let mut idx = 0;
|
|
while idx < self.state.len() {
|
|
if let Async::Ready(_) = self.state[idx].poll_result(extensions)? {
|
|
self.state.remove(idx);
|
|
} else {
|
|
idx += 1;
|
|
}
|
|
}
|
|
if !self.state.is_empty() {
|
|
return Ok(Async::NotReady);
|
|
}
|
|
} else {
|
|
log::warn!("Multiple copies of app extensions exists");
|
|
}
|
|
|
|
Ok(Async::Ready(AppStateService {
|
|
extensions: self.extensions.borrow().clone(),
|
|
_t: PhantomData,
|
|
}))
|
|
}
|
|
}
|
|
|
|
/// Service to convert `Request` to a `ServiceRequest<S>`
|
|
pub struct AppStateService<P> {
|
|
extensions: Rc<Extensions>,
|
|
_t: PhantomData<P>,
|
|
}
|
|
|
|
impl<P> Service for AppStateService<P> {
|
|
type Request = Request<P>;
|
|
type Response = ServiceRequest<P>;
|
|
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: Request<P>) -> Self::Future {
|
|
ok(ServiceRequest::new(
|
|
Path::new(Url::new(req.uri().clone())),
|
|
req,
|
|
self.extensions.clone(),
|
|
))
|
|
}
|
|
}
|
|
|
|
pub struct AppFactory<P> {
|
|
services: Rc<
|
|
Vec<(
|
|
ResourceDef,
|
|
BoxedHttpNewService<ServiceRequest<P>, ServiceResponse>,
|
|
)>,
|
|
>,
|
|
}
|
|
|
|
impl<P> NewService for AppFactory<P> {
|
|
type Request = ServiceRequest<P>;
|
|
type Response = ServiceResponse;
|
|
type Error = ();
|
|
type InitError = ();
|
|
type Service = AppService<P>;
|
|
type Future = CreateAppService<P>;
|
|
|
|
fn new_service(&self, _: &()) -> Self::Future {
|
|
CreateAppService {
|
|
fut: self
|
|
.services
|
|
.iter()
|
|
.map(|(path, service)| {
|
|
CreateAppServiceItem::Future(
|
|
Some(path.clone()),
|
|
service.new_service(&()),
|
|
)
|
|
})
|
|
.collect(),
|
|
}
|
|
}
|
|
}
|
|
|
|
type HttpServiceFut<P> =
|
|
Box<Future<Item = BoxedHttpService<ServiceRequest<P>, ServiceResponse>, Error = ()>>;
|
|
|
|
/// Create app service
|
|
#[doc(hidden)]
|
|
pub struct CreateAppService<P> {
|
|
fut: Vec<CreateAppServiceItem<P>>,
|
|
}
|
|
|
|
enum CreateAppServiceItem<P> {
|
|
Future(Option<ResourceDef>, HttpServiceFut<P>),
|
|
Service(
|
|
ResourceDef,
|
|
BoxedHttpService<ServiceRequest<P>, ServiceResponse>,
|
|
),
|
|
}
|
|
|
|
impl<P> Future for CreateAppService<P> {
|
|
type Item = AppService<P>;
|
|
type Error = ();
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
let mut done = true;
|
|
|
|
// poll http services
|
|
for item in &mut self.fut {
|
|
let res = match item {
|
|
CreateAppServiceItem::Future(ref mut path, ref mut fut) => {
|
|
match fut.poll()? {
|
|
Async::Ready(service) => Some((path.take().unwrap(), service)),
|
|
Async::NotReady => {
|
|
done = false;
|
|
None
|
|
}
|
|
}
|
|
}
|
|
CreateAppServiceItem::Service(_, _) => continue,
|
|
};
|
|
|
|
if let Some((path, service)) = res {
|
|
*item = CreateAppServiceItem::Service(path, service);
|
|
}
|
|
}
|
|
|
|
if done {
|
|
let router = self
|
|
.fut
|
|
.drain(..)
|
|
.fold(Router::build(), |mut router, item| {
|
|
match item {
|
|
CreateAppServiceItem::Service(path, service) => {
|
|
router.rdef(path, service)
|
|
}
|
|
CreateAppServiceItem::Future(_, _) => unreachable!(),
|
|
}
|
|
router
|
|
});
|
|
Ok(Async::Ready(AppService {
|
|
router: router.finish(),
|
|
ready: None,
|
|
}))
|
|
} else {
|
|
Ok(Async::NotReady)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct AppService<P> {
|
|
router: Router<BoxedHttpService<ServiceRequest<P>, ServiceResponse>>,
|
|
ready: Option<(ServiceRequest<P>, ResourceInfo)>,
|
|
}
|
|
|
|
impl<P> Service for AppService<P> {
|
|
type Request = ServiceRequest<P>;
|
|
type Response = ServiceResponse;
|
|
type Error = ();
|
|
type Future = Either<BoxedResponse, FutureResult<Self::Response, Self::Error>>;
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
if self.ready.is_none() {
|
|
Ok(Async::Ready(()))
|
|
} else {
|
|
Ok(Async::NotReady)
|
|
}
|
|
}
|
|
|
|
fn call(&mut self, mut req: ServiceRequest<P>) -> Self::Future {
|
|
if let Some((srv, _info)) = self.router.recognize_mut(req.match_info_mut()) {
|
|
Either::A(srv.call(req))
|
|
} else {
|
|
let req = req.into_request();
|
|
Either::B(ok(ServiceResponse::new(req, Response::NotFound().finish())))
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct AppServiceResponse(Box<Future<Item = ServiceResponse, Error = ()>>);
|
|
|
|
impl Future for AppServiceResponse {
|
|
type Item = ServiceResponse;
|
|
type Error = ();
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
self.0.poll().map_err(|_| panic!())
|
|
}
|
|
}
|
|
|
|
struct HttpNewService<P: 'static, T: NewService<Request = ServiceRequest<P>>>(T);
|
|
|
|
impl<P, T> HttpNewService<P, T>
|
|
where
|
|
T: NewService<Request = ServiceRequest<P>, Response = ServiceResponse, Error = ()>,
|
|
T::Future: 'static,
|
|
<T::Service as Service>::Future: 'static,
|
|
{
|
|
pub fn new(service: T) -> Self {
|
|
HttpNewService(service)
|
|
}
|
|
}
|
|
|
|
impl<P: 'static, T> NewService for HttpNewService<P, T>
|
|
where
|
|
T: NewService<Request = ServiceRequest<P>, Response = ServiceResponse, Error = ()>,
|
|
T::Future: 'static,
|
|
T::Service: 'static,
|
|
<T::Service as Service>::Future: 'static,
|
|
{
|
|
type Request = ServiceRequest<P>;
|
|
type Response = ServiceResponse;
|
|
type Error = ();
|
|
type InitError = ();
|
|
type Service = BoxedHttpService<ServiceRequest<P>, Self::Response>;
|
|
type Future = Box<Future<Item = Self::Service, Error = Self::InitError>>;
|
|
|
|
fn new_service(&self, _: &()) -> Self::Future {
|
|
Box::new(self.0.new_service(&()).map_err(|_| ()).and_then(|service| {
|
|
let service: BoxedHttpService<_, _> = Box::new(HttpServiceWrapper {
|
|
service,
|
|
_t: PhantomData,
|
|
});
|
|
Ok(service)
|
|
}))
|
|
}
|
|
}
|
|
|
|
struct HttpServiceWrapper<T: Service, P> {
|
|
service: T,
|
|
_t: PhantomData<(P,)>,
|
|
}
|
|
|
|
impl<T, P> Service for HttpServiceWrapper<T, P>
|
|
where
|
|
T::Future: 'static,
|
|
T: Service<Request = ServiceRequest<P>, Response = ServiceResponse, Error = ()>,
|
|
{
|
|
type Request = ServiceRequest<P>;
|
|
type Response = ServiceResponse;
|
|
type Error = ();
|
|
type Future = BoxedResponse;
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
|
self.service.poll_ready().map_err(|_| ())
|
|
}
|
|
|
|
fn call(&mut self, req: ServiceRequest<P>) -> Self::Future {
|
|
Box::new(self.service.call(req))
|
|
}
|
|
}
|
|
|
|
#[doc(hidden)]
|
|
pub struct AppEntry<P> {
|
|
factory: Rc<RefCell<Option<AppFactory<P>>>>,
|
|
}
|
|
|
|
impl<P> AppEntry<P> {
|
|
fn new(factory: Rc<RefCell<Option<AppFactory<P>>>>) -> Self {
|
|
AppEntry { factory }
|
|
}
|
|
}
|
|
|
|
impl<P> NewService for AppEntry<P> {
|
|
type Request = ServiceRequest<P>;
|
|
type Response = ServiceResponse;
|
|
type Error = ();
|
|
type InitError = ();
|
|
type Service = AppService<P>;
|
|
type Future = CreateAppService<P>;
|
|
|
|
fn new_service(&self, _: &()) -> Self::Future {
|
|
self.factory.borrow_mut().as_mut().unwrap().new_service(&())
|
|
}
|
|
}
|