A class to enable loading of configuration store from a raw text file. More...
#include "raw-text-config.h"
Public Member Functions | |
RawTextConfigLoad () | |
default constructor More... | |
virtual | ~RawTextConfigLoad () |
destructor More... | |
virtual void | Attributes (void) |
Load or save the attributes values. More... | |
virtual void | Default (void) |
Load or save the default values. More... | |
virtual void | Global (void) |
Load or save the global values. More... | |
virtual void | SetFilename (std::string filename) |
Set the file name. More... | |
Public Member Functions inherited from ns3::FileConfig | |
virtual | ~FileConfig () |
void | SetSaveDeprecated (bool saveDeprecated) |
Set if to save deprecated attributes. More... | |
Private Member Functions | |
virtual bool | ParseLine (const std::string &line, std::string &type, std::string &name, std::string &value) |
Parse (potentially multi-) line configs into type, name, and values. More... | |
std::string | Strip (std::string value) |
Strip out attribute value. More... | |
Private Attributes | |
std::ifstream * | m_is |
Config store input stream. More... | |
Additional Inherited Members | |
Protected Attributes inherited from ns3::FileConfig | |
bool | m_saveDeprecated |
save deprecated attributes More... | |
A class to enable loading of configuration store from a raw text file.
Definition at line 55 of file raw-text-config.h.
ns3::RawTextConfigLoad::RawTextConfigLoad | ( | ) |
|
virtual |
|
virtual |
Load or save the attributes values.
Implements ns3::FileConfig.
Definition at line 269 of file raw-text-config.cc.
References m_is, NS_LOG_DEBUG, NS_LOG_FUNCTION, ParseLine(), ns3::Config::Set(), and Strip().
Referenced by ns3::load_clicked_attribute().
|
virtual |
Load or save the default values.
Implements ns3::FileConfig.
Definition at line 219 of file raw-text-config.cc.
References m_is, NS_LOG_DEBUG, NS_LOG_FUNCTION, ParseLine(), ns3::Config::SetDefault(), and Strip().
Referenced by ns3::load_clicked_default().
|
virtual |
Load or save the global values.
Implements ns3::FileConfig.
Definition at line 244 of file raw-text-config.cc.
References m_is, NS_LOG_DEBUG, NS_LOG_FUNCTION, ParseLine(), ns3::Config::SetGlobal(), and Strip().
|
privatevirtual |
Parse (potentially multi-) line configs into type, name, and values.
This will return false
for blank lines, comments (lines beginning with '#'), and incomplete entries. An entry is considered complete when a type and name have been found and the value contains two delimiting quotation marks '"'.
line | the config file line |
type | the config type {default, global, value} |
name | the config attribute name |
value | the value to set |
Definition at line 295 of file raw-text-config.cc.
References NS_LOG_FUNCTION.
Referenced by Attributes(), Default(), and Global().
|
virtual |
Set the file name.
filename | the filename |
Implements ns3::FileConfig.
Definition at line 201 of file raw-text-config.cc.
References m_is, and NS_LOG_FUNCTION.
Referenced by ns3::load_clicked_attribute(), and ns3::load_clicked_default().
|
private |
Strip out attribute value.
value | the input string |
Definition at line 208 of file raw-text-config.cc.
References NS_ABORT_MSG_IF, NS_LOG_FUNCTION, and visualizer.core::start().
Referenced by Attributes(), Default(), and Global().
|
private |
Config store input stream.
Definition at line 87 of file raw-text-config.h.
Referenced by ~RawTextConfigLoad(), Attributes(), Default(), Global(), and SetFilename().