使用 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;
}
我不明白原因。