include simple.c
This commit is contained in:
parent
c7220c5616
commit
4b2a80112e
1 changed files with 63 additions and 0 deletions
63
examples/simple.c
Normal file
63
examples/simple.c
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
/*
|
||||||
|
* bench.c
|
||||||
|
* Copyright (C) 2014 c9s <c9s@c9smba.local>
|
||||||
|
*
|
||||||
|
* Distributed under terms of the MIT license.
|
||||||
|
*/
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdarg.h> /* va_list, va_start, va_arg, va_end */
|
||||||
|
|
||||||
|
#include "r3/r3.h"
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
node * n = r3_tree_create(3);
|
||||||
|
|
||||||
|
int route_data = 999;
|
||||||
|
|
||||||
|
r3_tree_insert_path(n, "/foo/bar/baz", NULL);
|
||||||
|
r3_tree_insert_path(n, "/foo/bar/qux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/foo/bar/quux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/bar/foo/baz", NULL);
|
||||||
|
r3_tree_insert_path(n, "/bar/foo/quux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/bar/garply/grault", NULL);
|
||||||
|
r3_tree_insert_path(n, "/baz/foo/bar", NULL);
|
||||||
|
r3_tree_insert_path(n, "/baz/foo/qux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/baz/foo/quux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/qux/foo/quux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/qux/foo/corge", NULL);
|
||||||
|
r3_tree_insert_path(n, "/qux/foo/grault", NULL);
|
||||||
|
r3_tree_insert_path(n, "/corge/quux/foo", NULL);
|
||||||
|
r3_tree_insert_path(n, "/corge/quux/bar", NULL);
|
||||||
|
r3_tree_insert_path(n, "/corge/quux/baz", NULL);
|
||||||
|
r3_tree_insert_path(n, "/corge/quux/qux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/corge/quux/grault", NULL);
|
||||||
|
r3_tree_insert_path(n, "/grault/foo/bar", NULL);
|
||||||
|
r3_tree_insert_path(n, "/grault/foo/baz", NULL);
|
||||||
|
r3_tree_insert_path(n, "/garply/baz/quux", NULL);
|
||||||
|
r3_tree_insert_path(n, "/garply/baz/corge", NULL);
|
||||||
|
r3_tree_insert_path(n, "/garply/baz/grault", NULL);
|
||||||
|
r3_tree_insert_path(n, "/garply/qux/foo", NULL);
|
||||||
|
|
||||||
|
char *errstr = NULL;
|
||||||
|
int err = r3_tree_compile(n, &errstr);
|
||||||
|
if(err) {
|
||||||
|
printf("%s\n",errstr);
|
||||||
|
free(errstr);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
node *m;
|
||||||
|
|
||||||
|
m = r3_tree_match(n , "/qux/bar/corge", NULL);
|
||||||
|
|
||||||
|
match_entry * e = match_entry_createl("/qux/bar/corge", strlen("/qux/bar/corge") );
|
||||||
|
m = r3_tree_match_entry(n , e);
|
||||||
|
if (m) {
|
||||||
|
printf("Matched! %s\n", e->path);
|
||||||
|
}
|
||||||
|
match_entry_free(e);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue