替换文档的根节点

发布于 2024-12-04 09:25:40 字数 907 浏览 2 评论 0原文

我在使用 libxml++ 的应用程序中发现内存泄漏,原因是我替换了根目录的 XML 文档节点。我非常小心地删除了所有子节点,但是使用 xmlpp::Document 接口,我发现无法替换根节点。

这是有问题的代码的示例:

xmlpp::Document Doc;
Doc.create_root_node("root");
// Populate the document
// [...]

void ReplaceRootNode(const xmlpp::Element* NewRootNode)
{
  // Remove all root node children
  xmlpp::Element* RootNode = Doc.get_root_node();
  const xmlpp::Node::NodeList Children = RootNode->get_children();
  xmlpp::Node::NodeList::const_iterator itChild = Children.begin();
  while (itChild != Children.end()) {
    RootNode->remove_child(*itChild++);
  }

  // Replace root node
  Doc.create_root_node_by_import(NewRootNode); // Leak: memory for previous root node is not freed
}

到目前为止,我想出的解决方案是编辑文档的根节点以更改其名称和属性。是否有更简单的方法来避免这种泄漏,且不涉及先前根节点名称和属性的版本?

I found a memory leak in my application using libxml++ due to an XML document where I replace the root node. I took good care for removing any child nodes, but using the xmlpp::Document interface I find no way to replace the root node.

This is a sample of the offending code:

xmlpp::Document Doc;
Doc.create_root_node("root");
// Populate the document
// [...]

void ReplaceRootNode(const xmlpp::Element* NewRootNode)
{
  // Remove all root node children
  xmlpp::Element* RootNode = Doc.get_root_node();
  const xmlpp::Node::NodeList Children = RootNode->get_children();
  xmlpp::Node::NodeList::const_iterator itChild = Children.begin();
  while (itChild != Children.end()) {
    RootNode->remove_child(*itChild++);
  }

  // Replace root node
  Doc.create_root_node_by_import(NewRootNode); // Leak: memory for previous root node is not freed
}

The solution I came up with so far is to edit the document's root node to change it's name and attributes but. Is there a simpler way to avoid this leak which does not involve edition of previous root node's name and attributes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沦落红尘 2024-12-11 09:25:40

我通过在调用 create_root_node_by_import 之前将文档设置为空 Document 对象 (Doc = xmlpp:Document()) 来解决此问题,而不是显式删除根的子节点。这似乎会导致 Doc 之前的内容被释放。

我几年前第一次遇到这个问题,并且在最新版本的 libxml++ 中它似乎仍然没有得到修复。他们肯定也意识到了这一点。这种情况是否会以某种意想不到的方式使用create_root_node_by_import?我不会这么认为,但是 OTOH 这似乎太重要了,不能不解决。

I work around this by setting the document to an empty Document object (Doc = xmlpp:Document()) before calling create_root_node_by_import instead of removing the root's child nodes explicitly. This appears to cause the previous contents of Doc to be freed.

I first encountered this problem several years ago, and it still does not appear to be fixed in recent versions of libxml++. Surely they must be aware of it. Could this case somehow be using create_root_node_by_import in an unintended fashion? I would not have thought so, but OTOH this seems too important not to fix.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文