Menu

[r8]: / src / wrapregex.cpp  Maximize  Restore  History

Download this file

248 lines (213 with data), 4.9 kB

  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
#include <iostream>
#include <string>
#include <ctype.h>
#include <stdexcept>
#include "wrapregex.h"
#include "contexthandler.h"
using namespace std;
WrapRegex::WrapRegex(
const string& pattern,
bool matchCase,
const string& replaceParameter,
const int arrayLengthParameter) :
replace(replaceParameter),
arrayLength(arrayLengthParameter)
{
if (pattern.empty() || pattern == ".*")
{
disabled = true;
return;
}
disabled = false;
matchArray = new int[arrayLength];
// compile
int optionsFlag = (matchCase) ? PCRE_UTF8 : PCRE_CASELESS | PCRE_UTF8;
const char *errorPointer;
int errorOffset;
if ((patternStructure = pcre_compile(
pattern.c_str(),
optionsFlag,
&errorPointer,
&errorOffset,
NULL)) == NULL)
{
throw runtime_error(errorPointer);
}
patternExtraStructure = pcre_study(patternStructure, 0, &errorPointer);
}
WrapRegex::~WrapRegex()
{
if (disabled)
return;
try {
pcre_free(patternStructure);
pcre_free(patternExtraStructure);
delete[] matchArray;
}
catch (...)
{
throw runtime_error("Wrapregex::~WrapRegex");
}
}
int WrapRegex::matchPatternGlobal(
string &buffer,
vector<ContextMatch> &matchVector,
unsigned elementCount,
int context)
{
if (disabled)
return 0;
return matchPatternGlobal_(
buffer.c_str(),
buffer.size(),
matchVector,
elementCount,
context);
}
string WrapRegex::replaceGlobal(
const string& buffer,
int *matchCount)
{
*matchCount = 0;
if (disabled)
return buffer;
char *s = (char *)buffer.c_str();
string output, match;
output.reserve(buffer.size());
while ((returnValue = pcre_exec(
patternStructure,
patternExtraStructure,
s,
strlen(s),
0,
0,
matchArray,
arrayLength)) >= 0)
{
++(*matchCount);
output.append(s, matchArray[0]);
match.clear();
match.append(s + matchArray[0], matchArray[1] - matchArray[0]);
output.append(getInterpolatedString_(s, (char *)replace.c_str()));
s += matchArray[1];
}
output.append(s);
return output;
}
int WrapRegex::matchPatternGlobal_(
const char *buffer,
size_t buflen,
vector<ContextMatch> &matchVector,
unsigned elementCount,
int context)
{
if (disabled)
return 0;
char *s, *origin;
int matchcount;
size_t offset;
ContextMatch match;
s = origin = (char *)buffer;
matchcount = 0;
offset = 0;
while ((returnValue = pcre_exec(
patternStructure,
patternExtraStructure,
s,
buflen,
offset,
0,
matchArray,
arrayLength)) >= 0)
{
++matchcount;
if (context)
{
match = ContextHandler::getContext(
s + matchArray[0],
matchArray[1] - matchArray[0],
origin,
context);
}
else
{
match.prelog = match.postlog = "";
match.match.assign(s + matchArray[0], matchArray[1] - matchArray[0]);
}
// record element and offset information
match.elementCount = elementCount;
match.offset = matchArray[0];
if (replace != "")
match.replace = getInterpolatedString_(s, (char *)replace.c_str());
matchVector.push_back(match);
if ((offset = matchArray[1]) >= buflen)
break;
}
return matchcount;
}
string WrapRegex::getInterpolatedString_(char *buffer, char *source)
{
if (disabled)
return "";
char *s, *origin;
s = origin = (char *)source;
string interpol_string;
int escapeState = false;
for (; *s; ++s)
{
if (*s == '\\')
{
escapeState = (escapeState) ? false : true;
if (escapeState)
{
if (isdigit(*(s + 1)))
{
char *number, *it;
number = s + 1;
for (it = number; *it && isdigit(*(it + 1)); ++it)
;
size_t len = it - s;
char *tmp = new char[len + 1];
memcpy(tmp, number, sizeof(char) * len);
*(tmp + len) = '\0';
int i = atoi(tmp);
delete[] tmp;
interpol_string += getSubpattern_(buffer, i);
s += len;
escapeState = false;
}
else if (*(s + 1) == 't')
{
interpol_string += '\t';
++s;
escapeState = false;
}
else if (*(s + 1) == 'n')
{
interpol_string += '\n';
++s;
escapeState = false;
}
else
interpol_string += *s;
}
else
interpol_string += *s;
}
else
interpol_string += *s;
}
return interpol_string;
}
string WrapRegex::getSubpattern_(char *s, unsigned subpattern)
{
if (disabled)
return "";
const char *sub;
int ret = pcre_get_substring(s, matchArray, returnValue, subpattern, &sub);
if (ret == PCRE_ERROR_NOSUBSTRING || ret == PCRE_ERROR_NOMEMORY)
return "";
string subString(sub);
pcre_free((char *)sub);
return subString;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.