-
-
Notifications
You must be signed in to change notification settings - Fork 190
[bugfix] fn:transform: Conversion and treeIndex problems #5680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop-6.x.x
Are you sure you want to change the base?
Conversation
see eXist-db#5450 close eXist-db#4151 close eXist-db#5532 close eXist-db#4153
set :release to develop-6.x.x branch
[6.x.x] Repair JNLP interface, use correct BC library
- load the module from existdb instead of an external source - test with and without xmldb: scheme - fix template under test to actually do something - ensure that the output is checked for correctness
[6.x.x] Backport eXist-db#5574
When importing stylesheets the URIs are resolved in order - registered import-uris in package repo - XMLDB-locations (relative, absolute and with or without scheme) - any other location is treated as an exteranal source The test class and its cases were renamed to reflect their purpose. Some inline comments were added to help describing the intent.
fixes eXist-db#5525 fixes eXist-db#5530 - add functx to autodeploy for xquery tests - add tests for one-off queries with module imports - of a registered module without location hint - of a module with location hint - change XQueryContext to allow imports again - change SourceFactory to work with contextPath set to "."
keep :latest and :release tags aligned add dev:6 tag for snapshots from develop-6.x.x see eXist-db#3953
Backport multi arch 5533
[6.x.x] allow module imports in one-off xqueries
[6.x.x] registered import-uris have precedence
Signed-off-by: Patrick Reinhart <[email protected]>
Signed-off-by: Patrick Reinhart <[email protected]>
[6.x.x] Update IzPack to 5.2.4
…ent-node ancestor
@wolfgangmm please can you check? |
It appears there is another (different) problem with the way |
I have added two more commits.
The second commit fixes another bug in the handling of |
There was another problem with the the 'path' returned by I think that what |
Thanks @nverwer again for your contribution. We will pull it in once we have at least one positive and one negative test for it. |
Or maybe it is easier to test in XQuery? |
Description
The
fn:transform
function sometimes producedNullPointerException
s. This happened for documents containing nodes of typeorg.exist.dom.memtree.ElementImpl
and other subtypes oforg.exist.dom.memtree.NodeImpl
.The function
org.exist.xquery.functions.fn.transform.Convert.ToSaxon.ofNode(Node)
usesorg.exist.xquery.functions.fn.transform.TreeUtils.treeIndex(Node)
to get a 'path' (as a list of indexes) of theNode
in its containing document. This 'path' is used to find the node in a newly built document that is suitable for use by Saxon.Using the 'path' that the
treeIndex
function produces assumes that it starts at the document node.However, some nodes do not have a containing document. Specifically, in
org.exist.dom.memtree.NodeImpl.getParentNode()
:In this case, the 'path' returned by
treeIndex
does not contain the index (0) for the root node, andorg.exist.xquery.functions.fn.transform.TreeUtils.xdmNodeAtIndex(XdmNode, List<Integer>)
will returnnull
when a node is expected.The proposed fix tests for this case. Going up the ancestor chain, when a node that is not a document node, and that does not have a parent is found, the index 0 for this root element is inserted in the 'path'.
Testing
The
NullPointerException
happened in a rather complicated XQuery with documents composed from several sources.I have not yet been able to make a simple test case, but I will keep trying.