6

I just started using rapidXML since it was recommended to me. Right now to iterate over multiple siblings i do this:

//get the first texture node    
xml_node<>* texNode = rootNode->first_node("Texture");
if(texNode != 0){
    string test = texNode->first_attribute("path")->value();
    cout << test << endl;
}
//get all its siblings
while(texNode->next_sibling() != 0){
    string test = texNode->first_attribute("path")->value();
    cout << test << endl;
    texNode = texNode->next_sibling();
}

as a basic test and it works fine. Anyways, I came across node_iterator which seems to be an extra iterator class to do this for me. anyways, I could not find any example on how to use it, so I was wondering if some one could show me :)

thanks!

coppro
  • 13,900
  • 3
  • 54
  • 73
user240137
  • 663
  • 3
  • 9
  • 15
  • be careful about rapidxml as it doesn't do any meaningful well-formedness checking ... – vtd-xml-author Jan 21 '10 at 02:52
  • The above example is the right way to do it. Except if you test for texNode->next_sibling() != 0 at the beginning of your while loop, then when you get to the last sibling and set texNode = texNode->next_sibling(); at the end of the while loop , that textNode will not have a next_sibling since it is the last one. Therefor the while loop will never process the very last sibling because of that beginning check. – NSDestr0yer Oct 17 '14 at 18:16

3 Answers3

3

The documentation that I could find documents no node_iterator type. I can't even find the word iterator on that page except in reference to output iterators, which you clearly don't want.

It could be that it's an internal API, or one under development, so you're probably best not to use it right now.

coppro
  • 13,900
  • 3
  • 54
  • 73
  • yeah, thats what I figgured, if I include the iterator.hpp that comes with it it throws quite a few errors on GCC 4.2 on a mac anyways. – user240137 Jan 20 '10 at 22:32
3
#include "rapidxml/rapidxml.hpp"
#include "rapidxml/rapidxml_utils.hpp"
#include "rapidxml/rapidxml_iterators.hpp"

...

rapidxml::xml_document<wchar_t> doc;
doc.parse<0>(xmlFile.data());

rapidxml::node_iterator< wchar_t > begIt( doc.first_node());
rapidxml::node_iterator< wchar_t > endIt;

...

std::for_each( begIt, endIt, [] (rapidxml::xml_node< wchar_t >& node)
{
    std::wcout << node.name() << std::endl;
} );
Jamm
  • 29
  • 1
1

No RapidXml does not provide any iterator. Your solution is the one to be followed... manually using function first_node, next_sibling and so on... RapidXml is made to be light and fast... Even if a programmer would sure appreciate some syntax to help him :)

Andry
  • 14,281
  • 23
  • 124
  • 216