23 #ifndef NDN_BOOST_INFO_PARSER_HPP
24 #define NDN_BOOST_INFO_PARSER_HPP
29 #include <ndn-cpp/common.hpp>
49 : value_(value), parent_(parent), lastChild_(0)
60 (
const std::string& treeName, ptr_lib::shared_ptr<BoostInfoTree> newTree);
69 createSubtree(
const std::string& treeName,
const std::string& value =
"");
76 std::vector<const BoostInfoTree*>
88 std::vector<const BoostInfoTree*> list = (*this)[key];
90 return &list[0]->value_;
96 getValue()
const {
return value_; }
99 getParent() {
return parent_; }
102 getLastChild() {
return lastChild_; }
105 prettyPrint(
int indentLevel = 1)
const;
114 std::vector<ptr_lib::shared_ptr<BoostInfoTree> >*
115 find(
const std::string& treeName);
117 static std::vector<std::string>
118 split(
const std::string &input,
char separator);
121 std::vector<std::pair<std::string, std::vector<ptr_lib::shared_ptr<BoostInfoTree> > > > subtrees_;
123 BoostInfoTree* parent_;
124 BoostInfoTree* lastChild_;
128 operator << (std::ostream& os,
const BoostInfoTree& tree)
130 os << tree.prettyPrint();
152 read(
const std::string& fileName);
161 write(
const std::string& fileName)
const;
181 shlex_split(
const std::string& s, std::vector<std::string>& result);
198 ptr_lib::shared_ptr<BoostInfoTree> root_;
Copyright (C) 2013-2015 Regents of the University of California.
Definition: common.hpp:35
const BoostInfoTree & createSubtree(const std::string &treeName, const std::string &value="")
Create a new BoostInfo and insert it as a sub-tree with the given name.
Definition: boost-info-parser.cpp:100
void addSubtree(const std::string &treeName, ptr_lib::shared_ptr< BoostInfoTree > newTree)
Insert a BoostInfoTree as a sub-tree with the given name.
Definition: boost-info-parser.cpp:84
void write(const std::string &fileName) const
Write the root tree of this BoostInfoParser as file in Boost's INFO format.
Definition: boost-info-parser.cpp:226
BoostInfoTree is provided for compatibility with the Boost INFO property list format used in ndn-cxx...
Definition: boost-info-parser.hpp:45
const BoostInfoTree & getRoot() const
Get the root tree of this parser.
Definition: boost-info-parser.hpp:168
const BoostInfoTree & read(const std::string &fileName)
Add the contents of the file to the root BoostInfoTree.
std::vector< const BoostInfoTree * > operator[](const std::string &key) const
Look up using the key and return a list of the subtrees.
Definition: boost-info-parser.cpp:108
A BoostInfoParser reads files in Boost's INFO format and constructs a BoostInfoTree.
Definition: boost-info-parser.hpp:138
const std::string * getFirstValue(const std::string &key) const
Look up using the key and return string value of the first subtree.
Definition: boost-info-parser.hpp:86