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

[XSLT] [Q] Recursion Question/Concern

Subject: [XSLT] [Q] Recursion Question/Concern
From: Jonathan Calvert <jonathan_calvert@xxxxxxxxx>
Date: Wed, 21 Mar 2001 10:27:04 -0800 (PST)
jonathan calvert
I am new to the list, so please forgive me if I am
asking something answered elsewhere.  I have searched
the archive and FAQ and have not found the answer I am
seeking.

I need to count and number "records" in an XML file. 
It would seem that recursion is the answer, but I am
concerned about performance.

When using recursion I have noticed a 10:1 performance
decrease over not using recursion.  I assume that user
error is responsible.

If I do not use a recursive function then my template
will process in roughly 1 second.  I do not get the
desired results because I need individual numbered
lines.  When I use the recursive function then
performance goes to roughly 10 seconds.

Any and all help would be appreciated.  Thanks in
advance for your time.


Example of XML file format:

<DATA>
  <RECORD>
    <INFO1>xyz</INFO1>
  </RECORD>
  <RECORD>
    <INFO1>abc</INFO1>
  </RECORD>
...
</DATA>

The desired result would be:
1 xyz
2 abc
...


In my XSL document I do the following:
<xsl:template match="/">
  <xsl:call-template name="NumberStuff">
     <xsl:with-param name="Counter" select="1"/>
  </xsl:call-template>
</xsl:template>


<xsl:template name="NumberStuff">
  <xsl:param name="Counter" />

  <xsl:if test="count(//RECORD) + 1 > $Counter">

    <xsl:value-of select="$Counter"/>
    <xsl:text>|</xsl:text>
    <xsl:value-of select"//INFO1">

    <xsl:call-template name="NumberStuff">
      <xsl:with-param name="Counter" select="$Counter
+ 1" />
    </xsl:call-template>
  
  </xsl:if>    		
</xsl:template>

__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.