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

Re: HOWTO: convert flat list w/ level information to

Subject: Re: HOWTO: convert flat list w/ level information to a hierarchialone?
From: David Tolpin <dvd@xxxxxxxxxxxxxx>
Date: Tue, 2 Dec 2003 21:56:58 +0400 (AMT)
xsl node level
An algorithm that solves the problem is (in Haskell):

data Hier a = List [Hier a]|Leaf a deriving Show

hier::[Integer]->[Hier Integer]
hier [] = []
hier al@(a:as) = group al 0 [] []

group::[Integer]->Integer->[Integer]->[Hier Integer]->[Hier Integer]
group (i:is) base al res
  | i > base = group is base (al++[i]) res
  | otherwise = res 
    ++ (case al of
	  a:as -> [List (group al (base+1) [] [])] 
	  _ -> []) ++ [Leaf i] ++ (group is base [] [])
group [] base al@(a:as) res = res ++ [List (group al (base+1) [] [])]
group [] base _ res = res

Since all definitions have res as the left operand of list concatenation, it can be
implemented in XSLT. The code in XSLT is below. By the way, no need for item/container tags;
besides, the algorithm can as well handle non-contiguous nesting, such as:

<node level="1"/>
<node level="3"/>
<node level="5"/>

etc.

<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <xsl:template match="/node">
    <xsl:copy>
      <xsl:call-template name="hier">
	<xsl:with-param name="set" select="node"/>
      </xsl:call-template>
    </xsl:copy>
  </xsl:template>

  <xsl:template name="hier">
    <xsl:param name="set"/>
    <xsl:param name="base">0</xsl:param>

    <xsl:if test="$set">
      <xsl:call-template name="hier-rec">
	<xsl:with-param name="head" select="$set[1]"/>
	<xsl:with-param name="tail" select="$set[position()>1]"/>
	<xsl:with-param name="base" select="$base"/>
	<xsl:with-param name="accu" select="/.."/>
      </xsl:call-template>
    </xsl:if>

  </xsl:template>
   
  <xsl:template name="hier-rec">
    <xsl:param name="head"/>
    <xsl:param name="tail"/>
    <xsl:param name="base"/>
    <xsl:param name="accu"/>

    <xsl:choose>
      <xsl:when test="$head">
	<xsl:choose>
	  <xsl:when test="$tail and $tail[1]/@level>$base">
	     <xsl:call-template name="hier-rec">
	       <xsl:with-param name="head" select="$head"/>
	       <xsl:with-param name="tail" select="$tail[position()>1]"/>
	       <xsl:with-param name="base" select="$base"/>
	       <xsl:with-param name="accu" select="$accu|$tail[1]"/>
	     </xsl:call-template>
	  </xsl:when>
	  <xsl:otherwise>
	    <xsl:for-each select="$head">
	      <xsl:copy>
		<xsl:copy-of select="$head/@*"/>
		<xsl:call-template name="hier">
		  <xsl:with-param name="set" select="$accu"/>
		  <xsl:with-param name="base" select="$base+1"/>
                </xsl:call-template>
	      </xsl:copy>
	    </xsl:for-each>
	    <xsl:if test="$tail">
	      <xsl:call-template name="hier">
		<xsl:with-param name="set" select="$tail"/>
		<xsl:with-param name="base" select="$base"/>
	      </xsl:call-template>
            </xsl:if>
	  </xsl:otherwise>
	</xsl:choose>
      </xsl:when>
    </xsl:choose>

  </xsl:template>
</xsl:transform>

David Tolpin
http://davidashen.net/



> Dear XSLT Community!
> 
> I couldn't solve a problem of class "flat file transform".
> 
>

<node>  
  <node level="0" type="c" name="toplevel"/>  
  <node level="1" type="i" name="1. item"/>  
  <node level="1" type="c" name="2. container"/>  
  <node level="2" type="i" name="2.1 item"/>  
  <node level="2" type="i" name="2.2 item"/>  
  <node level="1" type="i" name="3.  item"/>
  <!-- implicit close of previous container -->  
  <node level="1" type="c" name="4. container"/>  
  <node level="2" type="i" name="4.1 item"/>  
  <node level="2" type="c" name="4.2 container"/>  
  <node level="3" type="i" name="4.2.1 item"/> 
</node>

<!--
@type = 'c' ... container
@type = 'i' ... Item
-->
> 
> transform to:
> <node>
>  <node type="c" name="toplevel">
>   <node type="i" name="1. item"/>
>   <node type="c" name="2. container"/>
>    <node type="i" name="2.1 item"/>
>    <node type="i" name="2.2 item"/>
>   </node>
>   <node type="i" name="3. item"/>
>   <node type="c" name="4. container">
>    <node type="i" name="4.1 item"/>
>    <node type="c" name="4.2 container"/>
>     <node type="i" name="4.2.1 item"/>
>    </node>
>   </node>
>  </node>
> </node>
> 
> What I tried:
> Calling recursively a template with passing parameters $node, 
> $last-level, but I failed to leave recursion in a proper way;-(
> 
> Any pointer|hint|solution for a (ideally) XSLT1.0 approach is 
> highly appreciated!
> 

 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.