nginx/src/core/ngx_regex.c

164 lines
2.9 KiB
C
Raw Normal View History

2003-11-26 04:44:56 +08:00
/*
* Copyright (C) Igor Sysoev
*/
2003-11-26 04:44:56 +08:00
#include <ngx_config.h>
#include <ngx_core.h>
static void * ngx_libc_cdecl ngx_regex_malloc(size_t size);
static void ngx_libc_cdecl ngx_regex_free(void *p);
2003-11-26 04:44:56 +08:00
static ngx_pool_t *ngx_pcre_pool;
void
ngx_regex_init(void)
2003-11-26 04:44:56 +08:00
{
pcre_malloc = ngx_regex_malloc;
pcre_free = ngx_regex_free;
}
ngx_regex_t *
ngx_regex_compile(ngx_str_t *pattern, ngx_int_t options, ngx_pool_t *pool,
ngx_str_t *err)
2003-11-26 04:44:56 +08:00
{
2004-07-07 23:01:00 +08:00
int erroff;
const char *errstr;
ngx_regex_t *re;
#if (NGX_THREADS)
ngx_core_tls_t *tls;
#if (NGX_SUPPRESS_WARN)
tls = NULL;
#endif
if (ngx_threaded) {
tls = ngx_thread_get_tls(ngx_core_tls_key);
tls->pool = pool;
} else {
ngx_pcre_pool = pool;
}
#else
2003-11-26 04:44:56 +08:00
ngx_pcre_pool = pool;
2004-07-07 23:01:00 +08:00
#endif
2004-03-16 15:10:12 +08:00
re = pcre_compile((const char *) pattern->data, (int) options,
&errstr, &erroff, NULL);
2003-11-26 04:44:56 +08:00
if (re == NULL) {
2003-12-09 04:48:12 +08:00
if ((size_t) erroff == pattern->len) {
ngx_snprintf(err->data, err->len - 1,
"pcre_compile() failed: %s in \"%s\"%Z",
2003-11-26 04:44:56 +08:00
errstr, pattern->data);
} else {
ngx_snprintf(err->data, err->len - 1,
"pcre_compile() failed: %s in \"%s\" at \"%s\"%Z",
2003-11-26 04:44:56 +08:00
errstr, pattern->data, pattern->data + erroff);
}
}
2004-03-23 14:01:52 +08:00
/* ensure that there is no current pool */
2004-07-07 23:01:00 +08:00
#if (NGX_THREADS)
if (ngx_threaded) {
tls->pool = NULL;
} else {
ngx_pcre_pool = NULL;
}
#else
2004-03-23 14:01:52 +08:00
ngx_pcre_pool = NULL;
2004-07-07 23:01:00 +08:00
#endif
2004-03-23 14:01:52 +08:00
2003-11-26 04:44:56 +08:00
return re;
}
ngx_int_t
ngx_regex_capture_count(ngx_regex_t *re)
{
int rc, n;
n = 0;
rc = pcre_fullinfo(re, NULL, PCRE_INFO_CAPTURECOUNT, &n);
if (rc < 0) {
return (ngx_int_t) rc;
}
return (ngx_int_t) n;
}
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)
{
ngx_int_t n;
ngx_uint_t i;
ngx_regex_elt_t *re;
re = a->elts;
for (i = 0; i < a->nelts; i++) {
n = ngx_regex_exec(re[i].regex, s, NULL, 0);
if (n == NGX_REGEX_NO_MATCHED) {
continue;
}
if (n < 0) {
ngx_log_error(NGX_LOG_ALERT, log, 0,
ngx_regex_exec_n " failed: %d on \"%V\" using \"%s\"",
n, s, re[i].name);
return NGX_ERROR;
}
/* match */
return NGX_OK;
}
return NGX_DECLINED;
}
static void * ngx_libc_cdecl
ngx_regex_malloc(size_t size)
2003-11-26 04:44:56 +08:00
{
2004-07-07 23:01:00 +08:00
ngx_pool_t *pool;
#if (NGX_THREADS)
ngx_core_tls_t *tls;
if (ngx_threaded) {
tls = ngx_thread_get_tls(ngx_core_tls_key);
pool = tls->pool;
} else {
pool = ngx_pcre_pool;
}
#else
pool = ngx_pcre_pool;
#endif
if (pool) {
return ngx_palloc(pool, size);
2004-03-23 14:01:52 +08:00
}
return NULL;
2003-11-26 04:44:56 +08:00
}
static void ngx_libc_cdecl
ngx_regex_free(void *p)
2003-11-26 04:44:56 +08:00
{
return;
}