我正在编写一个用于处理GPX 文件的应用程序,并且在使用 QDomElement 类读取大型 XML 文档时遇到了性能问题。包含数千个航点的 GPS 路径文件可能需要半分钟才能加载。
这是我用于读取路径(路线或轨道)的代码:
void GPXPath::readXml(QDomElement &pathElement)
{
for (int i = 0; i < pathElement.childNodes().count(); ++i)
{
QDomElement child = pathElement.childNodes().item(i).toElement();
if (child.nodeName() == "trkpt" ||
child.nodeName() == "rtept")
{
GPXWaypoint wpt;
wpt.readXml(child);
waypoints_.append(wpt);
}
}
}
在使用 Apple 的 Instruments 分析代码时,我注意到 QDomNodeListPrivate::createList() 负责大部分计算时间,它被 QDomNodeList::count() 和 QDomNodeList::item() 调用。
看起来这不是遍历 QDomElement 的子元素的有效方法,因为似乎为每个操作重新生成了列表。我应该改用什么方法?