XML path to the second child

I want to put a new value in a child element inside the ptree path (without iteration)

As an example:

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>

int main() {
  using boost::property_tree::ptree;

  ptree main;
  ptree children;
  children.add("Foo", "bar");
  main.add_child("child", children);
  main.add_child("child", children);

  ptree newChildren("Foo");
  main.put("child{2}.Foo", newChildren.data()); // <-- Access second element?

  // Output
  boost::property_tree::xml_writer_settings<std::string> settings('\t', 1);
  boost::property_tree::write_xml(std::cout, main, settings);

  std::cin.ignore();
  return 0;
}

The problem is that I cannot access my second child along the way. Are there any formatting that work?

I mean this part {2}:

"child{2}.Foo"

I tried <2>, [2], (2) ... no luck ...: (

Any hope for me? Thanks!

+4
source share
1 answer

I repeat: there is no XML parser / library in Boost.

What you use (ab) is the Boost property tree. As you have discovered, this is a library of the “property tree”, that is, it can do some things. Including write and read trees.

XML- , XML ( XML- ++?).

:

Live On Coliru

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>

int main() {
    using boost::property_tree::ptree;

    ptree pt;

    {
        ptree children; children.add("Foo", "bar");
        pt.add_child("child", children);
        pt.add_child("child", children).put("MARK","so we know it the second");
    }

    // Output
    boost::property_tree::xml_writer_settings<std::string> settings('\t', 1);
    //boost::property_tree::write_xml(std::cout, pt, settings);

    auto child1 = std::find_if(pt.begin(),        pt.end(), [](auto& node) { return node.first == "child"; });
    auto child2 = std::find_if(std::next(child1), pt.end(), [](auto& node) { return node.first == "child"; });

    if (child2 != pt.end())
    {
        boost::property_tree::write_xml(std::cout, child2->second, settings);

        ptree newChildren("Foo");
        child2->second.put("Sub.Foo", newChildren.data()).put("BYE", "ALL DONE"); // <-- Access second element?
        boost::property_tree::write_xml(std::cout << "\n\nAFTER EDITING:\n", child2->second, settings);
    }
}

<?xml version="1.0" encoding="utf-8"?>
<Foo>bar</Foo>
<MARK>so we know it&apos;s the second</MARK>


AFTER EDITING:
<?xml version="1.0" encoding="utf-8"?>
<Foo>bar</Foo>
<MARK>so we know it&apos;s the second</MARK>
<Sub>
    <Foo>
        Foo
        <BYE>ALL DONE</BYE>
    </Foo>
</Sub>

UPDATE

:

Live On Coliru

#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>

template <typename Tree, typename Out>
Out find_all(Tree& pt, typename Tree::path_type path, Out out) {
    if (path.empty()) {
        *out++ = pt;
        return out;
    }

    auto head = path.reduce();
    for (auto& child : pt)
        if (child.first == head)
            out = find_all(child.second, path, out);

    return out;
}

int main() {
    using boost::property_tree::ptree;

    ptree pt;

    {
        ptree children; children.add("Foo", "bar");
        pt.add_child("child", children);
        pt.add_child("child", children).put("MARK","so we know it the second");
    }

    // Output
    boost::property_tree::xml_writer_settings<std::string> settings('\t', 1);
    //boost::property_tree::write_xml(std::cout, pt, settings);

    std::vector<std::reference_wrapper<ptree> > matches;
    find_all(pt, "child", back_inserter(matches));

    ptree& child2 = matches.at(1);
    child2.put("BYE", "ALL DONE");

    boost::property_tree::write_xml(std::cout, child2, settings);
}

<?xml version="1.0" encoding="utf-8"?>
<Foo>bar</Foo>
<MARK>so we know it&apos;s the second</MARK>
<BYE>ALL DONE</BYE>
+3

Source: https://habr.com/ru/post/1612005/


All Articles