Boost 1.46.1, Property Tree: How to iterate through ptree receiving sub ptrees?

此生再无相见时 提交于 2019-11-28 22:15:41

问题


First of all I shall say that I think I got how it should be done but my code will not compile any way I try. I based my assumption on this official example of empty ptree trick. There you can find next line:

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

Which shows that it is (or should be) possible to get subptree out from ptree.

So I assumed we could iterate thru ptree with something like BOOST_FOREACH in such manner:

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

}

But I get next error:

Error 1 error C2440: 'initializing' : cannot convert from 'std::pair<_Ty1,_Ty2>' to 'const boost::property_tree::ptree &'

or if I try

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

}

I get:

Error 1 error C2039: 'empty_ptree' : is not a member of 'boost::property_tree'

So what shall I do: how to iterate thru Boost Ptree and get sub Ptrees?

Update: I also tried such code

    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;
    }
}

This compiles, does not throw any exeptions but does not cout any Sub data, it just skeeps thru this cycle.

Update 2:

Hm... something probably went wrong in my xml - now I get correct results with that code.


回答1:


The property tree iterators point to pairs of the form (key, tree) of type ptree::value_type. The standard loop for iterating through the children of the node at path therefore looks like:

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.
}



回答2:


Using C++11, you can use the following to iterate through all the children of the node at path:

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



回答3:


I had the same problem with iterating trough JSON sub nodes

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

If you have a structure like:

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

You can iterate trough child nodes like this:

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");
    }
}

I could not find anything about path selector "shows." to select sub array. (notice the dot at the end)

Some good documentation can be found here: http://kaalus.atspace.com/ptree/doc/index.html

Hope this helps someone.



来源:https://stackoverflow.com/questions/6656380/boost-1-46-1-property-tree-how-to-iterate-through-ptree-receiving-sub-ptrees

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!