Newer
Older
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <vector>
#include <list>
#include <string>
#include <algorithm>
#include <functional>
#include "MantidGeometry/RegexSupport.h"
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
namespace Mantid
{
namespace StrFunc
{
template<typename T>
int
StrComp(const std::string& Text,const boost::regex& Re,T& Aout,
const int compNum)
/*!
Find the match in regular expression and places number in Aout
\param Sx :: string to search
\param Re :: regular expression to use
\param Aout :: Place to put Unit found
\param compNum :: item to extract [0:N-1]
\returns 0 on failure and 1 on success
*/
{
boost::sregex_iterator m1(Text.begin(),Text.end(),Re);
boost::sregex_iterator empty;
// Failed search
if (m1==empty ||
static_cast<int>((*m1).size())<=compNum+1)
return 0;
return convert( (*m1)[compNum+1].str(),Aout);
}
template<>
int
StrComp(const std::string& Text,const boost::regex& Re,
std::string& Aout,const int compNum)
/*!
Find the match in regular expression and places number in Aout
\param Sx :: string to search
\param Re :: regular expression to use
\param Aout :: Place to put Unit found
\param compNum :: item to extract [0:N-1]
\returns 0 on failure and 1 on success
*/
{
boost::sregex_iterator m1(Text.begin(),Text.end(),Re);
boost::sregex_iterator empty;
// Failed search
if (m1==empty ||
static_cast<int>((*m1).size())<=compNum+1)
return 0;
Aout=(*m1)[compNum+1].str();
return 1;
}
int
StrLook(const char* Sx,const boost::regex& Re)
/*!
Find the match in regular expression and return 1 if good match
\param Sx :: string to match
\param Re :: regular expression to use
\returns 0 on failure and 1 on success
*/
{
boost::cmatch ans;
if (boost::regex_search(Sx,ans,Re,boost::match_default))
return 1;
return 0;
}
int
StrLook(const std::string& Text,const boost::regex& Re)
/*!
Find the match in regular expression and return 1 if good match
\param Sx :: string to match
\param Re :: regular expression to use
\returns 0 on failure and 1 on success
*/
{
boost::sregex_iterator m1(Text.begin(),Text.end(),Re);
boost::sregex_iterator empty;
// Failed search
if (m1==empty)
return 0;
return 1;
}
std::vector<std::string>
StrParts(std::string Sdx,const boost::regex& Re)
/*!
Find the match, return the disected items.
Note it is complementary to support.h StrParts(Sdx)
\param Sdx :: Input string (note implicit copy since altered)
\param Re :: Regular expression for separator component
\returns vector of string components
*/
{
std::vector<std::string> Aout;
boost::regex_split(std::back_inserter(Aout), Sdx, Re); // Destroys string in process
return Aout;
}
template<typename T>
int
StrFullCut(std::string& Text,const boost::regex& Re,T& Aout,
const int compNum)
/*!
Find the match, return the disected items:
Then remove the whole of the match
The regexpression must have one ( ) around the area to extract
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Re :: regular expression to use.
\param Aout :: Value to extract
\param item :: Index of matches [0->N-1] (-1 :: whole match)
\retval 0 :: failed to match the string or there were no parts to match.
\retval 1 :: success
*/
{
boost::sregex_iterator m1(Text.begin(),Text.end(),Re);
boost::sregex_iterator empty;
if (m1==empty)
return 0;
if (compNum+1>=static_cast<int>(m1->size()))
return 0;
// StrFunc::Convert to required output form
if (!StrFunc::convert((*m1)[compNum+1].str(),Aout))
return 0;
// Found object
Text.erase(m1->position(0),(*m1)[0].str().length());
return 1;
}
template<typename T>
int
StrFullCut(std::string& Text,const boost::regex& Re,std::vector<T>& Aout)
/*!
Find the match, return the disected items:
Then remove the whole of the match
The regexpression must have one ( ) around the area to extract
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Re :: regular expression to use.
\param Aout :: Values to extract
\retval 0 :: failed to match the string or there were no parts to match.
\retval 1 :: success
*/
{
boost::sregex_iterator m1(Text.begin(),Text.end(),Re);
boost::sregex_iterator empty;
if (m1==empty)
return 0;
std::cerr<<"SFC :: "<<std::endl;
Aout.clear();
const int M0=m1->position(0);
int ML=M0;
for(;m1!=empty;m1++)
{
for(unsigned int index=1;index<m1->size();index++)
{
T tmp;
if (!StrFunc::convert((*m1)[index].str(),tmp))
return 0;
Aout.push_back(tmp);
}
ML=m1->position(0)+(*m1)[0].str().length();
}
std::cerr<<"SFC :: "<<M0<<" "<<ML<<std::endl;
// Found object
Text.erase(M0,ML);
return 1;
}
template<>
int
StrFullCut(std::string& Text,const boost::regex& Re,
std::vector<std::string>& Aout)
/*!
Find the match, return the disected items:
Then remove the whole of the match
The regexpression must have one ( ) around the area to extract
This is specialised for string and thus does not need
a convert.
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Re :: regular expression to use.
\param Aout :: Values to extract
\retval 0 :: failed to match the string or there were no parts to match.
\retval 1 :: success
*/
{
boost::sregex_iterator m1(Text.begin(),Text.end(),Re);
boost::sregex_iterator empty;
if (m1==empty)
return 0;
const int M0=m1->position(0);
int ML=M0;
for(;m1!=empty;m1++)
{
ML=m1->position(0)+(*m1)[0].str().length();
for(unsigned int index=1;index<m1->size();index++)
Aout.push_back((*m1)[index].str());
}
std::cerr<<"SFC :: "<<M0<<" "<<ML<<std::endl;
// Found object
Text.erase(M0,ML);
return 1;
}
int
StrRemove(std::string& Sdx,std::string& Extract,const boost::regex& Re)
/*!
Find the match, return the string - the bit
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Extract :: Full piece extracted
\param Re :: regular expression to use.
\retval 0 :: failed to match the string or there were no parts to match.
\retval 1 :: succes
*/
{
boost::sregex_token_iterator empty;
boost::cmatch ans;
if (boost::regex_search(Sdx.c_str(),ans,Re,boost::match_default))
{
if (!ans[0].matched) // no match
return 0;
std::string xout(ans[0].first,ans[0].second);
Extract=std::string(ans[0].first,ans[0].second);
Sdx= std::string(Sdx.c_str(),ans[0].first)+
std::string(ans[0].second);
return 1;
}
return 0;
}
template<typename T>
int
StrFullSplit(const std::string& text,
const boost::regex& Re,std::vector<T>& Aout)
/*!
Find the match, return the disected items
The rege xpression must have ( ) around the area to extract.
The function appends the results onto Aout.
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Re :: regular expression to use.
\param Aout :: vector to add components to.
\retval 0 :: failed to match the string or there were no parts to match.
\retval Number :: number of components added to Aout.
*/
{
boost::sregex_iterator m1(text.begin(),text.end(),Re);
boost::sregex_iterator empty;
for(;m1!=empty;m1++)
for(unsigned int index=1;index<m1->size();index++)
{
T tmp;
if (!StrFunc::convert((*m1)[index].str(),tmp))
return static_cast<int>(Aout.size());
Aout.push_back(tmp);
}
return static_cast<int>(Aout.size());
}
template<typename T>
int
StrSingleSplit(const std::string& text,
const boost::regex& Re,std::vector<T>& Aout)
/*!
Find the match, return the disected items
The regexpression must have ( ) around the area to extract.
The function appends the results onto Aout.
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Re :: regular expression to use.
\param Aout :: vector to add components to.
\retval 0 :: failed to match the string or there were no parts to match.
\retval Number :: number of components added to Aout.
*/
{
boost::sregex_iterator m1(text.begin(),text.end(),Re);
boost::sregex_iterator empty;
if (m1!=empty)
for(unsigned int index=1;index<m1->size();index++)
{
T tmp;
if (!StrFunc::convert((*m1)[index].str(),tmp))
return static_cast<int>(Aout.size());
Aout.push_back(tmp);
}
return static_cast<int>(Aout.size());
}
template<>
int
StrSingleSplit(const std::string& text,
const boost::regex& Re,std::vector<std::string>& Aout)
/*!
Find the match, return the disected items
The regexpression must have ( ) around the area to extract.
The function appends the results onto Aout.
- Specialised to avoid convert for std::string
\param Sdx :: string to split, is returned with the string after
the find (if successful).
\param Re :: regular expression to use.
\param Aout :: vector to add components to.
\retval 0 :: failed to match the string or there were no parts to match.
\retval Number :: number of components added to Aout.
*/
{
boost::sregex_iterator m1(text.begin(),text.end(),Re);
boost::sregex_iterator empty;
if (m1!=empty)
{
for(unsigned int index=1;index<m1->size();index++)
Aout.push_back((*m1)[index].str());
return 1;
}
return 0;
}
int
findPattern(std::istream& fh,const boost::regex& Re,std::string& Out)
/*!
Finds the start of the tally
\param fh :: open file stream
\param Re :: regular expression to match
\param Out :: string to place match
\returns count of line that matched (or zero on failure)
*/
{
char ss[512]; // max of 512
boost::cmatch ans;
int cnt=1;
fh.getline(ss,512,'\n');
while(!fh.fail() && !boost::regex_search(ss,ans,Re,boost::match_default))
{
fh.getline(ss,512,'\n');
cnt++;
}
if (fh.fail())
return 0;
Out = ss;
return cnt;
}
template<typename T>
int
findComp(std::istream& fh,const boost::regex& Re,T& Out)
/*!
Finds the start of the tally
\param fh :: open file stream
\param Re :: regular expression to match
\param Out :: component in ( ) expression must be first.
\returns count of line that matched (or zero on failure)
*/
{
char ss[512]; // max of 512
boost::cmatch ans;
int cnt(1);
fh.getline(ss,512,'\n');
while(!fh.fail() && !boost::regex_search(ss,ans,Re,boost::match_default))
{
cnt++;
fh.getline(ss,512,'\n');
}
if (ans[0].matched)
{
std::string xout(ans[1].first,ans[1].second);
if (StrFunc::convert(xout,Out))
return cnt;
}
return 0;
}
template<>
int
findComp(std::istream& fh,const boost::regex& Re,std::string& Out)
/*!
Finds the start of the tally
\param fh :: open file stream
\param Re :: regular expression to match
\param Out :: component in ( ) expression must be first.
\returns count of line that matched (or zero on failure)
*/
{
char ss[512]; // max of 512
boost::cmatch ans;
int cnt(1);
fh.getline(ss,512,'\n');
while(!fh.fail() && !boost::regex_search(ss,ans,Re,boost::match_default))
{
cnt++;
fh.getline(ss,512,'\n');
}
if (ans[0].matched)
{
Out=std::string(ans[1].first,ans[1].second);
return cnt;
}
return 0;
}
/// \cond TEMPLATE
template int StrFullCut(std::string&,const boost::regex&,
std::string&,const int);
template int StrFullCut(std::string&,const boost::regex&,int&,const int);
template int StrFullCut(std::string&,const boost::regex&,double&,const int);
// --------------------------------------------------------
template int StrFullSplit(const std::string&,const boost::regex&,
std::vector<int>&);
template int StrFullSplit(const std::string&,const boost::regex&,
std::vector<double>&);
template int StrFullSplit(const std::string&,const boost::regex&,
std::vector<std::string>&);
// --------------------------------------------------------
template int StrSingleSplit(const std::string&,const boost::regex&,
std::vector<int>&);
template int StrSingleSplit(const std::string&,const boost::regex&,
std::vector<double>&);
// --------------------------------------------------------
template int StrComp(const std::string&,const boost::regex&,double&,const int);
template int StrComp(const std::string&,const boost::regex&,int&,const int);
// ------------------------------------------------------------------
template int findComp(std::istream&,const boost::regex&,int&);
/// \endcond TEMPLATE
} // NAMESPACE StrFunc
} // NAMESPACE MAntid