-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbench_Regex.cpp
364 lines (300 loc) · 9.26 KB
/
bench_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
#include <benchmark/benchmark.h>
#include <string>
#include <string_view>
#include <fmt/format.h>
#include <fmt/color.h>
#include <boost/regex.hpp>
#include <boost/optional.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/asio.hpp>
#include <boost/thread.hpp>
constexpr auto getIddExample() {
return R"(!IDD_Version 3.2.0
! *****************************************************************************
! HEADER. BLABLABLA
! **************************************************************************
\group OpenStudio Core
OS:Version,
\unique-object
\required-object
\format singleLine
\min-fields 1
A1, \field Handle
\type handle
\required-field
A2, \field Version Identifier
\type alpha
\default 3.2.0
A3; \field Prerelease Identifier
\type alpha
! A comment << this comment is ignored
\group Another Group
OS:ComponentData,
\memo Defines the meta-data and contents of a Component, that is, a
\memo subset of an OpenStudio Model.
\extensible:1
\min-fields 7
! Comment
A1, \field Handle
\type handle
\required-field
! A1, \field Handle << this comment is ignored
A2; \field Name
\note This should be the name of the Component as listed in the
\note Component Library, or something else.
\type alpha
\required-field
\reference ComponentNames
OS:ConvergenceLimits,
\unique-object
\min-fields 1
A1, \field Handle
\type handle
\required-field
N1; \field Minimum System Timestep
\note 0 sets the minimum to the zone timestep (ref: Timestep)
\note 1 is normal (ratchet down to 1 minute)
\note setting greater than zone timestep (in minutes) will effectively set to zone timestep
\type integer
\units minutes
\minimum 0
\maximum 60
)";
}
namespace openstudio {
inline std::string ascii_to_lower_copy(std::string_view input) {
std::string result{input};
constexpr auto to_lower_diff = 'a' - 'A';
for (auto& c : result) {
if (c >= 'A' && c <= 'Z') {
c += to_lower_diff;
}
}
return result;
}
inline std::string_view ascii_trim_left(std::string_view s) {
return s.substr(std::min(s.find_first_not_of(" \f\n\r\t\v"), s.size()));
}
inline std::string_view ascii_trim_right(std::string_view s) {
return s.substr(0, std::min(s.find_last_not_of(" \f\n\r\t\v") + 1, s.size()));
}
inline std::string_view ascii_trim(std::string_view s) {
return ascii_trim_left(ascii_trim_right(s));
}
inline void ascii_trim(std::string& str) {
str = std::string(ascii_trim(std::string_view(str)));
}
} // namespace openstudio
namespace iddRegex {
const boost::regex& commentOnlyLine() {
static const boost::regex result("^[\\s\\t]*[!](.*)");
return result;
}
/// Match group identifier
/// matches[1], group name
const boost::regex& group() {
static const boost::regex result("^[\\\\][gG]roup[\\s\\t]*(.*)");
return result;
}
const boost::regex& line() {
static const boost::regex result("^([^!]*?)[,;](.*)");
return result;
}
/// Match the closing field in an idd object
/// matches[1], all previous text
/// matches[2], the last field
const boost::regex& closingField() {
static const boost::regex result("(.*)([AN][0-9]+[\\s\\t]*[;].*?)$");
return result;
}
/// Match a field or object level comment
/// matches[1], after '\' until next '\'
/// matches[2], after second '\' (may be empty)
const boost::regex& metaDataComment() {
static const boost::regex result("^[\\s\\t]*?[\\\\]([^\\\\]*)(.*)");
return result;
}
} // namespace iddRegex
static void BM_Trim_Boost(benchmark::State& state) {
for (auto _ : state) {
std::stringstream is(getIddExample());
std::string line;
while (getline(is, line)) {
boost::trim(line);
}
}
}
static void BM_Trim_ASCII(benchmark::State& state) {
for (auto _ : state) {
std::stringstream is(getIddExample());
std::string line;
while (getline(is, line)) {
openstudio::ascii_trim(line);
}
}
}
// Register the function as a benchmark
BENCHMARK(BM_Trim_Boost);
BENCHMARK(BM_Trim_ASCII);
void parseOld(std::istream& is) {
std::string line;
// this will contain matches to regular expressions
boost::smatch matches;
[[maybe_unused]] int nCommentOnlys = 0;
[[maybe_unused]] int nGroups = 0;
[[maybe_unused]] int nObjects = 0;
[[maybe_unused]] bool headerClosed = false;
std::string objectName;
while (getline(is, line)) {
openstudio::ascii_trim(line);
if (line.empty()) {
headerClosed = true;
continue;
}
if (boost::regex_match(line, iddRegex::commentOnlyLine())) {
++nCommentOnlys;
continue;
}
if (boost::regex_search(line, matches, iddRegex::group())) {
headerClosed = true;
std::string groupName(matches[1].first, matches[1].second);
++nGroups;
continue;
}
headerClosed = true;
// fmt::print("none of the above, , headerClosed={}\n", headerClosed);
//int beginLineNum(lineNum);
bool foundClosingLine(false);
if (boost::regex_search(line, matches, iddRegex::line())) {
objectName = std::string(matches[1].first, matches[1].second);
openstudio::ascii_trim(objectName);
++nObjects;
}
// continue reading until we have seen the entire object
// last line will be thrown away, requires empty line between objects in idd
while (getline(is, line)) {
// fmt::print(fmt::fg(fmt::color::dark_gray), ">>> {}, {}\n", lineNum, line);
// remove whitespace
openstudio::ascii_trim(line);
// found lat field and this is not a field comment
if (foundClosingLine && (!boost::regex_match(line, iddRegex::metaDataComment()))) {
// fmt::print(fmt::fg(fmt::color::red), "!metaDataComment : BREAK");
break;
}
if (!line.empty()) {
// if the line is not empty add it to the text
// note, text does not include newlines
// check if we have found the last field
if (boost::regex_match(line, iddRegex::closingField())) {
foundClosingLine = true;
// fmt::print(fmt::fg(fmt::color::lime_green), "closingField!\n");
}
}
}
}
BOOST_ASSERT(nCommentOnlys == 5);
BOOST_ASSERT(nGroups == 2);
BOOST_ASSERT(nObjects == 3);
}
void parseNew(std::istream& is) {
std::string line;
// this will contain matches to regular expressions
boost::smatch matches;
[[maybe_unused]] int nCommentOnlys = 0;
[[maybe_unused]] int nGroups = 0;
[[maybe_unused]] int nObjects = 0;
[[maybe_unused]] bool headerClosed = false;
std::string objectName;
while (getline(is, line)) {
openstudio::ascii_trim(line);
if (line.empty()) {
continue;
}
if (line[0] == '!') {
++nCommentOnlys;
continue;
}
if (line.rfind("\\group ") == 0) {
std::string groupName(line.substr(7));
openstudio::ascii_trim(groupName);
++nGroups;
continue;
}
headerClosed = true;
// fmt::print("none of the above, , headerClosed={}\n", headerClosed);
//int beginLineNum(lineNum);
bool foundClosingLine(false);
// Throw away everything after the first '!' if any
if (auto pos = line.find('!'); pos != std::string::npos) {
line = line.substr(0, pos);
}
// if (boost::regex_search(line, matches, iddRegex::line())) {
if (auto pos = line.find_first_of(",;"); pos != std::string::npos) {
objectName = line.substr(0, pos);
openstudio::ascii_trim(objectName);
++nObjects;
} else {
fmt::print(fmt::fg(fmt::color::red), "ERROR: CANNOT PARSE objectName in line '{}'", line);
}
// continue reading until we have seen the entire object
// last line will be thrown away, requires empty line between objects in idd
while (getline(is, line)) {
// fmt::print(fmt::fg(fmt::color::dark_gray), ">>> {}, {}\n", lineNum, line);
// remove whitespace
openstudio::ascii_trim(line);
// found last field and this is not a field comment
if (foundClosingLine && (line[0] != '\\')) {
// fmt::print(fmt::fg(fmt::color::red), "!metaDataComment : BREAK");
break;
}
if (!line.empty()) {
// if the line is not empty add it to the text
// note, text does not include newlines
// check if we have found the last field
int pos = 0;
for (auto& c : line) {
if (pos == 0) {
if (!((c == 'A') || (c == 'N'))) {
break;
}
} else {
if (c == ';') {
foundClosingLine = true;
break;
} else if (c < '0' || c > '9') {
break;
}
}
}
}
}
}
BOOST_ASSERT(nCommentOnlys == 5);
BOOST_ASSERT(nGroups == 2);
BOOST_ASSERT(nObjects == 3);
}
static void BM_CommentOnly_Current(benchmark::State& state) {
for (auto _ : state) {
std::stringstream is(getIddExample());
parseOld(is);
}
}
static void BM_CommentOnly_New(benchmark::State& state) {
for (auto _ : state) {
std::stringstream is(getIddExample());
parseNew(is);
}
}
BENCHMARK(BM_CommentOnly_Current);
BENCHMARK(BM_CommentOnly_New);
// Run the benchmark
BENCHMARK_MAIN();
/*
int main() {
std::stringstream is(getIddExample());
std::string line;
while (getline(is, line)) {
openstudio::ascii_trim(line);
}
}
*/