Project

Profile

Help

Bug #3934

closed

Streamability analysis problem SXST0060

Added by Michael Kay over 5 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Streaming
Sprint/Milestone:
-
Start date:
2018-10-02
Due date:
% Done:

100%

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

Description

Reported by Martin Honnen, test case saved in XSLT3 as si-fork-119.

Saxon 9.9 reports error

Error in xsl:param/@select on line 13 column 79 of si-fork-119.xsl:
  SXST0060: Component cannot be streamed, although it is guaranteed streamable according to
  W3C rules. No streamable path found in expression ($current-item, ...)

Saxon 9.8 reports:

Static error at xsl:template on line 12 column 71 of si-fork-119.xsl:
  XTSE3430: Template rule is declared streamable but it does not satisfy the streamability rules. 
  * Operand {.} of {let $vv:LHS2027961269 := ...} selects streamed nodes in a context that
  allows arbitrary navigation (line 13)
Actions #1

Updated by Michael Kay over 5 years ago

  • Description updated (diff)
Actions #2

Updated by Michael Kay over 5 years ago

The main issue here seems to be that we don't have any streamability analysis code for xsl:message, and it is falling back to the default. (But I'm not sure why this doesn't give a streamability failure).

A secondary issue is that we aren't being smart about inferring the context item type for the match pattern match=".[. instance of ....]". There's justification for this, because the W3C spec doesn't handle it specially. But we could do better.

Actions #3

Updated by Michael Kay over 5 years ago

The streamability rules in 1.b.iii.A.I say

If U is absorption and the intersection of T with U{element(), document-node()} is U{} (that is, if T is a type that does not allow nodes with children), then U′ is inspection.

But (Streamability line 169) we are actually testing isChildlessNodeKind(), which returns false for items such as maps and atomic values.

This has the effect that even when we compute the context item type for this template rule as map(*), the reference to "." in xsl:message, which has usage absorbtion, is considered to be a "potentially consuming operand", leading to the select expression of the xsl:message instruction being classified striding and motionless. This in turn leads to the xsl:message being classified as grounded and consuming. Which in this case isn't fatal, but if there were more than one xsl:message instruction like this then we would get a "multiple consuming operands" streamability failure.

I've changed the test from isChildlessNodeKind() to !t.getUType().overlaps(UType.DOCUMENT.union(UType.ELEMENT)) and unfortunately this doesn't solve the problem. The arguments to xsl:message include both "." and various variables whose type can include element nodes, so the test that the value can't be an element or document node isn't satisfied anyway.

I can't help feeling there's a rule missing here somewhere: if the match pattern on a template rule doesn't match nodes, then the template rule must surely be grounded and motionless, regardless of its contents.

Actions #4

Updated by Michael Kay over 5 years ago

  • Fix Committed on Branch 9.9 added

The two changes reported above cause no test regression so I have committed them (for 9.9 only), even though they do not solve this test case:

(a) align the general streamability rules implementation with the spec

(b) infer the context item type from a match pattern such as match=".[. instance of X]"

Actions #5

Updated by Michael Kay over 5 years ago

  • Status changed from New to In Progress

I have made a couple of changes to enable this test case to pass:

  • When the item type of a match pattern does not allow nodes, assess the template body with a context item posture of GROUNDED. This rule isn't in the spec (perhaps because the rules in the spec for assessing the item type of match patterns aren't actually good enough) -- but it seems to make sense; it ensures that references to "." within the body of the template will be treated as grounded.

  • When the context item type does not allow nodes, assess the streamability of the context item expression "." as grounded and motionless.

Adding these rules causes no test regression, though it does arguably mean that we are no longer applying the W3C streamability rules as strictly as we should.

There are other issues raised by the test that should probably be handled with new tests and new issues, notably the streamability and streaming of xsl:message and xsl;assert.

Actions #6

Updated by Michael Kay over 5 years ago

  • Status changed from In Progress to Resolved

Fixed on the 9.9 branch.

Not making these changes for 9.8, in the interests of stability.

Actions #7

Updated by O'Neil Delpratt over 5 years ago

  • Status changed from Resolved to Closed
  • % Done changed from 0 to 100
  • Fixed in Maintenance Release 9.9.0.2 added

Bug fix applied to the Saxon 9.9.0.2 maintenance release.

Please register to edit this issue

Also available in: Atom PDF