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 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
|
/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itkParameterFileParser.h"
#include "elxDefaultConstruct.h"
#include <itksys/SystemTools.hxx>
#include <itksys/RegularExpression.hxx>
#include <fstream>
namespace itk
{
namespace
{
// Uniform way to throw exceptions when the parameter file appears to be invalid.
void
ThrowException(const std::string & line, const std::string & hint)
{
itkGenericExceptionMacro("ERROR: the following line in your parameter file is invalid: \n\""
<< line + "\"\n"
<< hint << "\nPlease correct you parameter file!");
} // end ThrowException()
// Splits a line in parameter name and values.
std::vector<std::string>
SplitLine(const std::string & fullLine, const std::string & line)
{
std::vector<std::string> splittedLine(1);
/** Count the number of quotes in the line. If it is an odd value, the
* line contains an error; strings should start and end with a quote, so
* the total number of quotes is even.
*/
std::size_t numQuotes = itksys::SystemTools::CountChar(line.c_str(), '"');
if (numQuotes % 2 == 1)
{
/** An invalid parameter line. */
ThrowException(fullLine, "This line has an odd number of quotes (\").");
}
/** Loop over the line. */
unsigned int index = 0;
numQuotes = 0;
for (const char currentChar : line)
{
if (currentChar == '"')
{
/** Start a new element. */
splittedLine.push_back("");
++index;
++numQuotes;
}
else if (currentChar == ' ')
{
/** Only start a new element if it is not a quote, otherwise just add
* the space to the string.
*/
if (numQuotes % 2 == 0)
{
splittedLine.push_back("");
++index;
}
else
{
splittedLine[index].push_back(currentChar);
}
}
else
{
/** Add this character to the element. */
splittedLine[index].push_back(currentChar);
}
}
return splittedLine;
} // end SplitLine()
// Fills the specified ParameterMap with valid entries.
void
GetParameterFromLine(ParameterFileParser::ParameterMapType & parameterMap,
const std::string & fullLine,
const std::string & line)
{
/** A line has a parameter name followed by one or more parameters.
* They are all separated by one or more spaces (all tabs have been
* removed previously) or by quotes in case of strings. So,
* 1) we split the line at the spaces or quotes
* 2) the first one is the parameter name
* 3) the other strings that are not a series of spaces, are parameter values
*/
/** 1) Split the line. */
std::vector<std::string> splittedLine = SplitLine(fullLine, line);
/** 2) Get the parameter name. */
std::string parameterName = splittedLine[0];
itksys::SystemTools::ReplaceString(parameterName, " ", "");
splittedLine.erase(splittedLine.begin());
/** 3) Get the parameter values. */
std::vector<std::string> parameterValues;
for (const auto & value : splittedLine)
{
if (!value.empty())
{
parameterValues.push_back(value);
}
}
/** 4) Perform some checks on the parameter name. */
itksys::RegularExpression reInvalidCharacters1("[.,:;!@#$%^&-+|<>?]");
const bool match = reInvalidCharacters1.find(parameterName);
if (match)
{
ThrowException(fullLine,
"The parameter \"" + parameterName + "\" contains invalid characters (.,:;!@#$%^&-+|<>?).");
}
/** 5) Insert this combination in the parameter map. */
if (parameterMap.count(parameterName))
{
ThrowException(fullLine, "The parameter \"" + parameterName + "\" is specified more than once.");
}
else
{
parameterMap.insert(make_pair(parameterName, parameterValues));
}
} // end GetParameterFromLine()
// Checks a line.
// - Returns true if it is a valid line: containing a parameter.
// - Returns false if it is a valid line: empty or comment.
// - Throws an exception if it is not a valid line.
bool
CheckLine(const std::string & lineIn, std::string & lineOut)
{
/** Preprocessing of lineIn:
* 1) Replace tabs with spaces
* 2) Remove everything after comment sign //
* 3) Remove leading spaces
* 4) Remove trailing spaces
*/
lineOut = lineIn;
itksys::SystemTools::ReplaceString(lineOut, "\t", " ");
itksys::RegularExpression commentPart("//");
if (commentPart.find(lineOut))
{
lineOut = lineOut.substr(0, commentPart.start());
}
itksys::RegularExpression leadingSpaces("^[ ]*(.*)");
leadingSpaces.find(lineOut);
lineOut = leadingSpaces.match(1);
itksys::RegularExpression trailingSpaces("[ \t]+$");
if (trailingSpaces.find(lineOut))
{
lineOut = lineOut.substr(0, trailingSpaces.start());
}
/**
* Checks:
* 1. Empty line -> false
* 2. Comment (line starts with "//") -> false
* 3. Line is not between brackets (...) -> exception
* 4. Line contains less than two words -> exception
*
* Otherwise return true.
*/
/** 1. Check for non-empty lines. */
itksys::RegularExpression reNonEmptyLine("[^ ]+");
const bool match1 = reNonEmptyLine.find(lineOut);
if (!match1)
{
return false;
}
/** 2. Check for comments. */
itksys::RegularExpression reComment("^//");
const bool match2 = reComment.find(lineOut);
if (match2)
{
return false;
}
/** 3. Check if line is between brackets. */
if (!itksys::SystemTools::StringStartsWith(lineOut, "(") || !itksys::SystemTools::StringEndsWith(lineOut, ")"))
{
ThrowException(lineIn, "Line is not between brackets: \"(...)\".");
}
/** Remove brackets. */
lineOut = lineOut.substr(1, lineOut.size() - 2);
/** 4. Check: the line should contain at least two words. */
itksys::RegularExpression reTwoWords("([ ]+)([^ ]+)");
const bool match4 = reTwoWords.find(lineOut);
if (!match4)
{
ThrowException(lineIn, "Line does not contain a parameter name and value.");
}
/** At this point we know its at least a line containing a parameter.
* However, this line can still be invalid, for example:
* (string &^%^*)
* This will be checked later.
*/
return true;
}
// Performs the following checks:
// - Is a filename is given
// - Does the file exist
// - Is a text file, i.e. does it end with .txt
// If one of these conditions fail, an exception is thrown.
void
BasicFileChecking(const std::string & parameterFileName)
{
/** Check if the file name is given. */
if (parameterFileName.empty())
{
itkGenericExceptionMacro("ERROR: FileName has not been set.");
}
/** Basic error checking: existence. */
const bool exists = itksys::SystemTools::FileExists(parameterFileName);
if (!exists)
{
itkGenericExceptionMacro("ERROR: the file " << parameterFileName << " does not exist.");
}
/** Basic error checking: file or directory. */
const bool isDir = itksys::SystemTools::FileIsDirectory(parameterFileName);
if (isDir)
{
itkGenericExceptionMacro("ERROR: the file " << parameterFileName << " is a directory.");
}
/** Check the extension. */
const std::string ext = itksys::SystemTools::GetFilenameLastExtension(parameterFileName);
if (ext != ".txt")
{
itkGenericExceptionMacro("ERROR: the file " << parameterFileName << " should be a text file (*.txt).");
}
} // end BasicFileChecking()
void
ReadParameterMapFromInputStream(ParameterFileParser::ParameterMapType & parameterMap, std::istream & inputStream)
{
/** Clear the map. */
parameterMap.clear();
/** Loop over the parameter file, line by line. */
std::string lineIn;
std::string lineOut;
while (inputStream.good())
{
/** Extract a line. */
itksys::SystemTools::GetLineFromStream(inputStream, lineIn);
/** Check this line. */
const bool validLine = CheckLine(lineIn, lineOut);
if (validLine)
{
/** Get the parameter name from this line and store it. */
GetParameterFromLine(parameterMap, lineIn, lineOut);
}
// Otherwise, we simply ignore this line
}
}
} // namespace
/**
* **************** Constructor ***************
*/
ParameterFileParser::ParameterFileParser() = default;
/**
* **************** Destructor ***************
*/
ParameterFileParser ::~ParameterFileParser() = default;
/**
* **************** GetParameterMap ***************
*/
const ParameterFileParser::ParameterMapType &
ParameterFileParser::GetParameterMap() const
{
return this->m_ParameterMap;
} // end GetParameterMap()
/**
* **************** ReadParameterFile ***************
*/
void
ParameterFileParser::ReadParameterFile()
{
/** Perform some basic checks. */
BasicFileChecking(m_ParameterFileName);
/** Open the parameter file for reading. */
std::ifstream parameterFile(this->m_ParameterFileName);
/** Check if it opened. */
if (!parameterFile.is_open())
{
itkExceptionMacro("ERROR: could not open " << this->m_ParameterFileName << " for reading.");
}
ReadParameterMapFromInputStream(m_ParameterMap, parameterFile);
} // end ReadParameterFile()
/**
* **************** ReturnParameterFileAsString ***************
*/
std::string
ParameterFileParser::ReturnParameterFileAsString()
{
/** Perform some basic checks. */
BasicFileChecking(m_ParameterFileName);
/** Open the parameter file for reading. */
std::ifstream parameterFile(this->m_ParameterFileName);
/** Check if it opened. */
if (!parameterFile.is_open())
{
itkExceptionMacro("ERROR: could not open " << this->m_ParameterFileName << " for reading.");
}
/** Loop over the parameter file, line by line. */
std::string line;
std::string output;
while (parameterFile.good())
{
/** Extract a line. */
itksys::SystemTools::GetLineFromStream(parameterFile, line); // \todo: returns bool
output += line + "\n";
}
/** Return the string. */
return output;
} // end ReturnParameterFileAsString()
/**
* **************** ReadParameterMap ***************
*/
auto
ParameterFileParser::ReadParameterMap(const std::string & fileName) -> ParameterMapType
{
elastix::DefaultConstruct<ParameterFileParser> parameterFileParser;
parameterFileParser.m_ParameterFileName = fileName;
parameterFileParser.ReadParameterFile();
// Use fast move semantics, because `parameterFileParser` is destructed afterwards anyway.
return std::move(parameterFileParser.m_ParameterMap);
}
/**
* **************** ConvertToParameterMap ***************
*/
auto
ParameterFileParser::ConvertToParameterMap(const std::string & text) -> ParameterMapType
{
ParameterMapType parameterMap;
std::istringstream inputStringStream(text);
ReadParameterMapFromInputStream(parameterMap, inputStringStream);
return parameterMap;
}
} // end namespace itk
|