Commit graph

349 commits

Author SHA1 Message Date
c9s
973a2cb85c Move private functions to private header files 2015-11-17 21:17:35 +08:00
c9s
e5ef80a200 Move private function to src/str.h 2015-11-17 21:13:38 +08:00
Yo-An Lin
5e6252d8a3 Merge pull request #91 from RickySu/2.0-fix
add include config.h
2015-11-17 21:08:25 +08:00
c9s
63577cfecc Remove unused str_repeat function 2015-11-17 21:06:59 +08:00
Ricky Su
88dc323f7f add include config.h 2015-11-17 20:59:17 +08:00
c9s
acb2ff1767 Move variable positions 2015-11-17 18:32:50 +08:00
c9s
cd430968ef Add GNU likely/unlikely support 2015-11-17 18:32:50 +08:00
c9s
4ce9068963 Cache pointer of edge 2015-11-17 18:32:50 +08:00
c9s
d4850d3564 Make edges as an array
Fixes: #89
2015-11-17 18:32:50 +08:00
c9s
89e4517772 Fix zero-length path insertion
Fixes: #86, #85
2015-11-17 16:10:26 +08:00
c9s
f795785dce Implement faster edge branching 2015-11-17 16:08:01 +08:00
c9s
3376d1b771 Judy array is not used. 2015-11-10 19:58:28 +08:00
c9s
c18c466a9b use 64 * 3 bytes instead of 220 bytes for combined pattern 2015-11-10 19:56:07 +08:00
c9s
a2994cfdac Reuse restlen 2015-11-10 19:48:22 +08:00
c9s
659dc19b1b Replace short integer with int to fit into cacheline (assume 64byte) 2015-11-10 19:29:18 +08:00
Ricky Su
292b082c78 fix memory leak 2015-09-11 15:14:07 +08:00
Ricky Su
f445c261c6 add r3_slug_find_name and rename slug_count to r3_slug_count 2015-08-26 22:00:23 +08:00
c9s
3a62cb6559 Fix cmake build 2015-03-05 11:45:39 +08:00
c9s
bd22e7b35c free slug object 2014-08-12 18:03:26 +08:00
Kan-Ru Chen (陳侃如)
3629452fe0 Fix pcre_exec's return type
According to PCRE_EXEC(3) pcre_exec returns int.

