Project

Profile

Help

Bug #2368

closed

DOM4J wrapper.copy() has O(n^2) performance

Added by Michael Kay almost 9 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
DOM4J Interface
Sprint/Milestone:
Start date:
2015-05-01
Due date:
% Done:

100%

Estimated time:
Legacy ID:
Applies to branch:
9.6
Fix Committed on Branch:
9.6
Fixed in Maintenance Release:
Platforms:

Description

Scenario: a document whose root element has 2M child elements; the document is built using DOM4J, then wrapped in a DOM4JDocumentWrapper, then buildDocument() is called to copy the data to a Saxon TinyTree.

This takes "for ever". The time is spent in Element.getDeclaredNamespaces(). Saxon uses Navigator.copy(), which calls getDeclaredNamespaces() every time it copies an element, In DOM4J, Element.declaredNamespaces searches the content array looking for namespaces, so its cost is proportional to the number of children. Then (the real killer), Saxon not only calls Element.declaredNamespaces() on the element being copied, but on each of its ancestors. So for this high-fanout document, the 2M child elements of the outermost element are scanned 2M times.

Possible solutions. (a) Change the generic Navigator.copy() routine so that when copying descendant elements, it only looks for their own namespaces, and not for those of the ancestor elements. (b) Provide a custom copy() method on DOM4JDocumentWrapper which invokes the DOM4J SAXWriter to walk the tree, rather than using the generic Navigator.copy(). (c) Change DOM4JNodeWrapper.getDeclaredNamespaces() to cache the result (or at least, remember that a particular element has no namespaces. (d) In the generic Navigator.copy, maintain a stack of namespaces to avoid going back to ancestor elements.

Actions #1

Updated by Michael Kay almost 9 years ago

  • Status changed from New to Resolved

I have implemented (a) on the 9.6 and 9.7 branches. Tested using the XSLT3 "copy" test-set.

Actions #2

Updated by O'Neil Delpratt almost 9 years ago

  • Status changed from Resolved to Closed
  • % Done changed from 0 to 100
  • Fixed in version set to 9.6.0.6

Bug fix applied in the Saxon 9.6.0.6 maintenance release.

Actions #3

Updated by O'Neil Delpratt over 8 years ago

  • Sprint/Milestone set to 9.6.0.6
  • Applies to branch 9.6 added
  • Fix Committed on Branch 9.6 added
  • Fixed in Maintenance Release 9.6.0.6 added

Please register to edit this issue

Also available in: Atom PDF