tue_config
reader_writer.h
Go to the documentation of this file.
1 #ifndef TUE_CONFIG_READER_WRITER_H_
2 #define TUE_CONFIG_READER_WRITER_H_
3 
4 #include "tue/config/data.h"
6 #include "tue/config/types.h"
7 
8 #include <iostream>
9 
10 // Sync
11 #include <ctime>
12 
13 namespace tue
14 {
15 
16 namespace config
17 {
18 
19 struct Error
20 {
22 };
23 
24 class Data;
25 
27 {
28 
29 public:
30 
31  ReaderWriter();
32 
34 
35  virtual ~ReaderWriter();
36 
37  // ---- READING -----------------------------------------------------------------------
38 
39  template<typename T>
47  bool value(const std::string& name, T& value, RequiredOrOptional opt = REQUIRED)
48  {
49  Label label;
50  if (!cfg_->getLabel(name, label))
51  return false;
52 
53  Variant v;
54  if (!cfg_->nodes[idx_]->value(label, v))
55  {
56  if (opt == REQUIRED)
57  addError("Expected property '" + name + "', not found.");
58  return false;
59  }
60 
61  if (!v.getValue(value))
62  {
63  if (opt == REQUIRED)
64  addError("Property '" + name + "' has invalid type.");
65  return false;
66  }
67 
68  return true;
69  }
70 
76  ReaderWriter limitScope() const;
77 
84  bool readArray(const std::string& name, const RequiredOrOptional opt = OPTIONAL) { return read(name, ARRAY, opt); }
85 
92  bool readGroup(const std::string& name, const RequiredOrOptional opt = OPTIONAL) { return read(name, MAP, opt); }
93 
98  bool endArray() { return end(); }
99 
104  bool endGroup() { return end(); }
105 
110  bool nextArrayItem() { return next(); }
111 
117  bool hasArray(const std::string& name) { return hasChild(name, ARRAY); }
118 
124  bool hasGroup(const std::string& name) { return hasChild(name, MAP); }
125 
130  const std::string& source() const { return cfg_->source_; }
131 
132 
133  // ---- WRITING -----------------------------------------------------------------------
134 
140  bool writeGroup(const std::string& name);
141 
147  bool writeArray(const std::string& name);
148 
149  template<typename T>
155  void setValue(const std::string& name, const T& value)
156  {
157  Variant var(value);
158  Label label = cfg_->getOrAddLabel(name);
159  cfg_->nodes[idx_]->setValue(label, var);
160  }
161 
169  {
170  trim(value);
171 
172  Variant var(value);
173  Label label = cfg_->getOrAddLabel(name);
174  cfg_->nodes[idx_]->setValue(label, var);
175  }
176 
181  bool addArrayItem();
182 
187  bool endArrayItem();
188 
193  void setSource(const std::string& source) { cfg_->source_ = source; }
194 
195 
196  // ---- ADDITIONAL -----------------------------------------------------------------------
197 
202  std::string toYAMLString() const;
203 
204  void addError(const std::string& msg);
205 
206  bool hasError() const { return !error_->message.empty(); }
207 
208  const std::string& error() const { return error_->message; }
209 
215  bool loadFromSDFFile(const std::string& filename);
216 
222  bool loadFromXMLFile(const std::string& filename);
223 
229  bool loadFromYAMLFile(const std::string& filename, const ResolveConfig& resolve_config = ResolveConfig::defaultConfig());
230 
235  bool sync();
236 
243  friend std::ostream& operator<< (std::ostream& out, const ReaderWriter& rw);
244 
249  inline DataPointer data() const { return DataPointer(cfg_, idx_); }
250 
255  inline void setErrorContext(const std::string& context) { error_context_.reset(new std::string(context)); }
256 
261  inline void setShortErrorContext(const std::string& context)
262  {
263  cfg_->nodes[idx_]->setName(context);
264  }
265 
266 private:
267 
275  bool read(const std::string& name, const NodeType type, RequiredOrOptional opt = OPTIONAL);
276 
281  bool end();
282 
287  bool next();
288 
295  bool hasChild(const std::string& name, NodeType type) const;
296 
297  NodeIdx idx_; // Current node index
298 
299  NodeIdx scope_; // Index of highest node of the scope
300 
301  boost::shared_ptr<Data> cfg_; // Data pointer
302 
303  boost::shared_ptr<Error> error_; // Error pointer
304 
305  boost::shared_ptr<std::string> error_context_; // Error context pointer
306 
307 
308  // Syncing
309 
310  std::string filename_; // filename of the source file
311 
312  std::time_t source_last_write_time_; // last writing time of the source file at time of reading.
313 
314  ResolveConfig resolve_config_; // Needs to be stored for sync
315 
316 };
317 
318 } // end namespace config
319 
320 } // end namespace tue
321 
322 #endif
tue::config::ResolveConfig::defaultConfig
static ResolveConfig defaultConfig()
Default ResolveConfig that has all resolve options enabled.
Definition: resolve_config.h:26
ctime
tue::config::ReaderWriter::loadFromSDFFile
bool loadFromSDFFile(const std::string &filename)
loadFromSDFFile loads a sdf file into a ReaderWriter class
Definition: reader_writer.cpp:267
std::string
tue::config::ReaderWriter::setShortErrorContext
void setShortErrorContext(const std::string &context)
setShortErrorContext
Definition: reader_writer.h:261
tue::config::ReaderWriter::filename_
std::string filename_
Definition: reader_writer.h:310
tue::config::Error
Definition: reader_writer.h:19
tue::config::ReaderWriter::operator<<
friend std::ostream & operator<<(std::ostream &out, const ReaderWriter &rw)
operator << stream operator
Definition: reader_writer.cpp:361
tue::config::ReaderWriter::setSource
void setSource(const std::string &source)
setSource set the source file of the data in this object
Definition: reader_writer.h:193
tue::config::ReaderWriter::source
const std::string & source() const
source get the source file of the data in this object
Definition: reader_writer.h:130
types.h
tue::config::ReaderWriter::endArrayItem
bool endArrayItem()
endArrayItem go back to the array level
Definition: reader_writer.cpp:245
tue::trim
static void trim(std::string &s)
Definition: types.h:41
tue::config::NodeIdx
unsigned int NodeIdx
Definition: data_pointer.h:12
tue::config::DataPointer
Definition: data_pointer.h:17
tue::config::Error::message
std::string message
Definition: reader_writer.h:21
tue::config::ReaderWriter::writeArray
bool writeArray(const std::string &name)
writeArray starts writing an array. Or start extending it, if it already exists.
Definition: reader_writer.cpp:202
tue::config::ReaderWriter::next
bool next()
next go to next item in an array
Definition: reader_writer.cpp:98
tue::config::ReaderWriter::loadFromYAMLFile
bool loadFromYAMLFile(const std::string &filename, const ResolveConfig &resolve_config=ResolveConfig::defaultConfig())
loadFromYAMLFile loads a yaml file into a ReaderWriter class
Definition: reader_writer.cpp:305
iostream
tue::config::ReaderWriter::writeGroup
bool writeGroup(const std::string &name)
writeGroup starts writing a group. Or start extending it, if it already exists.
Definition: reader_writer.cpp:181
tue::config::ReaderWriter::addArrayItem
bool addArrayItem()
addArrayItem create a new item in the array
Definition: reader_writer.cpp:223
tue::config::ReaderWriter::readArray
bool readArray(const std::string &name, const RequiredOrOptional opt=OPTIONAL)
readArray read the child with key 'name', which should be an array
Definition: reader_writer.h:84
tue::config::ReaderWriter
Definition: reader_writer.h:26
tue::config::ReaderWriter::loadFromXMLFile
bool loadFromXMLFile(const std::string &filename)
loadFromXMLFile loads a xml file into a ReaderWriter class
Definition: reader_writer.cpp:286
tue::config::ReaderWriter::toYAMLString
std::string toYAMLString() const
toYAMLString convert data (from current reading/writing point) to yaml string
Definition: reader_writer.cpp:257
tue::config::ReaderWriter::sync
bool sync()
sync re-read the source file if the file has changed since last reading time.
Definition: reader_writer.cpp:325
tue::config::ReaderWriter::end
bool end()
end go to parent node.
Definition: reader_writer.cpp:78
tue::config::ReaderWriter::data
DataPointer data() const
data get the data from the current reading/writing point
Definition: reader_writer.h:249
tue::config::ReaderWriter::cfg_
boost::shared_ptr< Data > cfg_
Definition: reader_writer.h:301
std::ostream
tue::config::ReaderWriter::hasArray
bool hasArray(const std::string &name)
hasArray check if current node has a child, which is an array, with the key 'name'
Definition: reader_writer.h:117
tue::config::ReaderWriter::resolve_config_
ResolveConfig resolve_config_
Definition: reader_writer.h:314
tue::config::ReaderWriter::error
const std::string & error() const
Definition: reader_writer.h:208
tue::config::ReaderWriter::endGroup
bool endGroup()
endGroup go to the parrent of current group, wrapping end() for readbility
Definition: reader_writer.h:104
tue::config::RequiredOrOptional
RequiredOrOptional
Definition: types.h:15
tue::config::ReaderWriter::read
bool read(const std::string &name, const NodeType type, RequiredOrOptional opt=OPTIONAL)
read read child with key 'name' of type ARRAY or MAP
Definition: reader_writer.cpp:56
tue::config::ReaderWriter::error_
boost::shared_ptr< Error > error_
Definition: reader_writer.h:303
tue::config::ReaderWriter::hasGroup
bool hasGroup(const std::string &name)
hasGroup check if current node has a child, which is a group, with the key 'name'
Definition: reader_writer.h:124
tue::config::OPTIONAL
@ OPTIONAL
Definition: types.h:18
tue::config::ReaderWriter::setErrorContext
void setErrorContext(const std::string &context)
setErrorContext
Definition: reader_writer.h:255
tue::config::ReaderWriter::scope_
NodeIdx scope_
Definition: reader_writer.h:299
tue::config::ReaderWriter::endArray
bool endArray()
endArray go to parrent of current array, wrapping end() for readibility
Definition: reader_writer.h:98
std::time_t
tue::config::ARRAY
@ ARRAY
Definition: node_type.h:13
tue::config::Data
Definition: data.h:17
tue::config::ReaderWriter::addError
void addError(const std::string &msg)
Definition: reader_writer.cpp:136
tue::config::ReaderWriter::value
bool value(const std::string &name, T &value, RequiredOrOptional opt=REQUIRED)
value read value of child with key 'name'
Definition: reader_writer.h:47
tue::config::MAP
@ MAP
Definition: node_type.h:12
tue::config::ReaderWriter::setValue
void setValue(const std::string &name, const T &value)
setValue set child value with key 'name' and value 'value'
Definition: reader_writer.h:155
tue::config::ReaderWriter::limitScope
ReaderWriter limitScope() const
limitScope Limit the data to the current position. All parents and siblings incl. their child aren't ...
Definition: reader_writer.cpp:113
tue::config::ReaderWriter::idx_
NodeIdx idx_
Definition: reader_writer.h:297
tue::config::ReaderWriter::error_context_
boost::shared_ptr< std::string > error_context_
Definition: reader_writer.h:305
tue::config::ReaderWriter::hasChild
bool hasChild(const std::string &name, NodeType type) const
hasChild check if node has a child with key 'name' and type ARRAY or MAP
Definition: reader_writer.cpp:122
data.h
tue::config::ReaderWriter::readGroup
bool readGroup(const std::string &name, const RequiredOrOptional opt=OPTIONAL)
readGroup read the child with key 'name', which should be a group
Definition: reader_writer.h:92
tue::config::ReaderWriter::setValue
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...
Definition: reader_writer.h:168
tue::config::NodeType
NodeType
Definition: node_type.h:10
tue::config::ResolveConfig
Class to config the resolve behaviour of a loader.
Definition: resolve_config.h:16
tue::config::ReaderWriter::source_last_write_time_
std::time_t source_last_write_time_
Definition: reader_writer.h:312
tue::config::REQUIRED
@ REQUIRED
Definition: types.h:17
tue::config::ReaderWriter::~ReaderWriter
virtual ~ReaderWriter()
Definition: reader_writer.cpp:50
tue::config::Variant::getValue
bool getValue(int &v)
Definition: variant.h:124
tue::config::ReaderWriter::ReaderWriter
ReaderWriter()
Definition: reader_writer.cpp:33
tue
tue::config::ReaderWriter::nextArrayItem
bool nextArrayItem()
nextArrayItem go to the next item in the array, wrapping next() for readbility
Definition: reader_writer.h:110
tue::config::Variant
Definition: variant.h:111
resolve_config.h
config
tue::config::ReaderWriter config
Definition: sdf_gtest.cpp:9
tue::config::ReaderWriter::hasError
bool hasError() const
Definition: reader_writer.h:206