n2p2 - A neural network potential package
Loading...
Searching...
No Matches
nnp::settings::Settings Class Reference

Reads and analyzes settings file and stores parameters. More...

#include <Settings.h>

Inheritance diagram for nnp::settings::Settings:
Collaboration diagram for nnp::settings::Settings:

Public Types

typedef std::multimap< std::string, std::pair< std::string, std::size_t > > KeyMap
 
typedef std::pair< KeyMap::const_iterator, KeyMap::const_iterator > KeyRange
 
typedef std::map< std::string, std::shared_ptr< Key > > const KeywordList
 

Public Member Functions

std::string operator[] (std::string const &keyword) const
 Overload [] operator.
 
std::size_t loadFile (std::string const &fileName="input.nn")
 Load a file with settings.
 
bool keywordExists (Key const &key, bool const exact=false) const override
 
bool keywordExists (std::string const &keyword, bool exact=false) const
 Check if keyword is present in settings file.
 
std::string keywordCheck (std::string const &keyword) const
 Check for keyword and alternatives, throw exception if not present.
 
std::string getValue (Key const &key) const override
 
std::string getValue (std::string const &keyword) const
 Get value for given keyword.
 
KeyRange getValues (std::string const &keyword) const
 Get all keyword-value pairs for given keyword.
 
std::vector< std::string > info () const
 Get logged information about settings file.
 
std::vector< std::string > getSettingsLines () const
 Get complete settings file.
 
void writeSettingsFile (std::ofstream *const &file, std::map< std::size_t, std::string > const &replacements={}) const
 Write complete settings file.
 

Private Member Functions

void readFile ()
 Read file once and save all lines in lines vector.
 
std::size_t parseLines ()
 Parse lines and create contents map.
 
std::pair< std::size_t, std::size_t > sanityCheck ()
 Check if all keywords are in known-keywords database and for duplicates.
 

Private Attributes

std::vector< std::string > lines
 Vector of all lines in settings file.
 
std::vector< std::string > log
 Vector with log lines.
 
KeyMap contents
 Map containing all keyword-value pairs.
 
std::string fileName
 Settings file name.
 

Static Private Attributes

static KeywordList knownKeywords = createKnownKeywordsMap()
 Map containing all known keywords and a description.
 

Detailed Description

Reads and analyzes settings file and stores parameters.

Definition at line 37 of file Settings.h.

Member Typedef Documentation

◆ KeyMap

typedef std::multimap<std::string, std::pair<std::string, std::size_t> > nnp::settings::Settings::KeyMap

Definition at line 42 of file Settings.h.

◆ KeyRange

typedef std::pair<KeyMap::const_iterator, KeyMap::const_iterator> nnp::settings::Settings::KeyRange

Definition at line 44 of file Settings.h.

◆ KeywordList

typedef std::map<std::string, std::shared_ptr<Key> > const nnp::settings::Settings::KeywordList

Definition at line 46 of file Settings.h.

Member Function Documentation

◆ operator[]()

string Settings::operator[] ( std::string const & keyword) const

Overload [] operator.

Parameters
[in]keywordKeyword string.
Returns
Value string corresponding to keyword.

Internally calls getValue().

Definition at line 182 of file Settings.cpp.

183{
184 return getValue(keyword);
185}
std::string getValue(Key const &key) const override
Definition Settings.cpp:252

References getValue().

Here is the call graph for this function:

◆ loadFile()

size_t Settings::loadFile ( std::string const & fileName = "input.nn")

Load a file with settings.

Parameters
[in]fileNameName of file containing settings.
Returns
Number of critical problems detected.

Definition at line 188 of file Settings.cpp.

189{
190 this->fileName = fileName;
191
192 readFile();
193 return parseLines();
194}
std::string fileName
Settings file name.
Definition Settings.h:151
std::size_t parseLines()
Parse lines and create contents map.
Definition Settings.cpp:324
void readFile()
Read file once and save all lines in lines vector.
Definition Settings.cpp:277

References fileName, parseLines(), and readFile().

Here is the call graph for this function:

◆ keywordExists() [1/2]

bool Settings::keywordExists ( Key const & key,
bool const exact = false ) const
overridevirtual

Implements nnp::settings::ISettings.

Definition at line 195 of file Settings.cpp.

197{
198 return keywordExists(key.getMainKeyword(), exact);
199}
bool keywordExists(Key const &key, bool const exact=false) const override
Definition Settings.cpp:195

References nnp::settings::Key::getMainKeyword(), and keywordExists().

Referenced by keywordCheck(), and keywordExists().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ keywordExists() [2/2]

bool Settings::keywordExists ( std::string const & keyword,
bool exact = false ) const

Check if keyword is present in settings file.

Parameters
[in]keywordKeyword string.
[in]exactIf True check only for exact spelling, no alternative keywords allowed.
Returns
True if keyword exists, False otherwise.
Note
This throws an error if the keyword is not in the list of known keywords.

Definition at line 200 of file Settings.cpp.

201{
202 if (knownKeywords.find(keyword) == knownKeywords.end())
203 {
204 throw runtime_error("ERROR: Not in the list of allowed keyword: \"" +
205 keyword + "\".\n");
206 }
207 if (exact || knownKeywords.at(keyword)->hasUniqueKeyword())
208 {
209 return (contents.find(keyword) != contents.end());
210 }
211 else
212 {
213 for (auto alternative : *knownKeywords.at(keyword))
214 {
215 if (contents.find(alternative) != contents.end()) return true;
216 }
217 }
218
219 return false;
220}
static KeywordList knownKeywords
Map containing all known keywords and a description.
Definition Settings.h:149
KeyMap contents
Map containing all keyword-value pairs.
Definition Settings.h:147

References contents, and knownKeywords.

◆ keywordCheck()

string Settings::keywordCheck ( std::string const & keyword) const

Check for keyword and alternatives, throw exception if not present.

Parameters
[in]keywordOriginal keyword for which alternatives should be searched.
Returns
Keyword or alternative found in file contents.

Definition at line 222 of file Settings.cpp.

223{
224 bool exists = keywordExists(keyword, false);
225 bool unique = knownKeywords.at(keyword)->hasUniqueKeyword();
226 if (!exists)
227 {
228 if (unique)
229 {
230 throw std::runtime_error("ERROR: Keyword \"" + keyword
231 + "\" not found.\n");
232 }
233 else
234 {
235 throw std::runtime_error("ERROR: Neither keyword \"" + keyword
236 + "\" nor alternative keywords found.\n");
237 }
238 }
239
240 bool exact = keywordExists(keyword, true);
241 if (!exact)
242 {
243 for (auto const& alt : *knownKeywords.at(keyword))
244 {
245 if (contents.find(alt) != contents.end()) return alt;
246 }
247 }
248
249 return keyword;
250}

References contents, keywordExists(), and knownKeywords.

Referenced by getValue(), and getValues().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getValue() [1/2]

string Settings::getValue ( Key const & key) const
overridevirtual

Implements nnp::settings::ISettings.

Definition at line 252 of file Settings.cpp.

253{
254 return contents.find(key.getMainKeyword())->second.first;
255}

References contents, and nnp::settings::Key::getMainKeyword().

Referenced by operator[]().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getValue() [2/2]

string Settings::getValue ( std::string const & keyword) const

Get value for given keyword.

Parameters
[in]keywordKeyword string.
Returns
Value string corresponding to keyword.

If keyword is present multiple times only the value of the first keyword-value pair is returned (use getValues() instead).

Definition at line 257 of file Settings.cpp.

258{
259 return contents.find(keywordCheck(keyword))->second.first;
260}
std::string keywordCheck(std::string const &keyword) const
Check for keyword and alternatives, throw exception if not present.
Definition Settings.cpp:222

References contents, and keywordCheck().

Here is the call graph for this function:

◆ getValues()

Settings::KeyRange Settings::getValues ( std::string const & keyword) const

Get all keyword-value pairs for given keyword.

Parameters
[in]keywordKeyword string.
Returns
Pair with begin and end values for iteration.

Useful if keyword appears multiple times. Returns a pair representing begin and end for an iterator over all corresponding keyword-value pairs. Use like this:

Settings* s = new Settings("input.nn");
Settings::KeyRange r = s->getValues("symfunction_short");
for (Settings::KeyMap::const_iterator i = r.first; i != r.second; i++)
{
cout << "keyword: " << i->first
<< " value: " << i->second.first
<< " line : " << i->second.second << "\n";
}
Reads and analyzes settings file and stores parameters.
Definition Settings.h:38
std::pair< KeyMap::const_iterator, KeyMap::const_iterator > KeyRange
Definition Settings.h:44
KeyRange getValues(std::string const &keyword) const
Get all keyword-value pairs for given keyword.
Definition Settings.cpp:262

