2022-01-05 05:34:13 +01:00
|
|
|
use crate::{IntoPatterns, Resource, ResourceDef};
|
2021-08-06 23:42:31 +02:00
|
|
|
|
2022-07-23 17:26:48 +02:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
2021-08-06 23:42:31 +02:00
|
|
|
pub struct ResourceId(pub u16);
|
|
|
|
|
|
|
|
/// Resource router.
|
2022-01-31 23:12:48 +01:00
|
|
|
///
|
|
|
|
/// It matches a [routing resource](Resource) to an ordered list of _routes_. Each is defined by a
|
|
|
|
/// single [`ResourceDef`] and contains two types of custom data:
|
|
|
|
/// 1. The route _value_, of the generic type `T`.
|
|
|
|
/// 1. Some _context_ data, of the generic type `U`, which is only provided to the check function in
|
|
|
|
/// [`recognize_fn`](Self::recognize_fn). This parameter defaults to `()` and can be omitted if
|
|
|
|
/// not required.
|
2021-08-06 23:42:31 +02:00
|
|
|
pub struct Router<T, U = ()> {
|
2022-01-31 23:12:48 +01:00
|
|
|
routes: Vec<(ResourceDef, T, U)>,
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, U> Router<T, U> {
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Constructs new `RouterBuilder` with empty route list.
|
2021-08-06 23:42:31 +02:00
|
|
|
pub fn build() -> RouterBuilder<T, U> {
|
2022-01-31 23:12:48 +01:00
|
|
|
RouterBuilder { routes: Vec::new() }
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Finds the value in the router that matches a given [routing resource](Resource).
|
|
|
|
///
|
|
|
|
/// The match result, including the captured dynamic segments, in the `resource`.
|
2022-01-05 05:34:13 +01:00
|
|
|
pub fn recognize<R>(&self, resource: &mut R) -> Option<(&T, ResourceId)>
|
2021-08-06 23:42:31 +02:00
|
|
|
where
|
2022-01-05 05:34:13 +01:00
|
|
|
R: Resource,
|
2021-08-06 23:42:31 +02:00
|
|
|
{
|
2022-01-31 23:12:48 +01:00
|
|
|
self.recognize_fn(resource, |_, _| true)
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Same as [`recognize`](Self::recognize) but returns a mutable reference to the matched value.
|
2022-01-05 05:34:13 +01:00
|
|
|
pub fn recognize_mut<R>(&mut self, resource: &mut R) -> Option<(&mut T, ResourceId)>
|
2021-08-06 23:42:31 +02:00
|
|
|
where
|
2022-01-05 05:34:13 +01:00
|
|
|
R: Resource,
|
2021-08-06 23:42:31 +02:00
|
|
|
{
|
2022-01-31 23:12:48 +01:00
|
|
|
self.recognize_mut_fn(resource, |_, _| true)
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Finds the value in the router that matches a given [routing resource](Resource) and passes
|
|
|
|
/// an additional predicate check using context data.
|
|
|
|
///
|
|
|
|
/// Similar to [`recognize`](Self::recognize). However, before accepting the route as matched,
|
|
|
|
/// the `check` closure is executed, passing the resource and each route's context data. If the
|
|
|
|
/// closure returns true then the match result is stored into `resource` and a reference to
|
|
|
|
/// the matched _value_ is returned.
|
|
|
|
pub fn recognize_fn<R, F>(&self, resource: &mut R, mut check: F) -> Option<(&T, ResourceId)>
|
2021-08-06 23:42:31 +02:00
|
|
|
where
|
2022-01-05 05:34:13 +01:00
|
|
|
R: Resource,
|
2022-01-31 23:12:48 +01:00
|
|
|
F: FnMut(&R, &U) -> bool,
|
2021-08-06 23:42:31 +02:00
|
|
|
{
|
2022-01-31 23:12:48 +01:00
|
|
|
for (rdef, val, ctx) in self.routes.iter() {
|
|
|
|
if rdef.capture_match_info_fn(resource, |res| check(res, ctx)) {
|
|
|
|
return Some((val, ResourceId(rdef.id())));
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Same as [`recognize_fn`](Self::recognize_fn) but returns a mutable reference to the matched
|
|
|
|
/// value.
|
2022-01-05 05:34:13 +01:00
|
|
|
pub fn recognize_mut_fn<R, F>(
|
2021-08-06 23:42:31 +02:00
|
|
|
&mut self,
|
|
|
|
resource: &mut R,
|
2022-01-31 23:12:48 +01:00
|
|
|
mut check: F,
|
2021-08-06 23:42:31 +02:00
|
|
|
) -> Option<(&mut T, ResourceId)>
|
|
|
|
where
|
2022-01-05 05:34:13 +01:00
|
|
|
R: Resource,
|
2022-01-31 23:12:48 +01:00
|
|
|
F: FnMut(&R, &U) -> bool,
|
2021-08-06 23:42:31 +02:00
|
|
|
{
|
2022-01-31 23:12:48 +01:00
|
|
|
for (rdef, val, ctx) in self.routes.iter_mut() {
|
|
|
|
if rdef.capture_match_info_fn(resource, |res| check(res, ctx)) {
|
|
|
|
return Some((val, ResourceId(rdef.id())));
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Builder for an ordered [routing](Router) list.
|
2021-08-06 23:42:31 +02:00
|
|
|
pub struct RouterBuilder<T, U = ()> {
|
2022-01-31 23:12:48 +01:00
|
|
|
routes: Vec<(ResourceDef, T, U)>,
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, U> RouterBuilder<T, U> {
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Adds a new route to the end of the routing list.
|
|
|
|
///
|
|
|
|
/// Returns mutable references to elements of the new route.
|
|
|
|
pub fn push(
|
2021-08-06 23:42:31 +02:00
|
|
|
&mut self,
|
2022-01-31 23:12:48 +01:00
|
|
|
rdef: ResourceDef,
|
|
|
|
val: T,
|
|
|
|
ctx: U,
|
|
|
|
) -> (&mut ResourceDef, &mut T, &mut U) {
|
|
|
|
self.routes.push((rdef, val, ctx));
|
|
|
|
self.routes
|
|
|
|
.last_mut()
|
|
|
|
.map(|(rdef, val, ctx)| (rdef, val, ctx))
|
|
|
|
.unwrap()
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Finish configuration and create router instance.
|
|
|
|
pub fn finish(self) -> Router<T, U> {
|
|
|
|
Router {
|
|
|
|
routes: self.routes,
|
|
|
|
}
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
2022-01-31 23:12:48 +01:00
|
|
|
}
|
2021-08-06 23:42:31 +02:00
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Convenience methods provided when context data impls [`Default`]
|
|
|
|
impl<T, U> RouterBuilder<T, U>
|
|
|
|
where
|
|
|
|
U: Default,
|
|
|
|
{
|
|
|
|
/// Registers resource for specified path.
|
|
|
|
pub fn path(
|
|
|
|
&mut self,
|
|
|
|
path: impl IntoPatterns,
|
|
|
|
val: T,
|
|
|
|
) -> (&mut ResourceDef, &mut T, &mut U) {
|
|
|
|
self.push(ResourceDef::new(path), val, U::default())
|
|
|
|
}
|
2021-08-06 23:42:31 +02:00
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Registers resource for specified path prefix.
|
|
|
|
pub fn prefix(
|
|
|
|
&mut self,
|
|
|
|
prefix: impl IntoPatterns,
|
|
|
|
val: T,
|
|
|
|
) -> (&mut ResourceDef, &mut T, &mut U) {
|
|
|
|
self.push(ResourceDef::prefix(prefix), val, U::default())
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
|
2022-01-31 23:12:48 +01:00
|
|
|
/// Registers resource for [`ResourceDef`].
|
|
|
|
pub fn rdef(&mut self, rdef: ResourceDef, val: T) -> (&mut ResourceDef, &mut T, &mut U) {
|
|
|
|
self.push(rdef, val, U::default())
|
2021-08-06 23:42:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use crate::path::Path;
|
|
|
|
use crate::router::{ResourceId, Router};
|
|
|
|
|
|
|
|
#[allow(clippy::cognitive_complexity)]
|
|
|
|
#[test]
|
|
|
|
fn test_recognizer_1() {
|
|
|
|
let mut router = Router::<usize>::build();
|
|
|
|
router.path("/name", 10).0.set_id(0);
|
|
|
|
router.path("/name/{val}", 11).0.set_id(1);
|
|
|
|
router.path("/name/{val}/index.html", 12).0.set_id(2);
|
|
|
|
router.path("/file/{file}.{ext}", 13).0.set_id(3);
|
|
|
|
router.path("/v{val}/{val2}/index.html", 14).0.set_id(4);
|
|
|
|
router.path("/v/{tail:.*}", 15).0.set_id(5);
|
|
|
|
router.path("/test2/{test}.html", 16).0.set_id(6);
|
|
|
|
router.path("/{test}/index.html", 17).0.set_id(7);
|
|
|
|
let mut router = router.finish();
|
|
|
|
|
|
|
|
let mut path = Path::new("/unknown");
|
|
|
|
assert!(router.recognize_mut(&mut path).is_none());
|
|
|
|
|
|
|
|
let mut path = Path::new("/name");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 10);
|
|
|
|
assert_eq!(info, ResourceId(0));
|
|
|
|
assert!(path.is_empty());
|
|
|
|
|
|
|
|
let mut path = Path::new("/name/value");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 11);
|
|
|
|
assert_eq!(info, ResourceId(1));
|
|
|
|
assert_eq!(path.get("val").unwrap(), "value");
|
|
|
|
assert_eq!(&path["val"], "value");
|
|
|
|
|
|
|
|
let mut path = Path::new("/name/value2/index.html");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 12);
|
|
|
|
assert_eq!(info, ResourceId(2));
|
|
|
|
assert_eq!(path.get("val").unwrap(), "value2");
|
|
|
|
|
|
|
|
let mut path = Path::new("/file/file.gz");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 13);
|
|
|
|
assert_eq!(info, ResourceId(3));
|
|
|
|
assert_eq!(path.get("file").unwrap(), "file");
|
|
|
|
assert_eq!(path.get("ext").unwrap(), "gz");
|
|
|
|
|
|
|
|
let mut path = Path::new("/vtest/ttt/index.html");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 14);
|
|
|
|
assert_eq!(info, ResourceId(4));
|
|
|
|
assert_eq!(path.get("val").unwrap(), "test");
|
|
|
|
assert_eq!(path.get("val2").unwrap(), "ttt");
|
|
|
|
|
|
|
|
let mut path = Path::new("/v/blah-blah/index.html");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 15);
|
|
|
|
assert_eq!(info, ResourceId(5));
|
|
|
|
assert_eq!(path.get("tail").unwrap(), "blah-blah/index.html");
|
|
|
|
|
|
|
|
let mut path = Path::new("/test2/index.html");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 16);
|
|
|
|
assert_eq!(info, ResourceId(6));
|
|
|
|
assert_eq!(path.get("test").unwrap(), "index");
|
|
|
|
|
|
|
|
let mut path = Path::new("/bbb/index.html");
|
|
|
|
let (h, info) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 17);
|
|
|
|
assert_eq!(info, ResourceId(7));
|
|
|
|
assert_eq!(path.get("test").unwrap(), "bbb");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_recognizer_2() {
|
|
|
|
let mut router = Router::<usize>::build();
|
|
|
|
router.path("/index.json", 10);
|
|
|
|
router.path("/{source}.json", 11);
|
|
|
|
let mut router = router.finish();
|
|
|
|
|
|
|
|
let mut path = Path::new("/index.json");
|
|
|
|
let (h, _) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 10);
|
|
|
|
|
|
|
|
let mut path = Path::new("/test.json");
|
|
|
|
let (h, _) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 11);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_recognizer_with_prefix() {
|
|
|
|
let mut router = Router::<usize>::build();
|
|
|
|
router.path("/name", 10).0.set_id(0);
|
|
|
|
router.path("/name/{val}", 11).0.set_id(1);
|
|
|
|
let mut router = router.finish();
|
|
|
|
|
|
|
|
let mut path = Path::new("/name");
|
|
|
|
path.skip(5);
|
|
|
|
assert!(router.recognize_mut(&mut path).is_none());
|
|
|
|
|
|
|
|
let mut path = Path::new("/test/name");
|
|
|
|
path.skip(5);
|
|
|
|
let (h, _) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 10);
|
|
|
|
|
|
|
|
let mut path = Path::new("/test/name/value");
|
|
|
|
path.skip(5);
|
|
|
|
let (h, id) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 11);
|
|
|
|
assert_eq!(id, ResourceId(1));
|
|
|
|
assert_eq!(path.get("val").unwrap(), "value");
|
|
|
|
assert_eq!(&path["val"], "value");
|
|
|
|
|
|
|
|
// same patterns
|
|
|
|
let mut router = Router::<usize>::build();
|
|
|
|
router.path("/name", 10);
|
|
|
|
router.path("/name/{val}", 11);
|
|
|
|
let mut router = router.finish();
|
|
|
|
|
2022-01-19 19:33:23 +01:00
|
|
|
// test skip beyond path length
|
2021-08-06 23:42:31 +02:00
|
|
|
let mut path = Path::new("/name");
|
|
|
|
path.skip(6);
|
|
|
|
assert!(router.recognize_mut(&mut path).is_none());
|
|
|
|
|
|
|
|
let mut path = Path::new("/test2/name");
|
|
|
|
path.skip(6);
|
|
|
|
let (h, _) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 10);
|
|
|
|
|
|
|
|
let mut path = Path::new("/test2/name-test");
|
|
|
|
path.skip(6);
|
|
|
|
assert!(router.recognize_mut(&mut path).is_none());
|
|
|
|
|
|
|
|
let mut path = Path::new("/test2/name/ttt");
|
|
|
|
path.skip(6);
|
|
|
|
let (h, _) = router.recognize_mut(&mut path).unwrap();
|
|
|
|
assert_eq!(*h, 11);
|
|
|
|
assert_eq!(&path["val"], "ttt");
|
|
|
|
}
|
|
|
|
}
|