2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2012-01-18 23:07:43 +08:00
|
|
|
* Copyright (C) Nginx, Inc.
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
#ifndef _NGX_REGEX_H_INCLUDED_
|
|
|
|
#define _NGX_REGEX_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
#include <pcre.h>
|
|
|
|
|
|
|
|
|
2009-11-14 04:41:41 +08:00
|
|
|
#define NGX_REGEX_NO_MATCHED PCRE_ERROR_NOMATCH /* -1 */
|
2005-01-19 21:10:56 +08:00
|
|
|
|
|
|
|
#define NGX_REGEX_CASELESS PCRE_CASELESS
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2011-12-26 21:10:36 +08:00
|
|
|
|
|
|
|
typedef struct {
|
2012-05-17 21:47:04 +08:00
|
|
|
pcre *code;
|
2011-12-26 21:10:36 +08:00
|
|
|
pcre_extra *extra;
|
|
|
|
} ngx_regex_t;
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2009-11-16 20:19:02 +08:00
|
|
|
|
2007-12-27 21:15:08 +08:00
|
|
|
typedef struct {
|
2009-11-16 20:19:02 +08:00
|
|
|
ngx_str_t pattern;
|
|
|
|
ngx_pool_t *pool;
|
|
|
|
ngx_int_t options;
|
|
|
|
|
|
|
|
ngx_regex_t *regex;
|
|
|
|
int captures;
|
|
|
|
int named_captures;
|
|
|
|
int name_size;
|
|
|
|
u_char *names;
|
|
|
|
ngx_str_t err;
|
|
|
|
} ngx_regex_compile_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ngx_regex_t *regex;
|
|
|
|
u_char *name;
|
2007-12-27 21:15:08 +08:00
|
|
|
} ngx_regex_elt_t;
|
|
|
|
|
|
|
|
|
2005-03-04 22:06:57 +08:00
|
|
|
void ngx_regex_init(void);
|
2009-11-16 20:19:02 +08:00
|
|
|
ngx_int_t ngx_regex_compile(ngx_regex_compile_t *rc);
|
2009-11-14 04:41:41 +08:00
|
|
|
|
|
|
|
#define ngx_regex_exec(re, s, captures, size) \
|
2012-05-17 21:47:04 +08:00
|
|
|
pcre_exec(re->code, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \
|
2009-11-14 04:41:41 +08:00
|
|
|
captures, size)
|
2009-11-16 20:19:02 +08:00
|
|
|
#define ngx_regex_exec_n "pcre_exec()"
|
2009-11-14 04:41:41 +08:00
|
|
|
|
2007-12-27 21:15:08 +08:00
|
|
|
ngx_int_t ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log);
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
#endif /* _NGX_REGEX_H_INCLUDED_ */
|