The original code uses char but char could be either signed or
unsigned. On armel and sparc this caused segment fault because
the (rc < 0) error checking was optimized out.
2014-08-04 01:07:37 +08:00
c9s
da026219be Fix gvc graph generator function 2014-06-28 00:53:04 +08:00
c9s
72f10015d5 Fix copyright email 2014-06-27 13:24:40 +08:00
c9s
d00ac51809 Fix cmakelist 2014-06-27 00:04:22 +08:00
c9s
a697301c44 strndup polyfill for cmake 2014-06-18 20:47:06 +08:00
c9s
8ebaac0536 Fix CMakeLists.txt 2014-06-18 20:28:13 +08:00
caasi Huang
ce4095af35 initialize node.data 2014-06-14 00:55:24 +08:00
Yo-An Lin
34e779c84a fix route cmp function 2014-06-12 21:01:16 +08:00
c9s
03b5d107cd fix route appending bug reported by @othree 2014-06-12 17:51:43 +08:00
c9s
31974a6e9c fix gvc generate function 2014-06-11 21:54:08 +08:00
c9s
2c5f135600 macro rename 2014-06-10 20:18:59 +08:00
c9s
2e7ec1357d quick "for" statement 2014-06-05 07:45:34 +08:00
c9s
e4eada3250 pcre match optimization 2014-06-05 07:43:51 +08:00
c9s
5137d4d8e4 simplify functions to macro 2014-06-04 23:13:08 +08:00
c9s
8e39e58c88 refactoring matchl function 2014-06-04 23:04:04 +08:00
c9s
f03fcf7a5b parameter optimization 2014-06-04 20:02:25 +08:00
c9s
a7a3621cfe use while instead of for 2014-06-04 20:02:24 +08:00
c9s
190986fb31 use while instead of for loop to simplify execution 2014-06-04 20:02:24 +08:00
c9s
c5dce1d232 CHECK_PTR 2014-06-04 16:22:28 +08:00
c9s
7171c2b195 reset pcre_extra NULL 2014-06-04 15:59:13 +08:00
c9s
4d68ae6841 remove const from errstr 2014-06-04 13:45:28 +08:00
c9s
b2946352f1 Add r3_tree_insert_routel_ex for error message 2014-06-03 23:50:02 +08:00
c9s
a3c527e1b2 Add const fix 2014-06-03 23:42:40 +08:00
c9s
24db602d1a remove cast 2014-06-03 22:21:40 +08:00
c9s
23cfbe167f const fix 2014-06-03 22:20:54 +08:00
c9s
2aa3509845 Add more const 2014-06-03 22:15:59 +08:00
c9s
c7220c5616 combine match_entry functions into r3.h 2014-06-03 22:07:46 +08:00
c9s
a736672323 reduce variable declaration 2014-06-03 22:02:47 +08:00
c9s
f95cce7407 fix header file include 2014-06-03 21:47:52 +08:00
c9s
5609fd5f9e r3 function prefix
- Remove ltrim_slash.
- Add "r3_" prefix to r3_str.c functions.
2014-06-03 20:50:19 +08:00
c9s
053f9202f6 merge graphviz function prototype into r3.h 2014-06-03 20:47:35 +08:00
c9s
4ac3d74fd3 more graphviz API 2014-06-03 18:41:55 +08:00
c9s
b68e14dd66 r3_tree_render_dot(const node * tree, FILE *fp); support 2014-06-03 18:37:36 +08:00
Pedro
b6bf81e3e9 Replace -1 ret code 2014-06-03 02:09:11 +08:00
c9s
2890ed142e document return code 2014-06-02 16:24:32 +08:00
c9s
ea7fa973cd Add SAFE_FREE for char * errstr 2014-06-02 16:12:27 +08:00
c9s
15021b11c9 reset prefix_len = 0 2014-06-02 16:08:46 +08:00
c9s
1f21ea19a8 Add char ** errstr to r3_node_find_common_prefix 2014-06-02 15:52:40 +08:00
c9s
7cc84867ce let slug_count returns -1 if error occurs 2014-06-02 15:47:02 +08:00
c9s
2774221ab7 return error 2014-06-02 15:12:28 +08:00
c9s
04d8977b21 r3_tree_insert_pathl_ex function 2014-06-02 14:47:46 +08:00
c9s
16d7cc207f clean up debug code 2014-06-02 14:10:29 +08:00
c9s
9441f974de test compile fail 2014-06-02 09:48:00 +08:00
c9s
fd1e5f7f50 Add r3_node_find_common_prefix test cases 2014-06-02 09:09:41 +08:00
c9s
9f58a5b651 comment for the function 2014-06-02 08:19:44 +08:00
c9s
f3bf32b922 refactor path insert function 2014-06-02 08:04:57 +08:00
c9s
20c6a84f7c continue when escape 2014-06-02 07:10:31 +08:00
c9s
b80f90dad9 -D_BSD_SOURCE=1 2014-06-02 07:03:32 +08:00
c9s
7597398c08 include config.h 2014-06-02 06:58:02 +08:00
c9s
b2a9ad47d8 fprintf to print error to stderr 2014-06-02 06:53:31 +08:00
c9s
9271f0bf08 free the variable 2014-06-02 06:50:24 +08:00
c9s
57b4fde126 print errmsg 2014-06-02 06:48:00 +08:00
c9s
17b4201197 more incomplete slug pattern tests 2014-06-02 06:38:50 +08:00
c9s
a6be7f5061 static inline 2014-06-02 06:32:30 +08:00
c9s
0eb9cad11c r3_path_contains_slug_char function 2014-06-02 06:27:35 +08:00
c9s
493a9d7d8e Add coverage option to gcc 2014-06-02 06:14:23 +08:00
c9s
7cfdfbb3f5 inline static 2014-06-02 06:01:42 +08:00
c9s
f9b7dd8522 fix prototype 2014-06-02 05:56:46 +08:00
c9s
00c364dacb const 2014-06-02 05:55:45 +08:00
c9s
c801164c88 contains_slug_char declare 2014-06-02 05:53:39 +08:00
c9s
fcc00deadb Merge branch 'slugfix' of github.com:c9s/r3 into slugfix 2014-06-02 05:50:49 +08:00
c9s
20e3f1a3ba asprintf returns memory pointer which is from malloc() not zmalloc() 2014-06-02 05:48:27 +08:00
c9s
8775c3ff85 wtf 2014-06-02 05:31:47 +08:00
c9s
359d9df369 improve r3_slug_parse function 2014-06-02 05:02:37 +08:00
c9s
6dfd37d43d move slug related functions to slug.c and slug.h 2014-06-02 04:52:41 +08:00
c9s
2a75861741 Fix gvc graph 2014-06-02 01:35:58 +08:00
c9s
24b84d068d Merge branch 'master' into slugfix
Conflicts:
	tests/check_slug.c
2014-06-02 01:23:10 +08:00
c9s
0636c9dad3 fix slug compile pattern 2014-06-02 01:21:02 +08:00
c9s
39fc24e3fa fix pattern compiler 2014-06-02 01:05:57 +08:00
c9s
c52639c431 slug parser 2014-06-02 01:01:29 +08:00
c9s
e1e5c3a4ae test incomplete slug 2014-06-02 00:27:30 +08:00
c9s
258128f30d slug_count return errstr 2014-06-02 00:22:12 +08:00
c9s
da2f2311c9 CHECK_PTR macro to check pointer 2014-06-01 21:58:29 +08:00
c9s
70693ea1f2 errstr parameter in slug 2014-06-01 20:51:47 +08:00
c9s
76182660f9 remove trailing newline 2014-06-01 20:15:25 +08:00
c9s
7d6209d99c build with 3rdparty objects
use -static linking when linking libr3

AM_CFLAGS and AM_LDFLAGS are Makefile.am scope options

disable valgrind tracing check-tree

Makefile.am fix

Add json support

remove useless c files
2014-06-01 19:43:45 +08:00
c9s
b139d8d3f2 add const to node 2014-06-01 14:54:16 +08:00
c9s
7d69e79535 gvc fix 2014-06-01 14:53:12 +08:00
c9s
6e6de35fd0 fix tests for graphviz 2014-06-01 14:41:45 +08:00
c9s
adde7bc361 remove unused variables 2014-06-01 14:35:29 +08:00
c9s
8ee11aaa6f reduce variables and add const char* to insert_pathl. 2014-06-01 14:33:56 +08:00