1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-11 04:32:28 +00:00
actix-web/src/application.rs

135 lines
3.6 KiB
Rust
Raw Normal View History

2017-10-07 04:48:14 +00:00
use std::rc::Rc;
use std::string::ToString;
use std::collections::HashMap;
use route_recognizer::Router;
use task::Task;
2017-10-09 03:16:48 +00:00
use route::RouteHandler;
2017-10-08 21:56:51 +00:00
use router::Handler;
use resource::Resource;
2017-10-09 03:16:48 +00:00
use payload::Payload;
use httprequest::HttpRequest;
2017-10-07 04:48:14 +00:00
/// Application
2017-10-08 21:56:51 +00:00
pub struct Application<S=()> {
2017-10-07 04:48:14 +00:00
state: S,
2017-10-08 21:56:51 +00:00
default: Resource<S>,
2017-10-10 06:07:32 +00:00
handlers: HashMap<String, Box<RouteHandler<S>>>,
2017-10-08 21:56:51 +00:00
resources: HashMap<String, Resource<S>>,
2017-10-07 04:48:14 +00:00
}
2017-10-08 21:56:51 +00:00
impl<S> Application<S> where S: 'static
2017-10-07 04:48:14 +00:00
{
2017-10-08 21:56:51 +00:00
pub(crate) fn prepare(self, prefix: String) -> Box<Handler> {
2017-10-07 04:48:14 +00:00
let mut router = Router::new();
2017-10-10 06:07:32 +00:00
let mut handlers = HashMap::new();
2017-10-07 04:48:14 +00:00
let prefix = if prefix.ends_with('/') {prefix } else { prefix + "/" };
for (path, handler) in self.resources {
let path = prefix.clone() + path.trim_left_matches('/');
router.add(path.as_str(), handler);
}
2017-10-10 06:07:32 +00:00
for (path, mut handler) in self.handlers {
let path = prefix.clone() + path.trim_left_matches('/');
handler.set_prefix(path.clone());
handlers.insert(path, handler);
}
2017-10-07 04:48:14 +00:00
Box::new(
InnerApplication {
state: Rc::new(self.state),
default: self.default,
2017-10-10 06:07:32 +00:00
handlers: handlers,
2017-10-07 04:48:14 +00:00
router: router }
)
}
}
2017-10-08 21:56:51 +00:00
impl Default for Application<()> {
2017-10-07 06:14:13 +00:00
2017-10-08 21:56:51 +00:00
/// Create default `Application` with no state
fn default() -> Self {
Application {
2017-10-07 04:48:14 +00:00
state: (),
2017-10-08 21:56:51 +00:00
default: Resource::default(),
2017-10-10 06:07:32 +00:00
handlers: HashMap::new(),
2017-10-07 04:48:14 +00:00
resources: HashMap::new(),
}
}
}
2017-10-08 21:56:51 +00:00
impl<S> Application<S> where S: 'static {
2017-10-07 04:48:14 +00:00
2017-10-07 06:14:13 +00:00
/// Create http application with specific state. State is shared with all
/// routes within same application and could be
/// accessed with `HttpContext::state()` method.
2017-10-08 21:56:51 +00:00
pub fn new(state: S) -> Application<S> {
Application {
2017-10-07 04:48:14 +00:00
state: state,
2017-10-08 21:56:51 +00:00
default: Resource::default(),
2017-10-10 06:07:32 +00:00
handlers: HashMap::new(),
2017-10-07 04:48:14 +00:00
resources: HashMap::new(),
}
}
2017-10-07 06:14:13 +00:00
/// Add resource by path.
2017-10-08 21:56:51 +00:00
pub fn add<P: ToString>(&mut self, path: P) -> &mut Resource<S>
2017-10-07 04:48:14 +00:00
{
let path = path.to_string();
// add resource
if !self.resources.contains_key(&path) {
2017-10-08 21:56:51 +00:00
self.resources.insert(path.clone(), Resource::default());
2017-10-07 04:48:14 +00:00
}
self.resources.get_mut(&path).unwrap()
}
2017-10-10 06:07:32 +00:00
/// Add path handler
pub fn add_handler<H, P>(&mut self, path: P, h: H)
where H: RouteHandler<S> + 'static, P: ToString
{
let path = path.to_string();
// add resource
if self.handlers.contains_key(&path) {
panic!("Handler already registered: {:?}", path);
}
self.handlers.insert(path, Box::new(h));
}
2017-10-08 21:56:51 +00:00
/// Default resource is used if no matches route could be found.
pub fn default_resource(&mut self) -> &mut Resource<S> {
2017-10-07 04:48:14 +00:00
&mut self.default
}
}
pub(crate)
struct InnerApplication<S> {
state: Rc<S>,
2017-10-08 21:56:51 +00:00
default: Resource<S>,
2017-10-10 06:07:32 +00:00
handlers: HashMap<String, Box<RouteHandler<S>>>,
2017-10-08 21:56:51 +00:00
router: Router<Resource<S>>,
2017-10-07 04:48:14 +00:00
}
2017-10-08 21:56:51 +00:00
impl<S: 'static> Handler for InnerApplication<S> {
2017-10-07 04:48:14 +00:00
2017-10-09 03:16:48 +00:00
fn handle(&self, req: HttpRequest, payload: Payload) -> Task {
2017-10-07 04:48:14 +00:00
if let Ok(h) = self.router.recognize(req.path()) {
h.handler.handle(req.with_params(h.params), payload, Rc::clone(&self.state))
} else {
2017-10-10 06:07:32 +00:00
for (prefix, handler) in &self.handlers {
if req.path().starts_with(prefix) {
return handler.handle(req, payload, Rc::clone(&self.state))
}
}
2017-10-07 04:48:14 +00:00
self.default.handle(req, payload, Rc::clone(&self.state))
}
}
}