在返回的XML上循环遍历映射以获取节点值

时间:2015-04-19 18:43:26

标签: c++ xml parsing c++11 pugixml

在我的C ++程序中,我从XML文件中吐出节点。我有一个标准架构,输入文件可能没有。因此,我需要使用其中包含的信息类型映射节点标题。

#include "pugi/pugixml.hpp"

#include <iostream>
#include <string>
#include <map>

int main()
{

    const std::map<std::string, std::string> tagMap {
        {"description", "content"}, {"url", "web_address"}
    };

    pugi::xml_document doca, docb;
    std::map<std::string, pugi::xml_node> mapa, mapb;

    if (!doca.load_file("a.xml") || !docb.load_file("b.xml")) { 
        std::cout << "Can't find input files";
        return 1;
    }

    for (auto& node: doca.child("data").children("entry")) {
    const char* id = node.child_value("id");
    mapa[id] = node;
    }

    for (auto& node: docb.child("data").children("entry")) {
    const char* idcs = node.child_value("id");
        if (!mapa.erase(idcs)) {
        mapb[idcs] = node;
        }
    }

    // For removed
    for (auto& ea: mapa) {
    std::cout << "Removed:" << std::endl;
    ea.second.print(std::cout);
    }

    // For added
    for (auto& eb: mapb) {
        // Loop through tag map
        for (auto& kv : tagMap) {
            // Try to find the tag name named in second map value
            // and associate it to the type of information in first map value
            std::cout << "Found" << kv.first;
            std::cout << "which has value" << node.child_value(kv.second)
        }
    }

}

我特别要求帮助的信息在for (auto& eb: mapb) {之内。在这里,我试图查看收到的XML,看看我是否可以将标记与地图中的名称匹配(即内容和web_address),如果是,则打印节点的值,将其与其相关联(即描述或URL)。

我无法测试这个因为编译错误,我不明白,因为我已经提到上面的节点:

g++ -g -Wall -std=c++11 -I include -o main src/main.cpp include/pugi/pugixml.cpp src/main.cpp:51:38: error: use of undeclared identifier 'node' std::cout << "which has value" << node.child_value(kv.second)

我的预期输出是:

  • 找到具有此值的说明Hello!
  • 找到具有此值的网址www.hotmail.com

从此输入

<content>Hello!</content>
<web_address>www.hotmail.com</web_address> 

1 个答案:

答案 0 :(得分:2)

错误信息非常明确:您没有在输出代码范围内定义node

for (auto& node: ...)中定义节点时,它仅在for循环的范围内可见。

我不完全清楚应该是什么,但我猜你应该用node.child_value(kv.second)

之类的内容替换eb.second.child_value(kv.second)