我正在尝试使用yaml-cpp来处理以下yaml:
- hosts: localhost
tasks:
- shell: whoami
- shell: hostname
我有一个约束,我不控制yaml进来。这对我来说似乎过于复杂,但我必须处理它。
显示yaml一样好。
我正在使用以下代码尝试执行任务:
YAML::Node pb = YAML::LoadFile(str_pbFilename);
printNodeInfo(pb);
if (pb.Type() == YAML::NodeType::Sequence)
{
int count = 0;
for (YAML::const_iterator it = pb.begin(); it != pb.end(); ++it)
{
if (it->first)
{
cout << "found first" << endl;
}
count++;
cout << "count = " << count << endl;
}
}
当我尝试访问任何内容时,异常 - >循环迭代中相关的(第一个或第二个):
Unhandled exception at 0x7524C41F in ProcYaml.exe: Microsoft C++ exception: YAML::InvalidNode at memory location 0x0040F748.
printNodeInfo(pb)显示:
Node size: 1
Node Tag: ?
Node is of Type: Sequence
我不确定我需要做什么才能处理第一个Sequence节点并进入我需要的元素:主机和每个主机要处理的任务。
删除异常抛出代码时,count打印为1(if(it-&gt; first){...})
我想我对此的主要误解是:如果我不能迭代它,我该怎么做?我是yaml和yaml-cpp的新手,所以我相信这里有一个noob因素。
答案 0 :(得分:1)
迭代序列时,只需要取消引用迭代器:
for (YAML::const_iterator it = pb.begin(); it != pb.end(); ++it) {
YAML::Node element = *it;
// do something with element
}
it->first
和it->second
模式用于迭代地图:
for (YAML::const_iterator it = pb.begin(); it != pb.end(); ++it) {
YAML::Node key = it->first;
YAML::Node value = it->second;
// do something with key, value
}
由于YAML节点可以是标量,序列或映射,因此在进行任何类型的迭代之前,必须检查类型(就像您正在做的那样)(除非您确切知道输入YAML的结构)。 / p>