This repository has been archived by the owner on Jun 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cpp
387 lines (328 loc) · 8.44 KB
/
main.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
//
// main.cc
//
// main front-end
////////////////////////////////////////////////////////////////////////////////
// Copyright 1999 Tatsuo Baba
//
// 1999.11.24 Tatsuo Baba
//
// You may distribute under the terms of either the GNU General Public
// License or the Artistic License, as specified in the perl_license.txt file.
////////////////////////////////////////////////////////////////////////////////
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include "sv.h"
#include "bregexp.h"
#include "global.h"
#include "intreg.h"
extern "C"
char* BRegexpVersion(void)
{
// 2003.11.01 Karoto : Change version info
// 2006.07.14 genta : Change version info
static char version[] = "Bregexp.dll V1.02 for SAKURA "
__DATE__;
return version;
}
/*
BMatchEx : enhanved version of BMatch
to specify start point of the target string
2003.11.01 Karoto : Add "targetbegp" parameter to BMatch, and change API name
*/
extern "C"
int BMatchEx(char* str, char *targetbegp, char *target,char *targetendp,
BREGEXP **charrxp,char *msg)
{
if (msg == NULL) // no message area
return -1;
msg[0] = '\0'; // ensure no error
regexp **rxp = (regexp**)charrxp;
if (rxp == NULL) {
strcpy(msg,"invalid BREGEXP parameter");
return -1;
}
regexp *rx = *rxp; // same string before ?
int plen;
// 2003.11.01 Karoto : Add parameter check for targetbegp
if (targetbegp == NULL || targetbegp > target
|| target == NULL || targetendp == NULL
|| target >= targetendp) { // bad targer parameter ?
strcpy(msg,"invalid target parameter");
return -1;
}
if (str == NULL || str[0] == '\0') { // null string
if (rx) // assume same string
goto readytogo;
strcpy(msg,"invalid reg parameter");
return -1;
}
plen = strlen(str);
if (rx && !(rx->pmflags & PMf_TRANSLATE) &&
rx->paraendp - rx->parap == plen && memcmp(str,rx->parap,plen) == 0)
goto readytogo;
if (rx) // delete old regexp block
BRegfree((BREGEXP*)rx);
rx = compile(str,plen,msg);
if (rx == NULL)
return -1;
*rxp = rx; // set new regexp
readytogo:
if (rx->pmflags & PMf_SUBSTITUTE) {
BRegfree((BREGEXP*)rx);
*rxp = NULL;
strcpy(msg,"call BSubst");
return -1;
}
if (rx->outp) { // free old result string
delete [] rx->outp;
rx->outp = NULL;
}
if (rx->prelen == 0) { // no string
return 0;
}
// 2003.11.01 Karoto
BOOL matched = bregexec(rx, target, targetendp, targetbegp , 0, 1, msg);
if (matched && rx->nparens && rx->endp[1] > rx->startp[1]) {
int len = rx->endp[1] - rx->startp[1];
char *tp = new char[len+1];
if (tp == NULL) {
strcpy(msg,"match out of space");
return -1;
}
memcpy(tp,rx->startp[1],len);
rx->outp = tp;
rx->outendp = tp + len;
*(rx->outendp) = '\0';
}
return msg[0] == '\0' ? matched: -1 ;
}
/*
BMatch
2003.11.01 Karoto : call BMatchEx() with specialized parameter
*/
extern "C"
int BMatch(char* str,char *target,char *targetendp,
BREGEXP **charrxp,char *msg)
{
return BMatchEx(str, target, target, targetendp, charrxp, msg);
}
/*
BSubstEx : enhanved version of BSubst
to specify start point of the target string
2003.11.01 Karoto : Add "targetbegp" parameter to BSubst, and change API name
*/
extern "C"
int BSubstEx(char* str,char *targetbegp, char *target,char *targetendp,
BREGEXP **charrxp,char *msg)
{
if (msg == NULL) // no message area
return -1;
msg[0] = '\0'; // ensure no error
regexp **rxp = (regexp**)charrxp;
if (rxp == NULL) {
strcpy(msg,"invalid BREGEXP parameter");
return -1;
}
regexp *rx = *rxp; // same string before ?
int plen;
// 2003.11.01 Karoto : Add parameter check for targetbegp
if (targetbegp == NULL || targetbegp > target
|| target == NULL || targetendp == NULL
|| target >= targetendp) { // bad targer parameter ?
strcpy(msg,"invalid target parameter");
return -1;
}
if (str == NULL || str[0] == '\0') { // null string
if (rx) // assume same string
goto readytogo;
strcpy(msg,"invalid reg parameter");
return -1;
}
plen = strlen(str);
if (rx && !(rx->pmflags & PMf_TRANSLATE) &&
rx->paraendp - rx->parap == plen && memcmp(str,rx->parap,plen) == 0)
goto readytogo;
if (rx) // delete old regexp block
BRegfree((BREGEXP*)rx);
rx = compile(str,plen,msg);
if (rx == NULL)
return -1;
*rxp = rx; // set new regexp
readytogo:
if (rx->outp) { // free old result string
delete [] rx->outp;
rx->outp = NULL;
}
if (rx->prelen == 0) { // no string
return -1;
}
if (rx->pmflags & PMf_SUBSTITUTE) {
return subst(rx,target,targetendp,targetbegp,msg);
}
// 2003.11.01 Karoto
BOOL matched = bregexec(rx, target, targetendp, targetbegp, 0, 1, msg);
if (matched && rx->nparens && rx->endp[1] > rx->startp[1]) {
int len = rx->endp[1] - rx->startp[1];
char *tp = new char[len+1];
if (tp == NULL) {
strcpy(msg,"match out of space");
return -1;
}
memcpy(tp,rx->startp[1],len);
rx->outp = tp;
rx->outendp = tp + len;
*(rx->outendp) = '\0';
}
return msg[0] == '\0' ? matched: -1 ;
}
/*
BSubst
2003.11.01 Karoto : call BSubstEx() with specialized parameter
*/
extern "C"
int BSubst(char* str,char *target,char *targetendp,
BREGEXP **charrxp,char *msg)
{
return BSubstEx(str, target, target, targetendp, charrxp, msg);
}
extern "C"
int BTrans(char* str,char *target,char *targetendp,
BREGEXP **charrxp,char *msg)
{
if (msg == NULL) // no message area
return -1;
msg[0] = '\0'; // ensure no error
regexp **rxp = (regexp**)charrxp;
if (rxp == NULL) {
strcpy(msg,"invalid BREGEXP parameter");
return -1;
}
regexp *rx = *rxp; // same string before ?
int plen;
if (target == NULL || targetendp == NULL
|| target >= targetendp) { // bad targer parameter ?
strcpy(msg,"invalid target parameter");
return -1;
}
if (str == NULL || str[0] == '\0') { // null string
if (rx) // assume same string
goto readytogo;
strcpy(msg,"invalid reg parameter");
return -1;
}
plen = strlen(str);
if (rx && rx->pmflags & PMf_TRANSLATE &&
rx->paraendp - rx->parap == plen && memcmp(str,rx->parap,plen) == 0)
goto readytogo;
if (rx) // delete old regexp block
BRegfree((BREGEXP*)rx);
rx = compile(str,plen,msg);
if (rx == NULL)
return -1;
*rxp = rx; // set new regexp
readytogo:
if (rx->outp) { // free old result string
delete [] rx->outp;
rx->outp = NULL;
}
if (!(rx->pmflags & PMf_TRANSLATE)) {
BRegfree((BREGEXP*)rx);
*rxp = NULL;
strcpy(msg,"no translate parameter");
return -1;
}
int matched = trans(rx,target,targetendp,msg);
return msg[0] == '\0' ? matched: -1 ;
}
extern "C"
int BSplit(char* str,char *target,char *targetendp,
int limit,BREGEXP **charrxp,char *msg)
{
if (msg == NULL) // no message area
return -1;
msg[0] = '\0'; // ensure no error
regexp **rxp = (regexp**)charrxp;
if (rxp == NULL) {
strcpy(msg,"invalid BREGEXP parameter");
return -1;
}
regexp *rx = *rxp; // same string before ?
int plen;
if (target == NULL || targetendp == NULL
|| target >= targetendp) { // bad targer parameter ?
strcpy(msg,"invalid target parameter");
return -1;
}
if (str == NULL || str[0] == '\0') { // null string
if (rx) // assume same string
goto readytogo;
strcpy(msg,"invalid reg parameter");
return -1;
}
plen = strlen(str);
if (rx && !(rx->pmflags & PMf_TRANSLATE) &&
rx->paraendp - rx->parap == plen && memcmp(str,rx->parap,plen) == 0)
goto readytogo;
if (rx) // delete old regexp block
BRegfree((BREGEXP*)rx);
rx = compile(str,plen,msg);
if (rx == NULL)
return -1;
*rxp = rx; // set new regexp
readytogo:
if (rx->splitp) {
delete [] rx->splitp;
rx->splitp = NULL;
}
int ctr = split(rx,target,targetendp,limit,msg);
return msg[0] == '\0' ? ctr: -1 ;
}
extern "C"
void BRegfree(BREGEXP *reg)
{
regexp *r = (regexp*)reg;
if (!r)
return;
if (r->parap) {
delete [] r->parap;
r->parap = NULL;
}
if (r->outp) {
delete [] r->outp;
r->outp = NULL;
}
if (r->splitp) {
delete [] r->splitp;
r->splitp = NULL;
}
if (r->precomp) {
delete [] r->precomp;
r->precomp = NULL;
}
if (r->subbase) {
delete [] r->subbase;
r->subbase = NULL;
}
if (r->regmust) {
sv_free(r->regmust);
r->regmust = NULL;
}
if (r->regstart) {
sv_free(r->regstart);
r->regstart = NULL;
}
if (r->repstr) {
delete []r->repstr->startp;
delete []r->repstr->dlen;
delete r->repstr;
}
if (r->transtblp) {
delete []r->transtblp;
}
delete [] r->startp;
delete [] r->endp;
delete [] r;
}