forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathre.h
88 lines (73 loc) · 2.3 KB
/
re.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* History:
* --------
* 2003-08-04 created by andrei
* 2004-11-12 minor api extension, added *count (andrei)
*/
/*!
* \file
* \brief regexp and regexp substitutions implementations
*/
#ifndef _re_h
#define _re_h
#include "str.h"
#include "pvar.h"
#include "parser/msg_parser.h"
#include <sys/types.h> /* for regex */
#include <regex.h>
#define WITH_SEP 1
#define WITHOUT_SEP 0
enum replace_special { REPLACE_NMATCH, REPLACE_CHAR, REPLACE_URI,
REPLACE_SPEC };
struct replace_with{
int offset; /* offset in string */
int size; /* size of replace "anchor" in string */
enum replace_special type;
union{
int nmatch;
char c;
pv_spec_t spec;
}u;
};
struct subst_expr{
regex_t* re;
str replacement;
int replace_all;
int n_escapes; /* escapes number (replace[] size) */
int max_pmatch ; /* highest () referenced */
struct replace_with replace[1]; /* 0 does not work on all compilers */
};
struct replace_lst{
int offset;
int size; /* at offset, delete size bytes and replace them with rpl */
str rpl;
struct replace_lst *next;
};
void subst_expr_free(struct subst_expr* se);
void replace_lst_free(struct replace_lst* l);
int parse_repl(struct replace_with * rw, char ** begin,
char * end, int *max_token_nb, int flag);
struct subst_expr* subst_parser(str* subst);
struct replace_lst* subst_run( struct subst_expr* se, const char* input,
struct sip_msg* msg, int *count);
str* subst_str(const char* input, struct sip_msg* msg,
struct subst_expr* se, int* count);
#endif