-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathRegEx.cpp
391 lines (312 loc) · 11 KB
/
RegEx.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
//-----------------------------------------------------------------------------
// Entaro ChucK Developer!
// This is a Chugin boilerplate, generated by chuginate!
//-----------------------------------------------------------------------------
// this should align with the correct versions of these ChucK files
#include "chugin.h"
#ifdef _WIN32
#include "regex/regex.h"
#else
#include <regex.h>
#endif
#define CK_REGEX_MAX_MATCHES (10)
CK_DLL_SFUN( regex_match );
CK_DLL_SFUN( regex_match2 );
CK_DLL_SFUN( regex_replace );
CK_DLL_SFUN( regex_replaceAll );
// dynamic linking query function
// DLL_QUERY regex_query( Chuck_DL_Query * QUERY )
CK_DLL_QUERY(RegEx)
{
// set name
QUERY->setname( QUERY, "RegEx" );
// begin class
QUERY->begin_class( QUERY, "RegEx", "Object" );
QUERY->doc_class( QUERY, "Class for regular expression matching and replacing in strings. Regex style is POSIX-extended." );
// add match
QUERY->add_sfun( QUERY, regex_match, "int", "match" );
QUERY->add_arg( QUERY, "string", "pattern");
QUERY->add_arg( QUERY, "string", "str");
QUERY->doc_func( QUERY, "Return true if match for pattern is found in str, false otherwise." );
// add match2
QUERY->add_sfun( QUERY, regex_match2, "int", "match" );
QUERY->add_arg( QUERY, "string", "pattern");
QUERY->add_arg( QUERY, "string", "str");
QUERY->add_arg( QUERY, "string[]", "matches");
QUERY->doc_func( QUERY, "Return the match and sub-patterns in matches. matches[0] in the entire matched pattern, matches[1] is the first sub-pattern (if any), and so on." );
// add replace
QUERY->add_sfun( QUERY, regex_replace, "string", "replace" );
QUERY->add_arg( QUERY, "string", "pattern");
QUERY->add_arg( QUERY, "string", "replacement");
QUERY->add_arg( QUERY, "string", "str");
QUERY->doc_func( QUERY, "Replace the first instance of pattern in str with replacement, returning the result." );
// add replaceAll
QUERY->add_sfun( QUERY, regex_replaceAll, "string", "replaceAll" );
QUERY->add_arg( QUERY, "string", "pattern");
QUERY->add_arg( QUERY, "string", "replacement");
QUERY->add_arg( QUERY, "string", "str");
QUERY->doc_func( QUERY, "Replace all instances of pattern in str with replacement, returning the result.");
QUERY->end_class( QUERY );
return TRUE;
}
CK_DLL_SFUN( regex_match )
{
Chuck_String * pattern = GET_NEXT_STRING(ARGS);
Chuck_String * str = GET_NEXT_STRING(ARGS);
regex_t regex;
t_CKBOOL r_free = FALSE;
int result = 0;
if(pattern == NULL)
{
// throw_exception(SHRED, "NullPointerException", "RegEx.match: argument 'pattern' is null");
fprintf( stderr, "RegEx.match(): argument 'pattern' is null\n" );
goto error;
}
if(str == NULL)
{
// throw_exception(SHRED, "NullPointerException", "RegEx.match: argument 'str' is null");
fprintf( stderr, "RegEx.match(): argument 'str' is null\n" );
goto error;
}
result = regcomp(®ex, API->object->str(pattern), REG_EXTENDED | REG_NOSUB);
if(result != 0)
goto error;
r_free = TRUE;
result = regexec(®ex, API->object->str(str), 0, NULL, 0);
RETURN->v_int = (result == 0 ? 1 : 0);
regfree(®ex);
r_free = FALSE;
return;
error:
if(result != 0)
{
char buf[256];
regerror(result, ®ex, buf, 256);
fprintf( stderr, "RegEx.match(): regex reported error: %s\n", buf);
}
if(r_free)
{
regfree(®ex);
r_free = FALSE;
}
RETURN->v_int = 0;
}
CK_DLL_SFUN( regex_match2 )
{
Chuck_String * pattern = GET_NEXT_STRING(ARGS);
Chuck_String * str = GET_NEXT_STRING(ARGS);
Chuck_ArrayInt * matches = (Chuck_ArrayInt *) GET_NEXT_OBJECT(ARGS);
regex_t regex;
t_CKBOOL r_free = FALSE;
size_t i;
regmatch_t *matcharray = NULL;
int result = 0;
if(pattern == NULL)
{
// throw_exception(SHRED, "NullPointerException", "RegEx.match: argument 'pattern' is null");
fprintf( stderr, "RegEx.match(): argument 'pattern' is null\n" );
goto error;
}
if(str == NULL)
{
// throw_exception(SHRED, "NullPointerException", "RegEx.match: argument 'str' is null");
fprintf( stderr, "RegEx.match(): argument 'str' is null\n" );
goto error;
}
if(matches == NULL)
{
// throw_exception(SHRED, "NullPointerException", "RegEx.match: argument 'matches' is null");
fprintf( stderr, "RegEx.match(): argument 'matches' is null\n" );
goto error;
}
// matches->clear();
// bugfix: array.clear() doesnt seem to work?
API->object->array_int_clear( matches );
result = regcomp(®ex, API->object->str(pattern), REG_EXTENDED);
if(result != 0)
goto error;
r_free = TRUE;
matcharray = new regmatch_t[regex.re_nsub+1];
result = regexec(®ex, API->object->str(str), regex.re_nsub+1, matcharray, 0);
RETURN->v_int = (result == 0 ? 1 : 0);
regfree(®ex);
r_free = FALSE;
if(result == 0)
{
for(i = 0; i < regex.re_nsub+1; i++)
{
// create string, no add ref since we are return this without keeping a ref to it
Chuck_String * match = (Chuck_String *)API->object->create_string( VM, "", FALSE );
if( matcharray[i].rm_so >= 0 && matcharray[i].rm_eo > 0 )
{
std::string matchstr = std::string( API->object->str( str ), matcharray[i].rm_so,
matcharray[i].rm_eo-matcharray[i].rm_so );
API->object->set_string(match, matchstr.c_str() );
}
// append to matches
// matches->push_back((t_CKUINT)match);
API->object->array_int_push_back(matches, (t_CKUINT)match);
}
}
CK_SAFE_DELETE_ARRAY(matcharray);
return;
error:
if(result != 0)
{
char errbuf[256];
regerror(result, ®ex, errbuf, 256);
fprintf( stderr, "RegEx.match(): regex reported error: %s\n", errbuf);
}
if(r_free)
{
regfree(®ex);
r_free = FALSE;
}
CK_SAFE_DELETE_ARRAY(matcharray);
RETURN->v_int = 0;
}
CK_DLL_SFUN( regex_replace )
{
Chuck_String * pattern = GET_NEXT_STRING(ARGS);
Chuck_String * replace = GET_NEXT_STRING(ARGS);
Chuck_String * str = GET_NEXT_STRING(ARGS);
// create string, no add ref since we are return this without keeping a ref to it
Chuck_String * ret = (Chuck_String *)API->object->create_string(VM, API->object->str(str), FALSE );
regex_t regex;
t_CKBOOL r_free = FALSE;
regmatch_t * matcharray = NULL;
int result = 0;
if(pattern == NULL)
{
// throw_exception(SHRED, "NullPointerException",
// "RegEx.match: argument 'pattern' is null");
fprintf( stderr, "RegEx.replace(): argument 'pattern' is null\n" );
goto error;
}
if(str == NULL)
{
// throw_exception(SHRED, "NullPointerException",
// "RegEx.match: argument 'str' is null");
fprintf( stderr, "RegEx.replace(): argument 'str' is null\n" );
goto error;
}
if(replace == NULL)
{
// throw_exception(SHRED, "NullPointerException",
// "RegEx.match: argument 'replace' is null");
fprintf( stderr, "RegEx.replace(): argument 'replace' is null\n" );
goto error;
}
// compile regex
result = regcomp(®ex, API->object->str(pattern), REG_EXTENDED);
if(result != 0)
goto error;
r_free = TRUE;
// perform match
matcharray = new regmatch_t[regex.re_nsub+1];
result = regexec(®ex, API->object->str(str), regex.re_nsub+1, matcharray, 0);
regfree(®ex);
r_free = FALSE;
// perform substitution
if(result == 0 && matcharray[0].rm_so >= 0 && matcharray[0].rm_eo >= 0)
{
std::string s = API->object->str(ret);
s.replace(matcharray[0].rm_so,
matcharray[0].rm_eo-matcharray[0].rm_so, API->object->str(replace));
API->object->set_string(ret, s.c_str());
}
CK_SAFE_DELETE_ARRAY(matcharray);
RETURN->v_string = ret;
return;
error:
if(result != 0)
{
char errbuf[256];
regerror(result, ®ex, errbuf, 256);
fprintf( stderr, "RegEx.replace(): regex reported error: %s\n", errbuf);
}
if(r_free)
{
regfree(®ex);
r_free = FALSE;
}
RETURN->v_int = 0;
}
CK_DLL_SFUN( regex_replaceAll )
{
Chuck_String * pattern = GET_NEXT_STRING(ARGS);
Chuck_String * replace = GET_NEXT_STRING(ARGS);
Chuck_String * str = GET_NEXT_STRING(ARGS);
// create string, no add ref since we are return this without keeping a ref to it
Chuck_String * ret = (Chuck_String *)API->object->create_string(VM, API->object->str(str), FALSE );
regex_t regex;
t_CKBOOL r_free = FALSE;
regmatch_t *matcharray = NULL;
int result = 0;
size_t pos = 0;
std::string tempstr;
if(pattern == NULL)
{
// throw_exception(SHRED, "NullPointerException",
// "RegEx.match: argument 'pattern' is null");
fprintf( stderr, "RegEx.replaceAll(): argument 'pattern' is null\n" );
goto error;
}
if(str == NULL)
{
// throw_exception(SHRED, "NullPointerException",
// "RegEx.match: argument 'str' is null");
fprintf( stderr, "RegEx.replaceAll(): argument 'str' is null\n" );
goto error;
}
if(replace == NULL)
{
// throw_exception(SHRED, "NullPointerException",
// "RegEx.match: argument 'replace' is null");
fprintf( stderr, "RegEx.replaceAll(): argument 'replace' is null\n" );
goto error;
}
// compile regex
result = regcomp(®ex, API->object->str(pattern), REG_EXTENDED);
if(result != 0)
goto error;
r_free = TRUE;
// perform match
matcharray = new regmatch_t[regex.re_nsub+1];
tempstr = API->object->str( str );
while(pos < tempstr.size())
{
result = regexec(®ex, API->object->str(ret)+pos, regex.re_nsub+1, matcharray, 0);
// perform substitution
if(result != 0)
break;
else if(matcharray[0].rm_so >= 0 && matcharray[0].rm_eo >= 0)
{
std::string s = API->object->str(ret);
s.replace(pos+matcharray[0].rm_so,
matcharray[0].rm_eo-matcharray[0].rm_so,
API->object->str(replace));
API->object->set_string( ret, s.c_str() );
std::string r = API->object->str( replace );
pos = pos + matcharray[0].rm_so + r.size();
}
}
CK_SAFE_DELETE_ARRAY(matcharray);
regfree(®ex);
r_free = FALSE;
RETURN->v_string = ret;
return;
error:
if(result != 0)
{
char errbuf[256];
regerror(result, ®ex, errbuf, 256);
fprintf( stderr, "RegEx.replaceAll(): regex reported error: %s\n", errbuf);
}
if(r_free)
{
regfree(®ex);
r_free = FALSE;
}
RETURN->v_int = 0;
}