Definition at line 262 of file Settings.cpp.

263{
264 return contents.equal_range(keywordCheck(keyword));
265}

References contents, and keywordCheck().

Here is the call graph for this function:

◆ info()

vector< string > Settings::info ( ) const

Get logged information about settings file.

Returns
Vector with log lines.

Definition at line 267 of file Settings.cpp.

268{
269 return log;
270}
std::vector< std::string > log
Vector with log lines.
Definition Settings.h:145

References log.

◆ getSettingsLines()

vector< string > Settings::getSettingsLines ( ) const

Get complete settings file.

Returns
Vector with settings file lines.

Definition at line 272 of file Settings.cpp.

273{
274 return lines;
275}
std::vector< std::string > lines
Vector of all lines in settings file.
Definition Settings.h:143

References lines.

◆ writeSettingsFile()

void Settings::writeSettingsFile ( std::ofstream *const & file,
std::map< std::size_t, std::string > const & replacements = {} ) const

Write complete settings file.

Parameters
[in,out]fileSettings file.
[in]replacementsMap of line numbers with alternative content.

Definition at line 302 of file Settings.cpp.

304{
305 if (!file->is_open())
306 {
307 runtime_error("ERROR: Could not write to file.\n");
308 }
309
310 size_t i = 0;
311 for (auto const& l : lines)
312 {
313 if (replacements.find(i) != replacements.end())
314 {
315 (*file) << replacements.at(i);
316 }
317 else (*file) << l << '\n';
318 i++;
319 }
320
321 return;
322}

References lines.

◆ readFile()

void Settings::readFile ( )
private

Read file once and save all lines in lines vector.

Definition at line 277 of file Settings.cpp.

278{
279 ifstream file;
280 string line;
281
282 log.push_back(strpr("Settings file name: %s\n", fileName.c_str()));
283 file.open(fileName.c_str());
284 if (!file.is_open())
285 {
286 throw runtime_error("ERROR: Could not open file: \"" + fileName
287 + "\".\n");
288 }
289
290 while (getline(file, line))
291 {
292 lines.push_back(line);
293 }
294
295 file.close();
296
297 log.push_back(strpr("Read %zu lines.\n", lines.size()));
298
299 return;
300}
string strpr(const char *format,...)
String version of printf function.
Definition utility.cpp:90

References fileName, lines, log, and nnp::strpr().

Referenced by loadFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ parseLines()

size_t Settings::parseLines ( )
private

Parse lines and create contents map.

Returns
Number of critical problems detected.

Definition at line 324 of file Settings.cpp.

325{
326 for (size_t i = 0; i < lines.size(); ++i)
327 {
328 string line = lines.at(i);
329
330 // ignore empty and comment lines
331 if (line.empty())
332 {
333 continue;
334 }
335 // check for empty lines in Windows format
336 if (line == "\r")
337 {
338 continue;
339 }
340 if (line.find('#') != string::npos)
341 {
342 line.erase(line.find('#'));
343 }
344 if (line.find('!') != string::npos)
345 {
346 line.erase(line.find('!'));
347 }
348 if (line.find_first_not_of(' ') == string::npos)
349 {
350 continue;
351 }
352
353 // remove leading and trailing whitespaces and trim separating spaces
354 line = reduce(line);
355
356 // find separator position
357 size_t const separatorPosition = line.find_first_of(" ");
358 string key;
359 pair<string, size_t> value;
360
361 if (separatorPosition == string::npos)
362 {
363 // first check for single keyword without value
364 key = line;
365 value = pair<string, size_t>("", i);
366 }
367 else
368 {
369 // one or more arguments
370 key = line.substr(0, separatorPosition);
371 value = pair<string, size_t>(line.erase(0, separatorPosition + 1),
372 i);
373 }
374
375 contents.insert(pair<string, pair<string, size_t> >(key, value));
376 }
377
378 size_t numProblems = 0;
379 size_t numCritical = 0;
380 tie(numProblems, numCritical) = sanityCheck();
381 if (numProblems > 0)
382 {
383 log.push_back(strpr("WARNING: %zu problems detected (%zu critical).\n",
384 numProblems, numCritical));
385 }
386
387 log.push_back(strpr("Found %zu lines with keywords.\n", contents.size()));
388
389 return numCritical;
390}
std::pair< std::size_t, std::size_t > sanityCheck()
Check if all keywords are in known-keywords database and for duplicates.
Definition Settings.cpp:392
string reduce(string const &line, string const &whitespace, string const &fill)
Replace multiple whitespaces with fill.
Definition utility.cpp:60

