fork of https://github.com/c9s/r3 because they cant into cmake or dependency management
Go to file
2014-05-16 19:13:24 +08:00
cmake_modules update testing framework with "Check" 2014-05-15 10:08:42 +08:00
include append captured tokens to match_entry 2014-05-16 19:12:01 +08:00
src append captured tokens to match_entry 2014-05-16 19:12:01 +08:00
tests append captured tokens to match_entry 2014-05-16 19:12:01 +08:00
.gitignore Add token list struct 2014-05-15 11:52:45 +08:00
bench.html update benchmark html 2014-05-16 18:37:07 +08:00
CMakeLists.txt update testing framework with "Check" 2014-05-15 10:08:42 +08:00
demo.c cmake: include_subdirectory(src) and include_subdirectory(tests) 2014-05-15 00:47:52 +08:00
gen_routes.rb inline function optimization 2014-05-16 18:57:36 +08:00
HACKING.md Add token list struct 2014-05-15 11:52:45 +08:00
main.c Check in files. 2014-05-15 00:15:19 +08:00
main.h Check in files. 2014-05-15 00:15:19 +08:00
README.md update README 2014-05-16 19:13:24 +08:00

R3

R3 is an URI router library. It compiles your route paths into a radix tree. By using the constructed radix tree in the start-up time, you may dispatch your routes efficiently.

Pattern Syntax

/blog/post/{id}      use [^/]+ regular expression by default.

/blog/post/{id:\d+}  use `\d+` regular expression instead of default.

C API

// create a router tree with 10 children capacity (this capacity can grow dynamically)
n = r3_tree_create(10);

int route_data = 3;

// insert the route path into the router tree
r3_tree_insert_pathn(n , "/zoo"       , strlen("/zoo")       , &route_data );
r3_tree_insert_pathn(n , "/foo/bar"   , strlen("/foo/bar")   , &route_data );
r3_tree_insert_pathn(n , "/bar"       , strlen("/bar")       , &route_data );
r3_tree_insert_pathn(n , "/post/{id}" , strlen("/post/{id}") , &route_data );

// let's compile the tree!
r3_tree_compile(n);


// dump the compiled tree
r3_tree_dump(n, 0);

// match a route
node *matched_node = r3_tree_match(n, "/foo/bar", strlen("/foo/bar") );
matched_node->endpoint; // make sure there is a route end at here.
int ret = *( (*int) matched_node->route_ptr );

Use case in PHP

// Here is the paths data structure
$paths = [
    '/blog/post/{id}' => [ 'controller' => 'PostController' , 'action' => 'item'   , 'method'   => 'GET' ] , 
    '/blog/post'      => [ 'controller' => 'PostController' , 'action' => 'list'   , 'method'   => 'GET' ] , 
    '/blog/post'      => [ 'controller' => 'PostController' , 'action' => 'create' , 'method' => 'POST' ]  , 
    '/blog'           => [ 'controller' => 'BlogController' , 'action' => 'list'   , 'method'   => 'GET' ] , 
];
$rs = r3_compile($paths, 'persisten-table-id');
$ret = r3_dispatch($rs, '/blog/post/3' );
list($complete, $route, $variables) = $ret;

// matched conditions aren't done yet
list($error, $message) = r3_validate($route); // validate route conditions
if ( $error ) {
    echo $message; // "Method not allowed", "...";
}