-
Notifications
You must be signed in to change notification settings - Fork 1
/
jsiRegexp.c
296 lines (260 loc) · 8.57 KB
/
jsiRegexp.c
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#ifndef JSI_LITE_ONLY
#ifndef JSI_AMALGAMATION
#include "jsiInt.h"
#endif
/* TODO: handle delete */
#define ChkRegexp(_this, funcPtr, dest) \
if (_this->vt == JSI_VT_OBJECT && _this->d.obj->ot == JSI_OT_FUNCTION && \
_this->d.obj->__proto__ == interp->RegExp_prototype->d.obj->__proto__ ) { \
skip = 1; \
dest = Jsi_ValueArrayIndex(interp, args, 0); \
} else if (_this->vt != JSI_VT_OBJECT || _this->d.obj->ot != JSI_OT_REGEXP) { \
Jsi_LogError("apply Regexp.%s to a non-regex object\n", funcPtr->cmdSpec->name); \
return JSI_ERROR; \
} else { \
dest = _this; \
}
void Jsi_RegExpFree(Jsi_Regex* re) {
regfree(&re->reg);
Jsi_Free(re);
}
Jsi_Regex* Jsi_RegExpNew(Jsi_Interp *interp, char *regtxt, int eflag)
{
int isNew;
Jsi_HashEntry *hPtr;
int flag = REG_EXTENDED;
char c, *cm, *cp, *ce;
Jsi_Regex *re;
eflag |= JSI_REG_STATIC;
if (!regtxt[0])
return NULL;
hPtr = Jsi_HashEntryFind(interp->regexpTbl, regtxt);
if (hPtr) {
re = Jsi_HashValueGet(hPtr);
if (JSI_REG_STATIC & eflag)
re->eflags |= JSI_REG_STATIC;
return re;
}
cp = regtxt+1;
if (regtxt[0] != '/')
return NULL;
ce = strrchr(cp, '/');
if (ce == cp || !ce)
return NULL;
cm = ce + 1;
while (*cm) {
c = *cm++;
if (c == 'i') flag |= REG_ICASE;
else if (c == 'g') eflag |= JSI_REG_GLOB;
else if (c == 'm') { /* PERL NON-STANDARD */
eflag |= JSI_REG_NEWLINE;
flag |= REG_NEWLINE;
}
#ifdef RE_DOT_NEWLINE
else if (c == 's') { /* PERL NON-STANDARD */
eflag |= JSI_REG_DOT_NEWLINE;
flag |= RE_DOT_NEWLINE;
}
#endif
}
*ce = 0;
regex_t reg;
if (regcomp(®, cp, flag)) {
*ce++ = '/';
Jsi_LogError("Invalid regex string '%s'", cp);
return NULL;
}
*ce++ = '/';
re = Jsi_Calloc(1, sizeof(Jsi_Regex));
assert (re);
re->reg = reg;
re->eflags = eflag;
re->flags = flag;
hPtr = Jsi_HashEntryCreate(interp->regexpTbl, regtxt, &isNew);
assert(hPtr);
Jsi_HashValueSet(hPtr, re);
re->pattern = Jsi_HashKeyGet(hPtr);
return re;
}
int jsi_RegExpValueNew(Jsi_Interp *interp, const char *regtxt, Jsi_Value *ret)
{
Jsi_DString dStr = {};
Jsi_DSAppend(&dStr, "/", regtxt, "/", NULL);
Jsi_Regex *re = Jsi_RegExpNew(interp, Jsi_DSValue(&dStr), 0);
Jsi_DSFree(&dStr);
if (re == NULL)
return JSI_ERROR;
Jsi_Obj *o = Jsi_ObjNewType(interp, JSI_OT_REGEXP);
Jsi_ValueMakeObject(interp,ret, o);
ret->d.obj->d.robj = re;
ret->d.obj->ot = JSI_OT_REGEXP;
return JSI_OK;
}
static int RegExp_constructor(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
Jsi_Value *target;
if (Jsi_FunctionIsConstructor(funcPtr))
target = _this;
else {
Jsi_Obj *o = Jsi_ObjNewType(interp, JSI_OT_REGEXP);
Jsi_ValueMakeObject(interp, *ret, o);
target = *ret;
}
Jsi_Value *v = Jsi_ValueArrayIndex(interp, args, 0);
const char *regtxt = "";
const char *mods = NULL;
if (v) {
if (v->vt == JSI_VT_OBJECT && v->d.obj->ot == JSI_OT_REGEXP) {
Jsi_ValueCopy(interp,target, v);
return JSI_OK;
} else if (v->vt == JSI_VT_STRING) {
regtxt = v->d.s.str;
} else {
return JSI_ERROR;
}
}
Jsi_Value *f = Jsi_ValueArrayIndex(interp, args, 1);
if (f && f->vt == JSI_VT_STRING) {
mods = f->d.s.str;
}
Jsi_DString dStr = {};
Jsi_DSAppend(&dStr, "/", regtxt, "/", mods, NULL);
Jsi_Regex *re = Jsi_RegExpNew(interp, Jsi_DSValue(&dStr), 0);
Jsi_DSFree(&dStr);
if (re == NULL)
return JSI_ERROR;
target->d.obj->d.robj = re;
target->d.obj->ot = JSI_OT_REGEXP;
return JSI_OK;
}
int Jsi_RegExpMatch(Jsi_Interp *interp, Jsi_Value *pattern, const char *v, int *rc, Jsi_DString *dStr)
{
Jsi_Regex *re;
int regexec_flags = 0;
if (rc)
*rc = 0;
if (pattern == NULL || pattern->vt != JSI_VT_OBJECT || pattern->d.obj->ot != JSI_OT_REGEXP) {
Jsi_LogError("expected pattern");
return JSI_ERROR;
}
re = pattern->d.obj->d.robj;
regex_t *reg = &re->reg;
regmatch_t pos;
memset(&pos, 0, sizeof(regmatch_t));
if (dStr)
Jsi_DSInit(dStr);
int r = regexec(reg, v, 1, &pos, regexec_flags);
if (r >= REG_BADPAT) {
char buf[100];
regerror(r, reg, buf, sizeof(buf));
Jsi_LogError("error while matching pattern: %s", buf);
return JSI_ERROR;
}
if (r != REG_NOMATCH) {
if (rc) *rc = 1;
if (dStr && pos.rm_so >= 0 && pos.rm_eo >= 0 && pos.rm_eo >= pos.rm_so)
Jsi_DSAppendLen(dStr, v + pos.rm_so, pos.rm_eo - pos.rm_so);
}
return JSI_OK;
}
int Jsi_RegExpMatches(Jsi_Interp *interp, Jsi_Value *pattern, const char *v, Jsi_Value *ret)
{
Jsi_Regex *re;
int regexec_flags = 0;
Jsi_Value *seq = pattern;
if (seq == NULL || seq->vt != JSI_VT_OBJECT || seq->d.obj->ot != JSI_OT_REGEXP) {
Jsi_ValueMakeNull(interp,ret);
return JSI_OK;
}
re = seq->d.obj->d.robj;
regex_t *reg = &re->reg;
regmatch_t pos[MAX_SUBREGEX];
memset(&pos, 0, MAX_SUBREGEX * sizeof(regmatch_t));
int num_matches = 0, r, n = strlen(v);
Jsi_Obj *obj;
do {
r = regexec(reg, v, MAX_SUBREGEX, pos, regexec_flags);
if (r >= REG_BADPAT) {
char buf[100];
regerror(r, reg, buf, sizeof(buf));
Jsi_LogError("error while matching pattern: %s", buf);
return JSI_ERROR;
}
if (r == REG_NOMATCH) {
if (num_matches == 0) {
Jsi_ValueMakeNull(interp,ret);
return JSI_OK;
}
break;
}
if (num_matches == 0) {
obj = Jsi_ObjNewType(interp, JSI_OT_ARRAY);
obj->__proto__ = interp->Array_prototype;
Jsi_ValueMakeObject(interp,ret, obj);
Jsi_ObjSetLength(interp, ret->d.obj, 0);
}
int i;
for (i = 0; i < MAX_SUBREGEX; ++i) {
if (pos[i].rm_so <= 0 && pos[i].rm_eo <= 0)
break;
if (i && pos[i].rm_so == pos[i-1].rm_so && pos[i].rm_eo == pos[i-1].rm_eo)
continue;
Jsi_Value *val = Jsi_ValueMakeString(interp, NULL,
Jsi_SubstrDup(v, pos[i].rm_so, pos[i].rm_eo - pos[i].rm_so));
jsi_ValueInsertArray(interp, ret, num_matches, val, 0);
num_matches++;
}
if (num_matches == 1 && (!(re->eflags&JSI_REG_GLOB)))
break;
v += pos[0].rm_eo;
n -= pos[0].rm_eo;
regexec_flags |= REG_NOTBOL;
} while (n && pos[0].rm_eo>0);
return JSI_OK;
}
#define FN_regexec JSI_INFO("\
Perform regexp match checking. Returns the array of matches.\
Incompatibility note: does not set properties such as global, lastIndex, etc.")
static int RegexpExecCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
int skip = 0;
Jsi_Value *v;
ChkRegexp(_this, funcPtr, v);
/* TODO: add lastIndex support. */
char *str = Jsi_ValueString(interp,Jsi_ValueArrayIndex(interp, args, skip), NULL);
if (!str) {
Jsi_LogError("expected string");
return JSI_ERROR;
}
return Jsi_RegExpMatches(interp, v, str, *ret);
}
static int RegexpTestCmd(Jsi_Interp *interp, Jsi_Value *args, Jsi_Value *_this,
Jsi_Value **ret, Jsi_Func *funcPtr)
{
int skip = 0, rc = 0;
Jsi_Value *v;
ChkRegexp(_this, funcPtr, v);
char *str = Jsi_ValueString(interp,Jsi_ValueArrayIndex(interp, args, skip), NULL);
if (!str) {
Jsi_LogError("expected string");
return JSI_ERROR;
}
if (Jsi_RegExpMatch(interp, v, str, &rc, NULL) != JSI_OK)
return JSI_ERROR;
Jsi_ValueMakeBool(interp, *ret, rc != 0);
return JSI_OK;
}
static Jsi_CmdSpec regexpCmds[] = {
{ "RegExp", RegExp_constructor, 1, 1, "string", JSI_CMD_IS_CONSTRUCTOR, .help="Create a regexp object"},
{ "exec", RegexpExecCmd, 1, 1, "string", .help="return matching string", .info=FN_regexec },
{ "test", RegexpTestCmd, 1, 1, "string", .help="test if a string matches" },
{ NULL,.help="Commands for managing reqular expression objects" }
};
int jsi_RegexpInit(Jsi_Interp *interp)
{
interp->RegExp_prototype = Jsi_CommandCreateSpecs(interp, "RegExp", regexpCmds, NULL, 0);
return JSI_OK;
}
#endif