comparison src/core/ngx_regex.h @ 665:0b460e61bdcd default tip

Merge with nginx 1.0.0.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 25 Apr 2011 04:22:17 +0400
parents e19e5f542878
children
comparison
equal deleted inserted replaced
572:06419a2298a9 665:0b460e61bdcd
12 #include <ngx_core.h> 12 #include <ngx_core.h>
13 13
14 #include <pcre.h> 14 #include <pcre.h>
15 15
16 16
17 #define NGX_REGEX_NO_MATCHED -1000 17 #define NGX_REGEX_NO_MATCHED PCRE_ERROR_NOMATCH /* -1 */
18 18
19 #define NGX_REGEX_CASELESS PCRE_CASELESS 19 #define NGX_REGEX_CASELESS PCRE_CASELESS
20 20
21 typedef pcre ngx_regex_t; 21 typedef pcre ngx_regex_t;
22 22
23
23 typedef struct { 24 typedef struct {
24 ngx_regex_t *regex; 25 ngx_str_t pattern;
25 u_char *name; 26 ngx_pool_t *pool;
27 ngx_int_t options;
28
29 ngx_regex_t *regex;
30 int captures;
31 int named_captures;
32 int name_size;
33 u_char *names;
34 ngx_str_t err;
35 } ngx_regex_compile_t;
36
37
38 typedef struct {
39 ngx_regex_t *regex;
40 u_char *name;
26 } ngx_regex_elt_t; 41 } ngx_regex_elt_t;
27 42
28 43
29 void ngx_regex_init(void); 44 void ngx_regex_init(void);
30 ngx_regex_t *ngx_regex_compile(ngx_str_t *pattern, ngx_int_t options, 45 ngx_int_t ngx_regex_compile(ngx_regex_compile_t *rc);
31 ngx_pool_t *pool, ngx_str_t *err); 46
32 ngx_int_t ngx_regex_capture_count(ngx_regex_t *re); 47 #define ngx_regex_exec(re, s, captures, size) \
33 ngx_int_t ngx_regex_exec(ngx_regex_t *re, ngx_str_t *s, int *captures, 48 pcre_exec(re, NULL, (const char *) (s)->data, (s)->len, 0, 0, \
34 ngx_int_t size); 49 captures, size)
50 #define ngx_regex_exec_n "pcre_exec()"
51
35 ngx_int_t ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log); 52 ngx_int_t ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log);
36 53
37 54
38 #define ngx_regex_exec_n "pcre_exec()"
39 #define ngx_regex_capture_count_n "pcre_fullinfo()"
40
41
42 #endif /* _NGX_REGEX_H_INCLUDED_ */ 55 #endif /* _NGX_REGEX_H_INCLUDED_ */