References contents, lines, log, nnp::reduce(), sanityCheck(), and nnp::strpr().

Referenced by loadFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ sanityCheck()

pair< size_t, size_t > Settings::sanityCheck ( )
private

Check if all keywords are in known-keywords database and for duplicates.

Returns
Number of detected/critical problems.

Definition at line 392 of file Settings.cpp.

393{
394 size_t countProblems = 0;
395 size_t countCritical = 0;
396
397 // check for unknown keywords
398 for (multimap<string, pair<string, size_t> >::const_iterator
399 it = contents.begin(); it != contents.end(); ++it)
400 {
401 if (knownKeywords.find((*it).first) == knownKeywords.end())
402 {
403 countProblems++;
404 log.push_back(strpr(
405 "WARNING: Unknown keyword \"%s\" at line %zu.\n",
406 (*it).first.c_str(),
407 (*it).second.second + 1));
408 }
409 }
410
411 // check for multiple instances of known keywords (with exceptions)
412 for (KeywordList::const_iterator it = knownKeywords.begin();
413 it != knownKeywords.end(); ++it)
414 {
415 if (contents.count((*it).first) > 1
416 && (*it).first != "symfunction"
417 && (*it).first != "symfunction_short"
418 && (*it).first != "atom_energy"
419 && (*it).first != "element_nodes_short"
420 && (*it).first != "fixed_gausswidth"
421 && (*it).first != "initial_hardness")
422 {
423 countProblems++;
424 countCritical++;
425 log.push_back(strpr(
426 "WARNING (CRITICAL): Multiple instances of \"%s\" detected.\n",
427 (*it).first.c_str()));
428 }
429 }
430
431 // Check for usage of multiple keyword versions.
432 for (KeywordList::const_iterator it = knownKeywords.begin();
433 it != knownKeywords.end(); ++it)
434 {
435 if (it->second->hasUniqueKeyword()) continue;
436 vector<string> duplicates;
437 for (auto keyword : *it->second)
438 {
439 if (contents.find(keyword) != contents.end())
440 {
441 duplicates.push_back(keyword);
442 }
443 }
444 if (duplicates.size() > 1)
445 {
446 countProblems++;
447 countCritical++;
448 log.push_back(strpr(
449 "WARNING (CRITICAL): Multiple alternative versions of keyword "
450 "\"%s\" detected:.\n", (*it).first.c_str()));
451 for (auto d : duplicates)
452 {
453 log.push_back(strpr(
454 " - \"%s\"\n", d.c_str()));
455 }
456 }
457 }
458
459 return make_pair(countProblems, countCritical);
460}
double d

References contents, d, knownKeywords, log, and nnp::strpr().

Referenced by parseLines().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ lines

std::vector<std::string> nnp::settings::Settings::lines
private

Vector of all lines in settings file.

Definition at line 143 of file Settings.h.

Referenced by getSettingsLines(), parseLines(), readFile(), and writeSettingsFile().

◆ log

std::vector<std::string> nnp::settings::Settings::log
private

Vector with log lines.

Definition at line 145 of file Settings.h.

Referenced by info(), parseLines(), readFile(), and sanityCheck().

◆ contents

KeyMap nnp::settings::Settings::contents
private

Map containing all keyword-value pairs.

Definition at line 147 of file Settings.h.

Referenced by getValue(), getValue(), getValues(), keywordCheck(), keywordExists(), parseLines(), and sanityCheck().

◆ knownKeywords

Settings::KeywordList Settings::knownKeywords = createKnownKeywordsMap()
staticprivate

Map containing all known keywords and a description.

Definition at line 149 of file Settings.h.

Referenced by keywordCheck(), keywordExists(), and sanityCheck().

◆ fileName

std::string nnp::settings::Settings::fileName
private

Settings file name.

Definition at line 151 of file Settings.h.

Referenced by loadFile(), and readFile().


The documentation for this class was generated from the following files: