Writing effective XSLT - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T02:28:40Zhttp://stackoverflow.com/feeds/question/741050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/741050/writing-effective-xslt7Writing effective XSLT Peter Dolberg2009-04-12T00:24:52Z2009-04-15T20:00:42Z
<p><strong>What are the principles and patterns that go into writing effective XSLT?</strong></p>
<p>When I say "effective" I mean that it is</p>
<ol>
<li>Well-structured and readable</li>
<li>Simple, concise</li>
<li>Efficient (i.e. has good performance)</li>
</ol>
<p>In short, I'm looking for the best practices for XSLT.</p>
<p>I've already seen <a href="http://stackoverflow.com/questions/434976/how-do-i-profile-and-optimize-an-xslt">the question regarding efficiency</a>, but efficient code loses its value if you can't understand what it's doing. </p>
http://stackoverflow.com/questions/741050/writing-effective-xslt/741068#7410685Answer by Peter for Writing effective XSLT Peter2009-04-12T00:42:44Z2009-04-12T01:02:05Z<p><strong>Best practice 1</strong> : <strong>use templates in stead of < xsl:for-each ></strong> whenever you can (which is 99% of the cases)</p>
<p>(may I add MAINTAINABILITY as extra ingredient in the best practices, imho even the most important one)</p>
<p>For understanding xsl you realy need a bit of practice.<br />
Not understanding what sth. is doing is very relative of course.</p>
<p>That goes doube for XSLT, since the xsl:for-each construct tends to be </p>
<ul>
<li>more readable</li>
</ul>
<p>for a novice, but is in fact </p>
<ul>
<li>less structured, </li>
<li>less simple, </li>
<li>less concise and</li>
<li>a lot less maintainable</li>
</ul>
<p>than templates, and only</p>
<ul>
<li>equaly readable (at best!!) for so. with a minimum of template experience.</li>
</ul>
<blockquote>
<p>NEVER, EVER USE THE < xsl:for-each > ELEMENT!</p>
<p>I admit, the title is somewhat
exaggerated, there do exist, I've been
told, cases in which a "xsl for each"
can have it's merits, but those cases
are very, very rare.</p>
<p>I once had to come up with a fairly
complicated xml/xslt client site in
less than a week, and used the
for-each element all over the place.
Now, several years later and, sort of,
wiser, I took my time and rewrote the
initial code, using only templates.
The code now is much much cleaner and
more adaptable.</p>
<p>Either you know this, or either you
should : < xsl:template > and < xsl:
apply-templates> are almost always the
way to go. If you are xsl-ing, and you
don't fully understand these tags,
stop your work now, learn them, get a
aha-erlebnis, and continue your work a
as a reborn (wo)man.</p>
</blockquote>
http://stackoverflow.com/questions/741050/writing-effective-xslt/741107#7411070Answer by harley.333 for Writing effective XSLT harley.3332009-04-12T01:08:34Z2009-04-12T01:08:34Z<p>For readability's sake, I use the <code>xsl:template</code> tag. It is very concise and simple to use. It is simple to pass parameters to a template. This technique is called encapsulation and is one of the foundations of good programming.</p>
http://stackoverflow.com/questions/741050/writing-effective-xslt/741128#7411285Answer by Dimitre Novatchev for Writing effective XSLT Dimitre Novatchev2009-04-12T01:31:05Z2009-04-12T16:17:49Z<h1>I. Elegant XSLT code</h1>
<p><br />
<strong>One can often find examples of beautiful XSLT code, especially when XSLT is used as a functional programming language</strong>. </p>
<p>For examples see <a href="http://www.idealliance.org/papers/extreme/proceedings/xslfo-pdf/2006/Novatchev01/EML2006Novatchev01.pdf" rel="nofollow"><strong>this article</strong></a> on <a href="http://fxsl.sf.net" rel="nofollow"><strong>FXSL 2.0</strong></a> -- the Functional Programming library for XSLT 2.0.</p>
<p>As an FP language XSLT is also a <em><a href="http://en.wikipedia.org/wiki/Declarative%5Fprogramming" rel="nofollow"><strong>declarative language</strong></a></em>. This, among other things means that one declares, specifies existing relationships. </p>
<p>Such <strong>a definition often does not need any additional code to produce a result -- it itself is its own implementation, or an executable definition or executable specification</strong>.</p>
<p><strong>Here is a small example</strong>.</p>
<p><strong>This XPath 2.0 expression defines</strong> the "<em>Maximum <a href="http://en.wikipedia.org/wiki/Prime%5Ffactor" rel="nofollow">Prime Factor</a> of a natural number</em>":</p>
<pre><code>if(f:isPrime($pNum))
then $pNum
else
for $vEnd in xs:integer(floor(f:sqrt($pNum, 0.1E0))),
$vDiv1 in (2 to $vEnd)[$pNum mod . = 0][1],
$vDiv2 in $pNum idiv $vDiv1
return
max((f:maxPrimeFactor($vDiv1),f:maxPrimeFactor($vDiv2)))
</code></pre>
<p><strong>To pronounce it in English</strong>, the maximum prime factor of a number <strong><code>pNum</code></strong> is the number itself, if <strong><code>pNum</code></strong> is prime, otherwise if <strong><code>vDiv1</code></strong> and <strong><code>vDiv2</code></strong> are two factors of <strong><code>pNum</code></strong>, then the maximum prime factor of <strong><code>pNum</code></strong> is the bigger of the maximum prime factors of <strong><code>vDiv1</code></strong> and <strong><code>vDiv2</code></strong>.</p>
<p><strong>How do we use this to actually calculate</strong> the Maximum Prime Factor in XSLT? <strong>We simply wrap up the definition above</strong> in an <code><xsl:function></code> and ... get the result!</p>
<pre><code> <xsl:function name="f:maxPrimeFactor" as="xs:integer">
<xsl:param name="pNum" as="xs:integer"/>
<xsl:sequence select=
"if(f:isPrime($pNum))
then $pNum
else
for $vEnd in xs:integer(floor(f:sqrt($pNum, 0.1E0))),
$vDiv1 in (2 to $vEnd)[$pNum mod . = 0][1],
$vDiv2 in $pNum idiv $vDiv1
return
max((f:maxPrimeFactor($vDiv1),f:maxPrimeFactor($vDiv2)))
"/>
</xsl:function>
</code></pre>
<p><strong>We can, then, <a href="http://stackoverflow.com/questions/439814#445858">calculate the MPF for any natural number</a></strong>, for example:</p>
<p><code>f:maxPrimeFactor(600851475143)</code> = 6857 </p>
<p>As for efficiency, well, <strong>this transformation takes just 0.109 sec</strong>.</p>
<p><strong>Other examples of both ellegant and efficient XSLT code</strong>:</p>
<ul>
<li><a href="http://www.tbray.org/ongoing/" rel="nofollow"><strong>Tim Bray</strong></a>'s <a href="http://www.tbray.org/ongoing/When/200x/2007/09/20/Wide-Finder" rel="nofollow"><strong>Wide Finder</strong></a>, as solved <a href="http://dnovatchev.spaces.live.com/Blog/cns!44B0A32C2CCF7488!385.entry" rel="nofollow"><strong>here</strong></a>.</li>
<li><a href="http://dnovatchev.spaces.live.com/blog/cns!44B0A32C2CCF7488!341.entry" rel="nofollow"><strong>Cascade</strong></a> <a href="http://dnovatchev.spaces.live.com/blog/cns!44B0A32C2CCF7488!342.entry" rel="nofollow"><strong>deletions</strong></a></li>
<li><a href="http://dnovatchev.spaces.live.com/blog/cns!44B0A32C2CCF7488!384.entry" rel="nofollow"><strong>Transitive closure</strong></a></li>
<li><a href="http://dnovatchev.spaces.live.com/blog/cns!44B0A32C2CCF7488!357.entry" rel="nofollow"><shttp://stackoverflow.com/questions/741050/writing-effective-xslt/741296#7412960Answer by Ambrose for Writing effective XSLT Ambrose2009-04-12T05:13:18Z2009-04-12T05:13:18Z<blockquote>
<p>Simple, concise</p>
</blockquote>
<p>I just want to say that XSLT wasn't designed to be anything like as concise as other programming languages you might be familiar with, and to strive too hard for that might be going against the grain of the language.</p>
http://stackoverflow.com/questions/741050/writing-effective-xslt/741338#7413381Answer by Azat Razetdinov for Writing effective XSLT Azat Razetdinov2009-04-12T06:05:10Z2009-04-12T06:05:10Z<h2>File issues</h2>
<p><strong>1. A lot of small files are better than a few large ones.</strong></p>
<p>Split you hamburger.xsl into i-bread.xsl and i-beef.xsl.</p>
<p><strong>2. Prefix included/imported files with ‘i-’.</strong></p>
<p>It serves as an indicator that file shoud be edited with caution, as you can break functionality of importing/including files. Check them before committing changes.</p>
<p><strong>3. Never include/import an unprefixed file.</strong></p>
<p>If you want to make a cheeseburger.xsl, do not include the hamburger.xsl. Instead, include i-bread.xsl, i-beef.xsl and newly created i-cheese.xsl.</p>
http://stackoverflow.com/questions/741050/writing-effective-xslt/753451#7534512Answer by Robert Rossney for Writing effective XSLT Robert Rossney2009-04-15T20:00:42Z2009-04-15T20:00:42Z<p>I think that a good way to answer this question would to approach it from the other side. What practices make XSLT <em>ineffective</em>, and why?</p>
<p>Some of the things that I've seen that result in ineffective XSLT:</p>
<ol>
<li><p><strong>Overuse of <code>for-each</code>.</strong> Everyone's said it; I'm saying it again. I find that <code>for-each</code> is often a sign of the developer trying to employ traditional programming techniques in a declarative language.</p></li>
<li><p><strong>Underutilizing XPath.</strong> A lot of bad XSLT I've seen exists purely because the developer didn't understand predicates, axis specifiers, <code>position()</code>, and <code>current()</code>, and so he implemented logic using XSLT constructs instead.</p></li>
<li><p><strong>Underutilizing metadata.</strong> You can sometimes eliminate an <em>enormous</em> amount of XSLT by providing your transform with metadata. </p></li>
<li><p><strong>Underutilizing pre-processing.</strong> If, for instance, an XML document contains data that has to be parsed using XSLT string manipulation, it's often much simpler to do all of the parsing outside of XSLT and either add the parsed results to the XML or pass the parsed results as an argument to the transform. I've seen some remarkably unmaintainable XSLT implementing business logic that would be trivial to implement in C# or Python. </p></li>
</ol>
<p>The biggest problem that I'm running into in my own XSLT world (I have several 3,000+ line transforms that I'm maintaining) is dead code. I'm certain that there are templates in my transforms that will never be used again, because the conditions they're testing for will never arise again. There's no way to determine programmatically if something like <code><xsl:template match="SomeField[contains(., "some value")]></code> is alive or dead, because it's contingent on something that metadata can't tell you.</p>