n2p2 - A neural network potential package
|
Reads and analyzes settings file and stores parameters. More...
#include <Settings.h>
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. | |
Reads and analyzes settings file and stores parameters.
Definition at line 37 of file Settings.h.
typedef std::multimap<std::string, std::pair<std::string, std::size_t> > nnp::settings::Settings::KeyMap |
Definition at line 42 of file Settings.h.
typedef std::pair<KeyMap::const_iterator, KeyMap::const_iterator> nnp::settings::Settings::KeyRange |
Definition at line 44 of file Settings.h.
typedef std::map<std::string, std::shared_ptr<Key> > const nnp::settings::Settings::KeywordList |
Definition at line 46 of file Settings.h.
string Settings::operator[] | ( | std::string const & | keyword | ) | const |
Overload [] operator.
[in] | keyword | Keyword string. |
Internally calls getValue().
Definition at line 182 of file Settings.cpp.
References getValue().
size_t Settings::loadFile | ( | std::string const & | fileName = "input.nn" | ) |
Load a file with settings.
[in] | fileName | Name of file containing settings. |
Definition at line 188 of file Settings.cpp.
References fileName, parseLines(), and readFile().
|
overridevirtual |
Implements nnp::settings::ISettings.
Definition at line 195 of file Settings.cpp.
References nnp::settings::Key::getMainKeyword(), and keywordExists().
Referenced by keywordCheck(), and keywordExists().
bool Settings::keywordExists | ( | std::string const & | keyword, |
bool | exact = false ) const |
Check if keyword is present in settings file.
[in] | keyword | Keyword string. |
[in] | exact | If True check only for exact spelling, no alternative keywords allowed. |
True
if keyword exists, False
otherwise.Definition at line 200 of file Settings.cpp.
References contents, and knownKeywords.
string Settings::keywordCheck | ( | std::string const & | keyword | ) | const |
Check for keyword and alternatives, throw exception if not present.
[in] | keyword | Original keyword for which alternatives should be searched. |
Definition at line 222 of file Settings.cpp.
References contents, keywordExists(), and knownKeywords.
Referenced by getValue(), and getValues().
|
overridevirtual |
Implements nnp::settings::ISettings.
Definition at line 252 of file Settings.cpp.
References contents, and nnp::settings::Key::getMainKeyword().
Referenced by operator[]().
string Settings::getValue | ( | std::string const & | keyword | ) | const |
Get value for given keyword.
[in] | keyword | Keyword string. |
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.
References contents, and keywordCheck().
Settings::KeyRange Settings::getValues | ( | std::string const & | keyword | ) | const |
Get all keyword-value pairs for given keyword.
[in] | keyword | Keyword string. |
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:
Definition at line 262 of file Settings.cpp.
References contents, and keywordCheck().
vector< string > Settings::info | ( | ) | const |
Get logged information about settings file.
Definition at line 267 of file Settings.cpp.
References log.
vector< string > Settings::getSettingsLines | ( | ) | const |
Get complete settings file.
Definition at line 272 of file Settings.cpp.
References lines.
void Settings::writeSettingsFile | ( | std::ofstream *const & | file, |
std::map< std::size_t, std::string > const & | replacements = {} ) const |
Write complete settings file.
[in,out] | file | Settings file. |
[in] | replacements | Map of line numbers with alternative content. |
Definition at line 302 of file Settings.cpp.
References lines.
|
private |
Read file once and save all lines in lines vector.
Definition at line 277 of file Settings.cpp.
References fileName, lines, log, and nnp::strpr().
Referenced by loadFile().
|
private |
Parse lines and create contents map.
Definition at line 324 of file Settings.cpp.
References contents, lines, log, nnp::reduce(), sanityCheck(), and nnp::strpr().
Referenced by loadFile().
|
private |
Check if all keywords are in known-keywords database and for duplicates.
Definition at line 392 of file Settings.cpp.
References contents, d, knownKeywords, log, and nnp::strpr().
Referenced by parseLines().
|
private |
Vector of all lines in settings file.
Definition at line 143 of file Settings.h.
Referenced by getSettingsLines(), parseLines(), readFile(), and writeSettingsFile().
|
private |
Vector with log lines.
Definition at line 145 of file Settings.h.
Referenced by info(), parseLines(), readFile(), and sanityCheck().
|
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().
|
staticprivate |
Map containing all known keywords and a description.
Definition at line 149 of file Settings.h.
Referenced by keywordCheck(), keywordExists(), and sanityCheck().
|
private |
Settings file name.
Definition at line 151 of file Settings.h.
Referenced by loadFile(), and readFile().