[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Sibling axis: All of kind A up to first of kind B

Subject: Re: Sibling axis: All of kind A up to first of kind B
From: Michael Ludwig <mlu@xxxxxxxxxxxxx>
Date: Thu, 27 Mar 2008 14:11:14 +0100
Re:  Sibling axis: All of kind A up to first of kind B
Michael Kay schrieb:
       <xsl:apply-templates mode="toc"
       select="(following-sibling::h1 | following-sibling::h2)
       [ 1 ]"/>
Might be safer to do following-sibling::*[self::h1 or self::h2][1] -
but depends on the processor.
Why might this be safer? Aren't the resulting node-sets the
same and the expressions therefore equivalent? Doesn't the
union operator impose document order?

Well, I've no way of knowing, but it occurred to me that there might be processors that fail to recognize that the two operands of the union operator are both sorted node-sets and that the operation can therefore be done by a fully-streamed merge, stopping as soon as either node-set delivers a node. Streamed execution of the second expression requires much less analysis.

A fully-streamed merge, does that mean the processor starts scanning for nodes and stops on encountering the first one satisfying the predicate [self::h1 or self::h2] instead of *first* assembling node-sets for both h1 and h2, *then* merging them into a union and *then* applying the predicate [1]?

Saxon copes well with it, however: [...]
The expression tree generated by the Saxon optimizer is in effect

first(following-sibling::(h1|h2))

which is roughly what I suggested you should write. This will do a
single scan of the following sibling axis looking for h1 and h2
elements, and return the first one it finds: no merging needed.

Okay, I think this is the (affirmative) answer to my above question.


Thanks a lot,

Michael Ludwig

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.