mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
Handle non-prefix and prefix resources combinations
This commit is contained in:
parent
4c053c1dc7
commit
a7187c4d8b
4 changed files with 52 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.5] - 2020-05-09
|
||||||
|
|
||||||
|
* Handle non-prefix and prefix resources combinations
|
||||||
|
|
||||||
## [0.3.4] - 2020-04-17
|
## [0.3.4] - 2020-04-17
|
||||||
|
|
||||||
* Add ResourcePath impl for &T where T: ResourcePath
|
* Add ResourcePath impl for &T where T: ResourcePath
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-router"
|
name = "ntex-router"
|
||||||
version = "0.3.4"
|
version = "0.3.5"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Path router"
|
description = "Path router"
|
||||||
keywords = ["ntex"]
|
keywords = ["ntex"]
|
||||||
|
|
|
@ -943,4 +943,19 @@ mod tests {
|
||||||
assert_eq!(resource.get("id").unwrap(), "320120");
|
assert_eq!(resource.get("id").unwrap(), "320120");
|
||||||
assert_eq!(resource.get("name").unwrap(), "name");
|
assert_eq!(resource.get("name").unwrap(), "name");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_recursive() {
|
||||||
|
let mut tree = Tree::new(&ResourceDef::new("/name"), 1);
|
||||||
|
tree.insert(&ResourceDef::new("/name/"), 2);
|
||||||
|
tree.insert(&ResourceDef::new("/name/index.html"), 3);
|
||||||
|
tree.insert(&ResourceDef::prefix("/"), 4);
|
||||||
|
|
||||||
|
assert_eq!(tree.find(&mut Path::new("/name")), Some(1));
|
||||||
|
assert_eq!(tree.find(&mut Path::new("/name/")), Some(2));
|
||||||
|
assert_eq!(tree.find(&mut Path::new("/name/index.html")), Some(3));
|
||||||
|
assert_eq!(tree.find(&mut Path::new("/")), Some(4));
|
||||||
|
assert_eq!(tree.find(&mut Path::new("/test")), Some(4));
|
||||||
|
assert_eq!(tree.find(&mut Path::new("/test/index.html")), Some(4));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -128,9 +128,16 @@ impl Tree {
|
||||||
};
|
};
|
||||||
self.children.push(child);
|
self.children.push(child);
|
||||||
}
|
}
|
||||||
|
|
||||||
// update value if key is the same
|
// update value if key is the same
|
||||||
if p == key.len() {
|
if p == key.len() {
|
||||||
self.value.push(value);
|
match value {
|
||||||
|
Value::PrefixSlesh(v) => {
|
||||||
|
self.children
|
||||||
|
.push(Tree::child(Vec::new(), Some(Value::Prefix(v))));
|
||||||
|
}
|
||||||
|
value => self.value.push(value),
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// insert into sub tree
|
// insert into sub tree
|
||||||
let mut child = self
|
let mut child = self
|
||||||
|
@ -316,6 +323,30 @@ impl Tree {
|
||||||
R: Resource<T>,
|
R: Resource<T>,
|
||||||
F: Fn(usize, &R) -> bool,
|
F: Fn(usize, &R) -> bool,
|
||||||
{
|
{
|
||||||
|
if self.key.is_empty() {
|
||||||
|
if path.is_empty() {
|
||||||
|
for val in &self.value {
|
||||||
|
let v = match val {
|
||||||
|
Value::Val(v) | Value::Prefix(v) => *v,
|
||||||
|
_ => continue,
|
||||||
|
};
|
||||||
|
if check(v, resource) {
|
||||||
|
return Some((v, skip));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for val in &self.value {
|
||||||
|
let v = match val {
|
||||||
|
Value::Prefix(v) => *v,
|
||||||
|
_ => continue,
|
||||||
|
};
|
||||||
|
if check(v, resource) {
|
||||||
|
return Some((v, skip));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return None;
|
||||||
|
}
|
||||||
let mut key: &[_] = &self.key;
|
let mut key: &[_] = &self.key;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue