2

使用 pugixml 1.0

当我使用 shell STDIN 重定向时,从 std::cin 加载 XML 文档有效:

$ ./pugitest < sample.xml # OK

但是当在管道中调用时,它会失败:

$ cat sample.xml | ./pugitest # FAILS
./pugitest: Error reading from file/stream

这是 pugtest 程序的代码:

#include "pugixml.hpp"

#include <iostream>
#include <stdexcept>

int main(int argc, char *const argv[])
{
    try {
        pugi::xml_document doc;
        pugi::xml_parse_result result = doc.load(std::cin);
        if (!result) {
            throw std::runtime_error(result.description());
        }
    } catch (std::exception& e) {
        std::cerr << argv[0] << ": " << e.what() << '\n';
        return 1;
    }

    return 0;
}

我不明白原因。

4

1 回答 1

2

pugixml 1.0 期望输入流是可搜索的。如果流绑定到文件,则 Seek 有效,但如果流绑定到管道,则搜索失败。

从 pugixml 1.2(昨天发布......昨天:))开始,不可搜索的流被接受为 load() 源。您的示例在使用 1.2 编译时有效。

于 2012-05-03T05:26:48.610 回答