Go to the documentation of this file. 1 #ifndef TUE_CONFIG_READER_WRITER_H_
2 #define TUE_CONFIG_READER_WRITER_H_
50 if (!
cfg_->getLabel(name, label))
54 if (!
cfg_->nodes[
idx_]->value(label, v))
57 addError(
"Expected property '" + name +
"', not found.");
64 addError(
"Property '" + name +
"' has invalid type.");
159 cfg_->nodes[
idx_]->setValue(label, var);
174 cfg_->nodes[
idx_]->setValue(label, var);
263 cfg_->nodes[
idx_]->setName(context);
static ResolveConfig defaultConfig()
Default ResolveConfig that has all resolve options enabled.
bool loadFromSDFFile(const std::string &filename)
loadFromSDFFile loads a sdf file into a ReaderWriter class
void setShortErrorContext(const std::string &context)
setShortErrorContext
friend std::ostream & operator<<(std::ostream &out, const ReaderWriter &rw)
operator << stream operator
void setSource(const std::string &source)
setSource set the source file of the data in this object
const std::string & source() const
source get the source file of the data in this object
bool endArrayItem()
endArrayItem go back to the array level
static void trim(std::string &s)
bool writeArray(const std::string &name)
writeArray starts writing an array. Or start extending it, if it already exists.
bool next()
next go to next item in an array
bool loadFromYAMLFile(const std::string &filename, const ResolveConfig &resolve_config=ResolveConfig::defaultConfig())
loadFromYAMLFile loads a yaml file into a ReaderWriter class
bool writeGroup(const std::string &name)
writeGroup starts writing a group. Or start extending it, if it already exists.
bool addArrayItem()
addArrayItem create a new item in the array
bool readArray(const std::string &name, const RequiredOrOptional opt=OPTIONAL)
readArray read the child with key 'name', which should be an array
bool loadFromXMLFile(const std::string &filename)
loadFromXMLFile loads a xml file into a ReaderWriter class
std::string toYAMLString() const
toYAMLString convert data (from current reading/writing point) to yaml string
bool sync()
sync re-read the source file if the file has changed since last reading time.
bool end()
end go to parent node.
DataPointer data() const
data get the data from the current reading/writing point
boost::shared_ptr< Data > cfg_
bool hasArray(const std::string &name)
hasArray check if current node has a child, which is an array, with the key 'name'
ResolveConfig resolve_config_
const std::string & error() const
bool endGroup()
endGroup go to the parrent of current group, wrapping end() for readbility
bool read(const std::string &name, const NodeType type, RequiredOrOptional opt=OPTIONAL)
read read child with key 'name' of type ARRAY or MAP
boost::shared_ptr< Error > error_
bool hasGroup(const std::string &name)
hasGroup check if current node has a child, which is a group, with the key 'name'
void setErrorContext(const std::string &context)
setErrorContext
bool endArray()
endArray go to parrent of current array, wrapping end() for readibility
void addError(const std::string &msg)
bool value(const std::string &name, T &value, RequiredOrOptional opt=REQUIRED)
value read value of child with key 'name'
void setValue(const std::string &name, const T &value)
setValue set child value with key 'name' and value 'value'
ReaderWriter limitScope() const
limitScope Limit the data to the current position. All parents and siblings incl. their child aren't ...
boost::shared_ptr< std::string > error_context_
bool hasChild(const std::string &name, NodeType type) const
hasChild check if node has a child with key 'name' and type ARRAY or MAP
bool readGroup(const std::string &name, const RequiredOrOptional opt=OPTIONAL)
readGroup read the child with key 'name', which should be a group
void setValue(const std::string &name, std::string value)
setValue<string> set child value with key 'name' and value 'value', value is stripped from leading an...
Class to config the resolve behaviour of a loader.
std::time_t source_last_write_time_
bool nextArrayItem()
nextArrayItem go to the next item in the array, wrapping next() for readbility
tue::config::ReaderWriter config