我正在尝试走一个我以前一无所知的 yaml-cpp (0.5.1) 节点。我知道有一个 YAML::Dump 使用发射器和节点事件来做到这一点,但我想知道是否有不使用发射器的方法。
我尝试了以下代码,但未能找到确定所有需要案例所需的方法:
void yaml_cpp_TestFunc_recursedown(YAML::Node& node)
{
for(YAML::const_iterator it=node.begin();it!=node.end();++it)
{
auto dit = *it;
try
{
if (dit.IsDefined())
{
try
{
std::cout << dit.as<std::string>() << std::endl;
}
catch (...) { }
yaml_cpp_TestFunc_recursedown(dit);
}
else {}
}
catch (const YAML::InvalidNode& ex)
{
try
{
if (dit.second.IsDefined())
{
try
{
std::cout << dit.second.as<std::string>() << std::endl;
}
catch (...) { }
yaml_cpp_TestFunc_recursedown(dit);
}
else {}
}
catch (...) { }
}
catch (...) { }
}
}
void yaml_cpp_Test()
{
const std::string testfile=".\\appconf.yaml";
{
// generate a test yaml
YAML::Node node;
node["paths"].push_back("C:\\test\\");
node["paths"].push_back("..\\");
node["a"] = "123";
node["b"]["c"] = "4567";
YAML::Emitter emitter;
emitter << node;
std::ofstream fout(testfile);
fout << emitter.c_str();
}
{
// try to walk the test yaml
YAML::Node config = YAML::LoadFile(testfile);
yaml_cpp_TestFunc_recursedown(config);
}
}