1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00

prepare router release 0.5.0-beta.1

This commit is contained in:
Rob Ede 2021-07-20 07:43:50 +01:00
parent c65e8524b2
commit 82cd5b8290
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
4 changed files with 18 additions and 9 deletions

View File

@ -1,6 +1,9 @@
# Changes
## Unreleased - 2021-xx-xx
## 0.5.0-beta.1 - 2021-07-20
* Fix a bug in multi-patterns where static patterns are interpreted as regex. [#366]
* Introduce `ResourceDef::pattern_iter` to get an iterator over all patterns in a multi-pattern resource. [#373]
* Fix segment interpolation leaving `Path` in unintended state after matching. [#368]

View File

@ -1,12 +1,12 @@
[package]
name = "actix-router"
version = "0.4.0"
version = "0.5.0-beta.1"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "Resource path matching library"
description = "Resource path matching and router"
keywords = ["actix", "router", "routing"]
repository = "https://github.com/actix/actix-net.git"
license = "MIT OR Apache-2.0"

View File

@ -1,4 +1,4 @@
//! Resource path matching library.
//! Resource path matching and router.
#![deny(rust_2018_idioms, nonstandard_style)]
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]

View File

@ -12,7 +12,11 @@ pub struct ResourceInfo {
}
/// Resource router.
pub struct Router<T, U = ()>(Vec<(ResourceDef, T, Option<U>)>);
// T is the resource itself
// U is any other data needed for routing like method guards
pub struct Router<T, U = ()> {
routes: Vec<(ResourceDef, T, Option<U>)>,
}
impl<T, U> Router<T, U> {
pub fn build() -> RouterBuilder<T, U> {
@ -28,7 +32,7 @@ impl<T, U> Router<T, U> {
{
profile_method!(recognize);
for item in self.0.iter() {
for item in self.routes.iter() {
if item.0.capture_match_info(resource.resource_path()) {
return Some((&item.1, ResourceId(item.0.id())));
}
@ -44,7 +48,7 @@ impl<T, U> Router<T, U> {
{
profile_method!(recognize_mut);
for item in self.0.iter_mut() {
for item in self.routes.iter_mut() {
if item.0.capture_match_info(resource.resource_path()) {
return Some((&mut item.1, ResourceId(item.0.id())));
}
@ -61,7 +65,7 @@ impl<T, U> Router<T, U> {
{
profile_method!(recognize_checked);
for item in self.0.iter() {
for item in self.routes.iter() {
if item.0.capture_match_info_fn(resource, &check, &item.2) {
return Some((&item.1, ResourceId(item.0.id())));
}
@ -82,7 +86,7 @@ impl<T, U> Router<T, U> {
{
profile_method!(recognize_mut_checked);
for item in self.0.iter_mut() {
for item in self.routes.iter_mut() {
if item.0.capture_match_info_fn(resource, &check, &item.2) {
return Some((&mut item.1, ResourceId(item.0.id())));
}
@ -129,7 +133,9 @@ impl<T, U> RouterBuilder<T, U> {
/// Finish configuration and create router instance.
pub fn finish(self) -> Router<T, U> {
Router(self.resources)
Router {
routes: self.resources,
}
}
}