-
Notifications
You must be signed in to change notification settings - Fork 13
/
regexp.cpp
281 lines (238 loc) · 8.65 KB
/
regexp.cpp
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/* All of our headers should be declared external C in C++ */
/* Since this is the ONLY C++ file we'll needs, let's only */
/* do that here. */
extern "C" {
#include "regexp.h"
#include "vtable.h"
#include "expr.h"
}
/* DON'T USE SQLITE API FROM THIS FILE! */
/* Notice that it is *not* possible to forward declare global variables in C++ */
/* and as sqlite3 extension API relies on sqlite3_api* being forward declared in */
/* every file (and defined in trilite.c) we can't access this variable from C++ */
/* Fortunately we're mainly interested in generating error codes here, as all */
/* other logic should be handled elsewhere, and luckily it makes a lot of sense */
/* to make a simple wrapper function for outputting error messages, so this is */
/* not an issue. */
/* But for future reference don't use the sqlite3 API from this function! */
#include <assert.h>
#include <stdbool.h>
#include <string>
#include <re2/re2.h>
#include <re2/prefilter.h>
static int exprFromPreFilter(expr**, bool*, trilite_vtab*, re2::Prefilter*);
/* Handling the special case when an expr accepts everything
* In trilite expr cannot match everything, this because the case where we have
* all rows, is a FULL_TABLE_SCAN, for efficiency this should be done
* separately.
* In particular an expr in expr.c is expected to always contains one more
* candidate row, if not it should delete itself and report that to it's owner.
* This way, pExpr becomes NULL when no more candidate rows are available.
* In re2, there's a special re2::Prefilter::ALL expression type which matches
* all documents. We indicate this by setting *pAll = true and *ppExpr = NULL.
*
* This way we can consume the ALL expression at the next AND or OR expr, or
* we can propergate it to the filter function on cursor and change behaviour to
* a full table scan, if that's desired.
*/
/** Construct a filter expression from a regular expression
* Returns SQLITE_ERROR and sets user relevant error message on error */
int regexpPreFilter(expr **ppExpr, bool *pAll, trilite_vtab *pTrgVtab, const unsigned char *expr, int nExpr){
int rc = SQLITE_OK;
*ppExpr = NULL;
/* Options for regular expressions */
re2::RE2::Options options;
options.set_log_errors(false);
options.set_max_mem(pTrgVtab->maxRegExpMemory);
/* Create regular expression from string */
re2::RE2 re(re2::StringPiece((const char*)expr, nExpr), options);
/* TODO if re.ProgramSize() > SOME_THRESHOLD return and error message */
/* Ideally this threshold should be a runtime setting */
/* Provide error message if regular expression compilation failed */
if(!re.ok()){
/* Error codes from re2 */
std::string msg;
switch(re.error_code()){
case re2::RE2::ErrorBadEscape:
msg = "Bad escape sequence at '%s'";
break;
case re2::RE2::ErrorBadCharClass:
msg = "Bad character class at '%s'";
break;
case re2::RE2::ErrorBadCharRange:
msg = "Bad character range at '%s'";
break;
case re2::RE2::ErrorMissingBracket:
msg = "Missing bracket in '%s'";
break;
case re2::RE2::ErrorMissingParen:
msg = "Missing parenthesis in '%s'";
break;
case re2::RE2::ErrorTrailingBackslash:
msg = "Trailing backslash in '%s'";
break;
case re2::RE2::ErrorRepeatArgument:
msg = "Repeat argument missing in '%s'";
break;
case re2::RE2::ErrorRepeatSize:
msg = "Bad repeat argument at '%s'";
break;
case re2::RE2::ErrorRepeatOp:
msg = "Bad repeatition operator at '%s'";
break;
case re2::RE2::ErrorBadPerlOp:
msg = "Bad perl operator at '%s'";
break;
case re2::RE2::ErrorBadUTF8:
msg = "Invalid UTF-8 at '%s'";
break;
case re2::RE2::ErrorBadNamedCapture:
msg = "Bad named capture group at '%s'";
break;
case re2::RE2::ErrorPatternTooLarge:
msg = "Pattern '%s' is too large";
break;
case re2::RE2::ErrorInternal:
default:
msg = "Unknown internal error at '%s'";
break;
}
/* Now set the error message */
triliteError(pTrgVtab, ("REGEXP: " + msg).c_str(), re.error_arg().c_str());
/* Return error */
return SQLITE_ERROR;
}
/* Compute a prefilter */
re2::Prefilter* pf = re2::Prefilter::FromRE2(&re);
/* Provide error message if a filter couldn't be devised, as we shall not */
/* permit full table scans. */
if(!pf){
triliteError(pTrgVtab, "REGEXP: Failed to build a filter for the regular expression");
return SQLITE_ERROR;
}
rc = exprFromPreFilter(ppExpr, pAll, pTrgVtab, pf);
assert(rc == SQLITE_OK);
/* Release the prefilter */
delete pf;
return rc;
}
/** Construct an expr from a prefilter
* Returns SQLITE_OK on success, outputs expression as *ppExpr, if NULL, *all
* determines if it's because everything matches the expr or nothing matches the
* expression, ie. *all == true, implies everything matches the expression */
static int exprFromPreFilter(expr **ppExpr, bool *pAll, trilite_vtab *pTrgVtab, re2::Prefilter* pf){
int rc = SQLITE_OK;
assert(pf && pAll);
*ppExpr = NULL;
if(pf->op() == re2::Prefilter::ALL){
*pAll = true;
return SQLITE_OK;
}
if(pf->op() == re2::Prefilter::NONE){
*pAll = false;
return SQLITE_OK;
}
/* If we have an atom it's a substring */
if(pf->op() == re2::Prefilter::ATOM){
/* Construct expr from substring */
return exprSubstring(ppExpr, pAll, pTrgVtab, (const unsigned char*)pf->atom().c_str(), pf->atom().size());
}
/* Get the operator type */
expr_type eType = EXPR_OR;
if(pf->op() == re2::Prefilter::AND)
eType = EXPR_AND;
else
assert(pf->op() == re2::Prefilter::OR);
/* Get sub expressions */
std::vector<re2::Prefilter*>* subs = pf->subs();
size_t i;
for(i = 0; i < subs->size(); i++){
bool all;
expr *pExpr = NULL;
rc = exprFromPreFilter(&pExpr, &all, pTrgVtab, (*subs)[i]);
assert(rc == SQLITE_OK);
/* Abort if we get an error */
if(rc != SQLITE_OK){
exprRelease(pExpr);
exprRelease(*ppExpr);
*ppExpr = NULL;
return SQLITE_ERROR;
}
/* if we didn't get an expr */
if(!pExpr){
/* if all and operator is OR, we're done */
if(all && eType == EXPR_OR){
*pAll = true;
exprRelease(*ppExpr);
*ppExpr = NULL;
return SQLITE_OK;
}
/* if !all and operator is AND, we're done */
if(!all && eType == EXPR_AND){
*pAll = false;
exprRelease(*ppExpr);
*ppExpr = NULL;
return SQLITE_OK;
}
/* If !all and OR, or all and AND, we simply ignore this term */
continue;
}
/* Add pExpr to ppExpr */
if(*ppExpr){
exprOperator(ppExpr, *ppExpr, pExpr, eType);
}else
*ppExpr = pExpr;
}
/* If we didn't get any terms */
if(!*ppExpr){
/* If we had all and AND, then we accept all */
if(eType == EXPR_AND)
*pAll = true;
/* If we had !all and OR, we accept nothing! */
if(eType == EXPR_OR)
*pAll = false;
}
return SQLITE_OK;
}
/************************ Regular Expression Wrapper *************************/
/** Wrapping the regular expression in a struct
* This is less ugly than casting the regexp pointer to an re2::RE2 pointer,
* and technically this shouldn't add any overhead */
struct regexp{
/** The cached and compiled regular expression */
re2::RE2 re;
/** Stupid constructor for re */
regexp(re2::StringPiece pattern) : re(pattern, re2::RE2::Quiet) {}
};
/** Compile a regular expression */
int regexpCompile(regexp **ppRegExp, const unsigned char *pattern, int nPattern){
*ppRegExp = new regexp(re2::StringPiece((const char*)pattern, nPattern));
if(!*ppRegExp) return SQLITE_NOMEM;
if(!(*ppRegExp)->re.ok()){
delete *ppRegExp;
*ppRegExp = NULL;
return SQLITE_ERROR;
}
return SQLITE_OK;
}
/** Match with a regular expression */
bool regexpMatch(regexp *pRegExp, const unsigned char *text, int nText){
re2::StringPiece input((const char*)text, nText);
return re2::RE2::PartialMatch(input, pRegExp->re);
}
/** Match with a regular expression and return the extents as *start and *end */
bool regexpMatchExtents(regexp *pRegExp, const unsigned char **pStart, const unsigned char **pEnd, const unsigned char *text, int nText){
bool retval = false;
re2::StringPiece input((const char*)text, nText);
re2::StringPiece match;
retval = pRegExp->re.Match(input, 0, nText, re2::RE2::UNANCHORED, &match, 1);
if(retval){
*pStart = (const unsigned char*)match.data();
*pEnd = (const unsigned char*)match.data() + match.size();
}
return retval;
}
/** Release regular expression */
void regexpRelease(regexp *pRegExp){
delete pRegExp;
}