Boost 1.46.1,属性树:如何迭代ptree接收子ptree?

时间:2011-07-11 20:49:30

标签: c++ boost subtree boost-propertytree boost-foreach

首先,我要说我认为我应该怎么做但我的代码不会以任何方式编译我尝试。我的假设基于this official example of empty ptree trick。在那里你可以找到下一行:

  const ptree &settings = pt.get_child("settings", empty_ptree<ptree>());

这表明从(或应该)可以从ptree中获取subptree。

所以我假设我们可以用BOOST_FOREACH这样的方式迭代ptree:

BOOST_FOREACH(const boost::property_tree::ptree &v,
    config.get_child("servecies"))
{

}

但我得到了下一个错误:

  

错误1错误C2440:'初始化':无法转换为'std :: pair&lt; _Ty1,_Ty2&gt;' 'const boost :: property_tree :: ptree&amp;'

或者如果我尝试

BOOST_FOREACH(boost::property_tree::ptree &v,
    config.get_child("servecies", boost::property_tree::empty_ptree<boost::property_tree::ptree>()))
{

}

我明白了:

  

错误1错误C2039:'empty_ptree':不是'boost :: property_tree'的成员

那我该怎么做:如何通过Boost Ptree迭代并得到子Ptrees?

更新 我也试过这样的代码

    BOOST_FOREACH(boost::property_tree::ptree::value_type &v,
    config.get_child("path.to.array_of_objects"))
{
    std::cout << "First data: " << v.first.data() << std::endl;
    boost::property_tree::ptree subtree = (boost::property_tree::ptree) v.second ;
    BOOST_FOREACH(boost::property_tree::ptree::value_type &vs,
        subtree)
    {
        std::cout << "Sub data: " << vs.first.data() << std::endl;
    }
}

这个编译,不会抛出任何exeptions但不会cout任何Sub data,它只是通过这个循环产生偏差。

更新2:

嗯......我的xml可能出错了 - 现在我用该代码得到了正确的结果。

3 个答案:

答案 0 :(得分:31)

属性树迭代器指向(key, tree)类型的ptree::value_type形式的对。因此,在path处迭代遍历节点子节点的标准循环如下所示:

BOOST_FOREACH(const ptree::value_type &v, pt.get_child(path)) {
    // v.first is the name of the child.
    // v.second is the child tree.
}

答案 1 :(得分:25)

使用C ++ 11,您可以使用以下内容遍历path节点的所有子节点:

ptree children = pt.get_child(path);
for (const auto& kv : children) { // kv is of type ptree::value_type
    // v.first is the name of the child
    // v.second is the child tree
}

答案 2 :(得分:5)

我在通过JSON子节点迭代时遇到了同样的问题

boost::property_tree::read_json(streamJSON, ptJSON);

如果您的结构如下:

{
 playlists: [ {
   id: "1",
   x: "something"
   shows: [
    { val: "test" },
    { val: "test1" },
    { val: "test2" }
   ]
 },
 {
   id: "2"
   x: "else",
   shows: [
    { val: "test3" }
   ]
 }
 ]
}

您可以像这样迭代子节点:

BOOST_FOREACH(boost::property_tree::ptree::value_type &playlist, ptJSON.get_child("playlists"))
{
    unsigned long uiPlaylistId = playlist.second.get<unsigned long>("id");
    BOOST_FOREACH(boost::property_tree::ptree::value_type &show, playlist.second.get_child("shows."))
    {
       std::string strVal = show.second.get<std::string>("val");
    }
}

我找不到关于路径选择器“节目”的任何信息。选择子数组。 (注意最后的点)

这里可以找到一些好的文档: http://kaalus.atspace.com/ptree/doc/index.html

希望这有助于某人。