Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ngx_regex.h
Go to the documentation of this file.
1 
2 /*
3  * Copyright (C) Igor Sysoev
4  * Copyright (C) Nginx, Inc.
5  */
6 
7 
8 #ifndef _NGX_REGEX_H_INCLUDED_
9 #define _NGX_REGEX_H_INCLUDED_
10 
11 
12 #include <ngx_config.h>
13 #include <ngx_core.h>
14 
15 #include <pcre.h>
16 
17 
18 #define NGX_REGEX_NO_MATCHED PCRE_ERROR_NOMATCH /* -1 */
19 
20 #define NGX_REGEX_CASELESS PCRE_CASELESS
21 
22 
23 typedef struct {
24  pcre *code;
25  pcre_extra *extra;
26 } ngx_regex_t;
27 
28 
29 typedef struct {
33 
35  int captures;
37  int name_size;
38  u_char *names;
41 
42 
43 typedef struct {
45  u_char *name;
47 
48 
49 void ngx_regex_init(void);
51 
52 #define ngx_regex_exec(re, s, captures, size) \
53  pcre_exec(re->code, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \
54  captures, size)
55 #define ngx_regex_exec_n "pcre_exec()"
56 
58 
59 
60 #endif /* _NGX_REGEX_H_INCLUDED_ */