Rocket/lib/src/router/route.rs

132 lines
3.6 KiB
Rust
Raw Normal View History

use std::fmt;
use std::convert::From;
2016-10-04 00:25:27 +00:00
use super::Collider; // :D
use term_painter::ToStyle;
use term_painter::Color::*;
use codegen::StaticRouteInfo;
use handler::Handler;
use request::Request;
use http::{Method, ContentType};
2016-10-04 00:25:27 +00:00
use http::uri::{URI, URIBuf};
pub struct Route {
pub method: Method,
pub handler: Handler,
pub path: URIBuf,
pub rank: isize, // Lower ranks have higher priorities.
pub content_type: ContentType,
}
fn default_rank(path: &str) -> isize {
// The rank for a given path is 0 if it is a static route (it doesn't
// contain any dynamic <segmants>) or 1 if it is dynamic.
path.contains('<') as isize
}
impl Route {
pub fn ranked<S>(rank: isize, m: Method, path: S, handler: Handler) -> Route
where S: AsRef<str>
{
2016-08-23 03:38:39 +00:00
Route {
method: m,
path: URIBuf::from(path.as_ref()),
handler: handler,
rank: rank,
content_type: ContentType::any(),
}
}
pub fn new<S>(m: Method, path: S, handler: Handler) -> Route
where S: AsRef<str>
{
2016-04-02 08:46:41 +00:00
Route {
method: m,
handler: handler,
rank: default_rank(path.as_ref()),
path: URIBuf::from(path.as_ref()),
content_type: ContentType::any(),
}
}
pub fn set_path<S>(&mut self, path: S)
where S: AsRef<str>
{
self.path = URIBuf::from(path.as_ref());
}
// FIXME: Decide whether a component has to be fully variable or not. That
// is, whether you can have: /a<a>b/ or even /<a>:<b>/
// TODO: Don't return a Vec...take in an &mut [&'a str] (no alloc!)
pub fn get_params<'a>(&self, uri: URI<'a>) -> Vec<&'a str> {
2016-09-08 07:02:17 +00:00
let route_segs = self.path.segments();
let uri_segs = uri.segments();
let mut result = Vec::with_capacity(self.path.segment_count());
2016-09-08 07:02:17 +00:00
for (route_seg, uri_seg) in route_segs.zip(uri_segs) {
if route_seg.ends_with("..>") {
// FIXME: Here.
2016-09-08 07:02:17 +00:00
break;
} else if route_seg.ends_with('>') {
// FIXME: Here.
result.push(uri_seg);
}
}
result
}
}
impl fmt::Display for Route {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{} {}", Green.paint(&self.method), Blue.paint(&self.path))?;
if self.rank > 1 {
write!(f, " [{}]", White.paint(&self.rank))?;
}
if !self.content_type.is_any() {
write!(f, " {}", Yellow.paint(&self.content_type))
} else {
Ok(())
}
}
}
2016-09-08 07:02:17 +00:00
impl fmt::Debug for Route {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
<Route as fmt::Display>::fmt(self, f)
}
}
2016-04-03 11:25:37 +00:00
impl<'a> From<&'a StaticRouteInfo> for Route {
fn from(info: &'a StaticRouteInfo) -> Route {
let mut route = Route::new(info.method, info.path, info.handler);
2016-09-04 11:06:28 +00:00
route.content_type = info.format.clone().unwrap_or(ContentType::any());
if let Some(rank) = info.rank {
route.rank = rank;
}
route
2016-04-03 11:25:37 +00:00
}
}
impl Collider for Route {
fn collides_with(&self, b: &Route) -> bool {
2016-09-08 07:02:17 +00:00
self.method == b.method
&& self.rank == b.rank
&& self.content_type.collides_with(&b.content_type)
2016-09-08 07:02:17 +00:00
&& self.path.as_uri().collides_with(&b.path.as_uri())
}
}
impl<'r> Collider<Request<'r>> for Route {
fn collides_with(&self, req: &Request) -> bool {
self.method == req.method
2016-09-08 07:02:17 +00:00
&& req.uri.as_uri().collides_with(&self.path.as_uri())
&& req.accepts().collides_with(&self.content_type)
}
}