How to iterate over XML structure in boost::property_tree

前端 未结 1 570
耶瑟儿~
耶瑟儿~ 2021-02-15 10:57

I have an XML structure along the lines of:


 
  
   
           


        
1条回答
  •  情书的邮戳
    2021-02-15 11:22

    It is not possible to iterate over all elements directly; the documentation says

    There is no way to iterate over the entire tree.

    Now, you could use recursion, and apply STL algorithms at each level to mimic that; it does not fit your requirement of doing this in a single loop in my sample below, but it does works:

    template 
    void collect(InputIt first, InputIt last, OutputIt dest, Compare comp)
    {
        typedef typename std::iterator_traits::reference reference;
    
        std::copy_if (
            first, last, dest,
            [comp] (reference what) { return comp(what.first); });
    
        std::for_each (
            first, last,
            [dest, comp] (reference what) { collect(what.second.begin(), what.second.end(), dest, comp); });
    }
    
    
    std::vector> match;
    
    collect(
        xml.begin (), xml.end (), std::back_inserter(match),
        [] (const std::string& key) { return key == "ElementIWant"; });
    
    for (auto pair: match)
    {
         std::cout << pair.first << std::endl;
    }
    

    Here is a version that is "fully" recursive and preserve the order of appearance:

    template 
    void collect_recursive(InputIt first, InputIt last, OutputIt dest, Compare comp)
    {
        typedef typename std::iterator_traits::reference reference;
    
        if (first == last)
        {
            return;
        }
    
        auto begin = first->second.begin ();
        auto end = first->second.end ();
    
        if (begin != end)
        {
            collect_recursive (begin, end, dest, comp);
        }
    
        if (comp (first->first))
        {
            dest = *first;
        }
    
        collect_recursive (++first, last, dest, comp);
    }
    

    0 讨论(0)
提交回复
热议问题