Newer
Older
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidKernel/MultiFileNameParser.h"
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/InstrumentInfo.h"
#include "MantidKernel/Exception.h"
#include <algorithm>
#include <numeric>
#include <iterator>
#include <cassert>
#include <ctype.h>
#include <boost/regex.hpp>
#include <boost/tokenizer.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/regex.hpp>
#include <boost/bind.hpp>
#include <Poco/Path.h>
namespace Mantid
{
namespace Kernel
{
namespace MultiFileNameParsing
{
/////////////////////////////////////////////////////////////////////////////
// Static constants.
/////////////////////////////////////////////////////////////////////////////
namespace Regexs
{
const std::string INST = "([A-Za-z]+|PG3|pg3)";
const std::string UNDERSCORE = "(_{0,1})";
const std::string SPACE = "(\\s*)";
const std::string COMMA = "(" + SPACE + "," + SPACE + ")";
const std::string PLUS = "(" + SPACE + "\\+" + SPACE + ")";
const std::string MINUS = "(" + SPACE + "\\-" + SPACE + ")";
const std::string COLON = "(" + SPACE + ":" + SPACE + ")";
const std::string SINGLE = "([0-9]+)";
const std::string RANGE = "(" + SINGLE + COLON + SINGLE + ")";
const std::string STEP_RANGE = "(" + SINGLE + COLON + SINGLE + COLON + SINGLE + ")";
const std::string ADD_LIST = "(" + SINGLE + "(" + PLUS + SINGLE + ")+" + ")";
const std::string ADD_RANGE = "(" + SINGLE + MINUS + SINGLE + ")";
const std::string ADD_STEP_RANGE = "(" + SINGLE + MINUS + SINGLE + COLON + SINGLE + ")";
const std::string ANY = "(" + ADD_STEP_RANGE + "|" + ADD_RANGE + "|" + ADD_LIST + "|" + STEP_RANGE + "|" + RANGE + "|" + SINGLE + ")";
const std::string LIST = "(" + ANY + "(" + COMMA + ANY + ")*" + ")";
/////////////////////////////////////////////////////////////////////////////
// Forward declarations.
/////////////////////////////////////////////////////////////////////////////
namespace
{
std::vector<std::vector<unsigned int> > & parseToken(std::vector<std::vector<unsigned int> > & parsedRuns, const std::string & token);
std::vector<std::vector<unsigned int> > generateRange(unsigned int from, unsigned int to, unsigned int stepSize, bool addRuns);
void validateToken(const std::string & token);
bool matchesFully(const std::string & stringToMatch, const std::string & regexString);
std::string getMatchingString(const std::string & regexString, const std::string & toParse);
std::string pad(std::string run, unsigned int padLength);
std::set< std::pair<unsigned int, unsigned int> > & mergeAdjacentRanges(
std::set< std::pair<unsigned int, unsigned int> > & ranges,
const std::pair<unsigned int, unsigned int> & range);
// Helper functor.
struct RangeContainsRun
{
bool operator()(std::pair<unsigned int, unsigned int> range, unsigned int run);
bool operator()(unsigned int run, std::pair<unsigned int, unsigned int> range);
};
std::string toString(const RunRangeList & runRangeList);
std::string & accumulateString(std::string & output, std::pair<unsigned int, unsigned int> runRange);
}
/////////////////////////////////////////////////////////////////////////////
// Scoped, global functions.
/////////////////////////////////////////////////////////////////////////////
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
/**
* Parses a string containing a comma separated list of run "tokens", where each run
* token is of one of the allowed forms (a single run or a range of runs or an added
* range of runs, etc.)
*
* @param runString :: a string containing the runs to parse, in the correct format.
*
* @returns a vector of vectors of unsigned ints, one int for each run, where runs
* to be added are contained in the same sub-vector.
* @throws std::runtime_error when runString provided is in an incorrect format.
*/
std::vector<std::vector<unsigned int> > parseMultiRunString(std::string runString)
{
// If the run string is empty, return no runs.
if(runString.empty())
return std::vector<std::vector<unsigned int> >();
// Remove whitespace.
runString.erase(std::remove_if( // ("Erase-remove" idiom.)
runString.begin(), runString.end(),
isspace),
runString.end());
// Only numeric characters, or occurances of plus, minus, comma and colon are allowed.
if(!matchesFully(runString,"([0-9]|\\+|\\-|,|:)+"))
throw std::runtime_error(
"Non-numeric or otherwise unaccetable character(s) detected.");
// Tokenize on commas.
std::vector<std::string> tokens;
tokens = boost::split(tokens, runString, boost::is_any_of(","));
// Validate each token.
std::for_each(
tokens.begin(), tokens.end(),
validateToken);
// Parse each token, accumulate the results, and return them.
return std::accumulate(
tokens.begin(), tokens.end(),
std::vector<std::vector<unsigned int> >(),
parseToken);
}
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
/**
* Suggests a workspace name for the given vector of file names (which, because they
* are in the same vector, we will assume they are to be added.) Example:
*
* Parsing ["INST_4.ext", "INST_5.ext", "INST_6.ext", "INST_8.ext"] will return
* "INST_4_to_6_and_8" as a suggested workspace name.
*
* @param fileNames :: a vector of file names
*
* @returns a string containing a suggested workspace name.
* @throws std::runtime_error when runString provided is in an incorrect format.
*/
std::string suggestWorkspaceName(const std::vector<std::string> & fileNames)
{
Parser parser;
RunRangeList runs;
// For each file name, parse the run number out of it, and add it to a RunRangeList.
for(size_t i = 0; i < fileNames.size(); ++i)
{
parser.parse(fileNames[i]);
runs.addRun(parser.runs()[0][0]);
}
// Return the suggested ws name.
return parser.instString() + parser.underscoreString() + toString(runs);
}
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
/////////////////////////////////////////////////////////////////////////////
// Public member functions of Parser class.
/////////////////////////////////////////////////////////////////////////////
/// Constructor.
Parser::Parser() :
m_runs(), m_fileNames(), m_multiFileName(), m_dirString(), m_instString(),
m_underscoreString(), m_runString(), m_extString(), m_zeroPadding()
{}
/// Destructor.
Parser::~Parser()
{}
/**
* Takes the given multiFileName string, and calls other parts of the parser
* to generate a corresponding vector of vectors of file names.
*
* @param multiFileName :: the string containing the multiple file names to be parsed.
*/
void Parser::parse(const std::string & multiFileName)
{
// Clear any contents of the member variables.
clear();
// Set the string to parse.
m_multiFileName = multiFileName;
// Split the string to be parsed into sections, and do some validation.
split();
// Parse the run section into unsigned ints we can use.
m_runs = parseMultiRunString(m_runString);
// Set up helper functor.
GenerateFileName generateFileName(
m_dirString + m_instString + m_underscoreString,
m_extString,
m_zeroPadding);
// Generate complete file names for each run using helper functor.
std::transform(
m_runs.begin(), m_runs.end(),
std::back_inserter(m_fileNames),
generateFileName);
}
/////////////////////////////////////////////////////////////////////////////
// Private member functions of Parser class.
/////////////////////////////////////////////////////////////////////////////
/**
* Clears all member variables.
*/
void Parser::clear()
{
m_runs.clear();
m_fileNames.clear();
m_multiFileName.clear();
m_dirString.clear();
m_instString.clear();
m_underscoreString.clear();
m_runString.clear();
m_extString.clear();
}
/**
* Splits up the m_multiFileName string into component parts, to be used elsewhere by
* the parser. Some validation is done here, and exceptions thrown if required
* components are missing.
*
* @throws std::runtime_error if a required component is not present in the string.
*/
void Parser::split()
{
if(m_multiFileName.empty())
throw std::runtime_error("No file name to parse.");
// (We shun the use of Poco::File here as it is unable to deal with certain
// combinations of special characters, for example double commas.)
// Get the extension, if there is one.
size_t lastDot = m_multiFileName.find_last_of(".");
if(lastDot != std::string::npos)
m_extString = m_multiFileName.substr(lastDot);
// Get the directory, if there is one.
size_t lastSeparator = m_multiFileName.find_last_of("/\\");
if(lastSeparator != std::string::npos)
m_dirString = m_multiFileName.substr(0, lastSeparator + 1);
// If the directory contains an instance of a comma, then the string is
// a comma separated list of single *full* file names to load.
if(std::string::npos != m_dirString.find(","))
throw std::runtime_error("Unable to parse.");
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
// Slice off the directory and extension.
std::string base = m_multiFileName.substr(
m_dirString.size(), m_multiFileName.size() - (m_dirString.size() + m_extString.size()));
// Get the instrument name using a regex. Throw if not found since this is required.
m_instString = getMatchingString("^" + Regexs::INST, base);
if(m_instString.empty())
throw std::runtime_error("There does not appear to be an instrument name present.");
// Check if instrument exists, if not then clear the parser, and rethrow an exception.
try
{
InstrumentInfo instInfo = ConfigService::Instance().getInstrument(m_instString);
m_zeroPadding = instInfo.zeroPadding();
}
catch (const Exception::NotFoundError &)
{
throw std::runtime_error("There does not appear to be a valid instrument name present.");
}
// Check for an underscore after the instrument name.
size_t underscore = base.find_first_of("_");
if(underscore == m_instString.size())
m_underscoreString = "_";
// We can now deduce the run string. Throw if not found since this is required.
m_runString = base.substr(m_underscoreString.size() + m_instString.size());
if(m_instString.empty())
throw std::runtime_error("There does not appear to be any runs present.");
}
/////////////////////////////////////////////////////////////////////////////
// Helper functor.
/////////////////////////////////////////////////////////////////////////////
/**
* Constructor, to accept state used in generating file names.
*
* @param prefix :: a string that prefixes the generated file names.
* @param suffix :: a string that suffixes the generated file names.
* @param zeroPadding :: the number of zeros with which to pad the run number of genrerated file names.
*/
GenerateFileName::GenerateFileName(const std::string & prefix, const std::string & suffix, int zeroPadding) :
m_prefix(prefix), m_suffix(suffix), m_zeroPadding(zeroPadding)
{}
/**
* Overloaded function operator that takes in a vector of runs, and returns a vector of file names.
*
* @param runs :: the vector of runs with which to make file names.
*
* @returns the generated vector of file names.
*/
std::vector<std::string> GenerateFileName::operator()(const std::vector<unsigned int> & runs)
{
std::vector<std::string> fileNames;
std::transform(
runs.begin(), runs.end(),
std::back_inserter(fileNames),
(*this) // Call other overloaded function operator.
);
return fileNames;
}
/**
* Overloaded function operator that takes in a runs, and returns a file name.
*
* @param runs :: the vector of runs with which to make file names.
*
* @returns the generated vector of file names.
*/
std::string GenerateFileName::operator()(unsigned int run)
{
std::stringstream fileName;
fileName << m_prefix
<< pad(boost::lexical_cast<std::string>(run), m_zeroPadding)
<< m_suffix;
return fileName.str();
}
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
/////////////////////////////////////////////////////////////////////////////
// Public member functions of RunRangeList class.
/////////////////////////////////////////////////////////////////////////////
/**
* Default constructor.
*/
RunRangeList::RunRangeList() :
m_rangeList()
{
}
/**
* Adds a run to the list of run ranges. Not particularly effecient.
*
* @param run :: the run to add.
*/
void RunRangeList::addRun(unsigned int run)
{
// If the run is inside one of the ranges, do nothing.
if(std::binary_search(
m_rangeList.begin(), m_rangeList.end(),
run,
RangeContainsRun()))
return;
// Else create a new range, containing a single run, and add it to the list.
m_rangeList.insert(std::make_pair(run, run));
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
// Now merge any ranges that are adjacent.
m_rangeList = std::accumulate(
m_rangeList.begin(), m_rangeList.end(),
std::set< std::pair<unsigned int, unsigned int> >(),
mergeAdjacentRanges);
}
/**
* Adds a range of runs of specified length to the list of run ranges.
*
* @param from :: the beginning of the run to add
* @param to :: the end of the run to add
*/
void RunRangeList::addRunRange(unsigned int from, unsigned int to)
{
for( ; from <= to; ++from)
addRun(from);
}
/**
* Add a range of runs to the list of run ranges.
*
* @param range :: the range to add
*/
void RunRangeList::addRunRange(std::pair<unsigned int, unsigned int> range)
{
addRunRange(range.first, range.second);
}
/////////////////////////////////////////////////////////////////////////////
// Anonymous helper functions.
/////////////////////////////////////////////////////////////////////////////
namespace // anonymous
{
/**
* Parses a string containing a run "token".
*
* Note that this function takes the form required by the "accumulate" algorithm:
* it takes in the parsed runs so far and a new token to parse, and then returns
* the result of appending the newly parsed token to the already parsed runs.
*
* @param parsedRuns :: the vector of vectors of runs parsed so far.
* @param token :: the token to parse.
*
* @returns the newly parsed runs appended to the previously parsed runs.
* @throws std::runtime_error if
*/
std::vector<std::vector<unsigned int> > & parseToken(
std::vector<std::vector<unsigned int> > & parsedRuns, const std::string & token)
{
// Tokenise further, on plus, minus or colon.
std::vector<std::string> subTokens;
subTokens = boost::split(subTokens, token, boost::is_any_of("+-:"));
std::vector<unsigned int> rangeDetails;
// Convert the sub tokens to uInts.
std::transform(
subTokens.begin(), subTokens.end(),
std::back_inserter(rangeDetails),
boost::lexical_cast<unsigned int, std::string>);
// We should always end up with at least 1 unsigned int here.
assert(1 <= rangeDetails.size());
std::vector<std::vector<unsigned int> > runs;
// E.g. "2012".
if(matchesFully(token, Regexs::SINGLE))
{
runs.push_back(std::vector<unsigned int>(1, rangeDetails[0]));
}
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
// E.g. "2012:2020".
else if(matchesFully(token, Regexs::RANGE))
{
runs = generateRange(
rangeDetails[0],
rangeDetails[1],
1,
false
);
}
// E.g. "2012:2020:4".
else if(matchesFully(token, Regexs::STEP_RANGE))
{
runs = generateRange(
rangeDetails[0],
rangeDetails[1],
rangeDetails[2],
false
);
}
// E.g. "2012+2013+2014+2015".
else if(matchesFully(token, Regexs::ADD_LIST))
{
// No need to generate the range here, it's already there for us.
runs = std::vector<std::vector<unsigned int> >(1, rangeDetails);
}
// E.g. "2012-2020".
else if(matchesFully(token, Regexs::ADD_RANGE))
{
runs = generateRange(
rangeDetails[0],
rangeDetails[1],
1,
true
);
}
// E.g. "2012-2020:4".
else if(matchesFully(token, Regexs::ADD_STEP_RANGE))
{
runs = generateRange(
rangeDetails[0],
rangeDetails[1],
rangeDetails[2],
true
);
}
else
{
// We should never reach here - the validation done on the token previously
// should prevent any other possible scenario.
assert(false);
}
// Add the runs on to the end of parsedRuns, and return it.
std::copy(
runs.begin(), runs.end(),
std::back_inserter(parsedRuns));
return parsedRuns;
}
/**
* Generates a range of runs between the given numbers, increasing
* or decreasing by the given step size. If addRuns is true, then the
* runs will all be in the same sub vector, if false they will each be
* in their own vector.
*
* @param from :: the start of the range
* @param to :: the end of the range
* @param stepSize :: the size of the steps with which to increase/decrease
* @param addRuns :: whether or not to add the runs together (place in sume sub-vector)
*
* @returns a vector of vectors of runs.
* @throws std::runtime_error if a step size of zero is specified.
*/
std::vector<std::vector<unsigned int> > generateRange(
unsigned int from,
unsigned int to,
unsigned int stepSize,
bool addRuns)
{
if(stepSize == 0)
throw std::runtime_error(
"Unable to generate a range with a step size of zero.");
unsigned int currentRun = from;
std::vector<std::vector<unsigned int> > runs;
// If ascending range
if(from <= to)
{
while(currentRun <= to)
{
if(addRuns)
{
if(runs.empty())
runs.push_back(std::vector<unsigned int>(1, currentRun));
else
runs.at(0).push_back(currentRun);
}
else
{
runs.push_back(std::vector<unsigned int>(1, currentRun));
}
currentRun += stepSize;
}
}
// Else descending range
else
{
while(currentRun >= to)
{
if(addRuns)
{
if(runs.empty())
runs.push_back(std::vector<unsigned int>(1, currentRun));
else
runs.at(0).push_back(currentRun);
}
else
{
runs.push_back(std::vector<unsigned int>(1, currentRun));
}
// Guard against case where stepSize would take us into negative
// numbers (not supported by unsigned ints ...).
if(static_cast<int>(currentRun) - static_cast<int>(stepSize) < 0)
break;
currentRun -= stepSize;
}
}
return runs;
}
/**
* Validates the given run token.
*
* @param :: the run token to validate.
*
* @throws std::runtime_error if the token is of an incorrect form.
*/
void validateToken(const std::string & token)
{
// Each token must be non-empty.
if(token.size() == 0)
throw std::runtime_error(
"A comma-separated token is empty.");
// Each token must begin and end with a numeric character.
if(!matchesFully(token, "[0-9].+[0-9]|[0-9]"))
throw std::runtime_error(
"The token \"" + token + "\" is of an incorrect form. Does it begin or end with a plus, minus or colon?");
// Each token must be one of the acceptable forms, i.e. a single run, an added range of runs, etc.
if(!matchesFully(token, Regexs::ANY))
throw std::runtime_error(
"The token \"" + token + "\" is of an incorrect form.");
}
/**
* Convenience function that matches a *complete* given string to the given regex.
*
* @param stringToMatch :: the string to match with the given regex.
* @param regexString :: the regex with which to match the given string.
*
* @returns true if the string matches fully, or false otherwise.
*/
bool matchesFully(const std::string & stringToMatch, const std::string & regexString)
{
const boost::regex regex("^(" + regexString + "$)");
return boost::regex_match(stringToMatch, regex);
}
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
/**
* Finds a given regex in a given string, and returns the part of the string
* that matches the regex. Returns "" if there is no occurance of the regex.
*
* @param regex - the regular expression to find within the string
* @param toParse - the string within to find the regex
*
* @returns the part (if any) of the given string that matches the given regex
*/
std::string getMatchingString(const std::string & regexString, const std::string & toParse)
{
boost::sregex_iterator it(
toParse.begin(), toParse.end(),
boost::regex(regexString)
);
if(it == boost::sregex_iterator())
return "";
return it->str();
}
/**
* Zero pads the run number used in a file name to required length.
*
* @param run - the run number of the file. May as well pass by value here.
* @param count - the required length of the string.
*
* @returns the string, padded to the required length.
* @throws std::runtime_error if run is longer than size of count.
*/
std::string pad(std::string run, unsigned int padLength)
if(run.size() < padLength)
return run.insert(0, padLength - run.size(), '0');
else if(run.size() > padLength)
throw std::runtime_error("Could not parse run number \"" + run +
"\" since the instrument run number length required is " + boost::lexical_cast<std::string>(padLength));
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
/**
* Overloaded function operators to be used by std::binary_search to test if a range and a run
* are "equivalent", which in this case we choose to mean whether or not the run is
* inside the range.
*/
bool RangeContainsRun::operator()(std::pair<unsigned int, unsigned int> range, unsigned int run)
{
return range.second < run;
}
bool RangeContainsRun::operator()(unsigned int run, std::pair<unsigned int, unsigned int> range)
{
return run < range.first;
}
/**
* Function for use with std::accumulate, the goal of which is merge any ranges
* that are adjacent.
*
* @param ranges :: the set of ranges that have been accumulated so far.
* @param range :: the range to add, or merge if it is adjacent
*
* @returns the original ranges, with the extra range added/merged.
*/
std::set< std::pair<unsigned int, unsigned int> > & mergeAdjacentRanges(
std::set< std::pair<unsigned int, unsigned int> > & ranges,
const std::pair<unsigned int, unsigned int> & range)
{
// If ranges is empty, just insert the new range.
if(ranges.empty())
{
ranges.insert(range);
}
// Else there are already some ranges present ...
else
{
// ... if the last one is adjacent to the new range, merge the two.
if(ranges.rbegin()->second + 1 == range.first)
{
unsigned int from = ranges.rbegin()->first;
unsigned int to = range.second;
std::pair<unsigned int, unsigned int> temp(from, to);
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
ranges.erase(--ranges.end(), ranges.end());
ranges.insert(temp);
}
// ... else just insert it.
else
{
ranges.insert(range);
}
}
return ranges;
}
/**
* Function for use with std::accumulate. Takes in a runRange, and appends its details onto the
* accumulated output string so far.
*
* @param output :: the accumulate output so far.
* @param runRange :: the range who's details should be appended.
*
* @returns the updated output
*/
std::string & accumulateString(std::string & output, std::pair<unsigned int, unsigned int> runRange)
{
if(!output.empty())
output += "_and_";
if(runRange.first == runRange.second)
output += boost::lexical_cast<std::string>(runRange.first);
else
output += boost::lexical_cast<std::string>(runRange.first) + "_to_" + boost::lexical_cast<std::string>(runRange.second);
return output;
}
/**
* Converts a RunRangeList object into a readable (and wsName-friendly) string.
*
* @param runRangeList :: the runRangeList to convert to a string
*
* @returns the converted string.
*/
std::string toString(const RunRangeList & runRangeList)
{
std::set<std::pair<unsigned int, unsigned int> > runRanges = runRangeList.rangeList();
// For each run range (pair of unsigned ints), call accumulateString and return the accumulated result.
return std::accumulate(
runRanges.begin(), runRanges.end(),
std::string(),
accumulateString);
}
} // anonymous namespace
} // namespace MultiFileNameParsing
} // namespace Kernel
} // namespace Mantid