繁体   English   中英

Xerces XPath在路径不存在时导致段错误

[英]Xerces XPath causes seg fault when path doesn't exist

我可以成功使用Xerces XPath功能通过以下XML和C ++代码从XML查询信息。

XML格式

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<root>
    <ApplicationSettings>
        hello universe
    </ApplicationSettings>
</root>

C ++

int main()
{
  XMLPlatformUtils::Initialize();
  // create the DOM parser
  XercesDOMParser *parser = new XercesDOMParser;
  parser->setValidationScheme(XercesDOMParser::Val_Never);
  parser->parse("fake_cmf.xml");
  // get the DOM representation
  DOMDocument *doc = parser->getDocument();
  // get the root element
  DOMElement* root = doc->getDocumentElement();

  // evaluate the xpath
  DOMXPathResult* result=doc->evaluate(
      XMLString::transcode("/root/ApplicationSettings"), // <-- HERE IS THE XPATH
      root,
      NULL,
      DOMXPathResult::ORDERED_NODE_SNAPSHOT_TYPE, //DOMXPathResult::ANY_UNORDERED_NODE_TYPE, //DOMXPathResult::STRING_TYPE,
      NULL);

  // look into the xpart evaluate result
  result->snapshotItem(0);
  std::cout<<TranscodeToStr(result->getNodeValue()->getFirstChild()->getNodeValue(),"ascii").str()<<std::endl;;

  XMLPlatformUtils::Terminate();
 return 0;
}

问题在于有时我的XML仅具有某些字段。 但是,如果我从XML中删除ApplicationSettings条目,则会出现段错误。 如何正确处理这些可选字段? 我知道尝试从段错误中纠正是有风险的业务。

段故障发生在这条线

 std::cout<<TranscodeToStr(result->getNodeValue()->getFirstChild()->getNodeValue(),"ascii").str()<<std::endl;

特别是在get getFirstChild()调用中,因为getNodeValue()的结果为NULL

这是我的快速而肮脏的解决方案。 这不是很理想,但是可以。 我希望进行更复杂的评估和响应。

if (result->getNodeValue() == NULL)
{
  cout << "There is no result for the provided XPath " << endl;
}
else
{
  cout<<TranscodeToStr(result->getNodeValue()->getFirstChild()->getNodeValue(),"ascii").str()<<endl;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM