tue_config
yaml_emitter.cpp
Go to the documentation of this file.
2 #include "tue/config/data.h"
3 #include "tue/config/node.h"
4 
5 #include "tue/config/map.h"
6 #include "tue/config/sequence.h"
7 
8 namespace tue
9 {
10 namespace config
11 {
12 
13 // ----------------------------------------------------------------------------------------------------
14 
16 {
17 }
18 
19 // ----------------------------------------------------------------------------------------------------
20 
21 void emitRecursive(std::ostream& out, const tue::config::Data& cfg, const NodePtr& n,
22  const std::string& indent, bool ignore_first_indent = false)
23 {
24  if (n->type() == ARRAY)
25  {
26  Sequence* array = static_cast<Sequence*>(n.get());
27  const std::vector<NodeIdx>& children = array->children_;
28  for(std::vector<NodeIdx>::const_iterator it = children.begin(); it != children.end(); ++it)
29  {
30  out << indent << "- ";
31  emitRecursive(out, cfg, cfg.nodes[*it], indent + " ", true);
32  }
33  } else
34  {
35  Map* map = static_cast<Map*>(n.get());
36 
37  const std::map<Label, Variant>& values = map->values;
38  for(std::map<Label, Variant>::const_iterator it = values.begin(); it != values.end(); ++it)
39  {
40  if (!ignore_first_indent)
41  out << indent;
42  else
43  ignore_first_indent = false;
44 
45  out << cfg.getName(it->first) << ": " << it->second << std::endl;
46  }
47 
48  const std::map<Label, NodeIdx>& children = map->map_;
49  for(std::map<Label, NodeIdx>::const_iterator it = children.begin(); it != children.end(); ++it)
50  {
51  if (!ignore_first_indent)
52  out << indent;
53  else
54  ignore_first_indent = false;
55 
56  out << cfg.getName(it->first) << ": " << std::endl;
57  emitRecursive(out, cfg, cfg.nodes[it->second], indent + " ");
58  }
59  }
60 }
61 
62 // ----------------------------------------------------------------------------------------------------
63 
65 {
66  if (!cfg.data)
67  return;
68 
69  emitRecursive(out, *cfg.data, cfg.data->nodes[cfg.idx], indent);
70 }
71 
72 } // end namespace config
73 
74 } // end namespace tue
75 
tue::config::Data::getName
const std::string & getName(const Label &label) const
Definition: data.h:55
std::string
std::vector< NodeIdx >
tue::config::Sequence::children_
std::vector< NodeIdx > children_
Definition: sequence.h:40
tue::config::Map::map_
std::map< Label, NodeIdx > map_
Definition: map.h:62
sequence.h
tue::config::Map
Definition: map.h:12
tue::config::Data::nodes
std::vector< NodePtr > nodes
Definition: data.h:77
node.h
std::ostream
tue::config::DataConstPointer::idx
NodeIdx idx
Definition: data_pointer.h:43
map.h
std::map
tue::config::DataConstPointer::data
boost::shared_ptr< const Data > data
Definition: data_pointer.h:42
tue::config::ARRAY
@ ARRAY
Definition: node_type.h:13
tue::config::Data
Definition: data.h:17
std::endl
T endl(T... args)
tue::config::YAMLEmitter::YAMLEmitter
YAMLEmitter()
Definition: yaml_emitter.cpp:15
tue::config::YAMLEmitter::emit
void emit(const tue::config::DataConstPointer &cfg, std::ostream &out, const std::string &indent="")
Definition: yaml_emitter.cpp:64
std::vector::begin
T begin(T... args)
data.h
tue::config::NodePtr
boost::shared_ptr< Node > NodePtr
Definition: types.h:21
tue::config::DataConstPointer
Definition: data_pointer.h:35
std::vector::end
T end(T... args)
tue::config::Map::values
std::map< Label, Variant > values
Definition: map.h:64
tue::config::emitRecursive
void emitRecursive(std::ostream &out, const tue::config::Data &cfg, const NodePtr &n, const std::string &indent, bool ignore_first_indent=false)
Definition: yaml_emitter.cpp:21
tue
tue::config::Sequence
Definition: sequence.h:14
config
tue::config::ReaderWriter config
Definition: sdf_gtest.cpp:9
yaml_emitter.h