I'm working on a java code generation and the XSLT in which there are many of <xsl:if> or <xsl:choose> is not maintenable.
The field order is important for message, and the only way I've found to generate different field is to use switch case on different attribute.
This is an example XML data:
<?xml version="1.0" encoding="ISO-8859-1"?>
<message class="Message" length="28" id="0x12457836"
package="org.goinfre.mail.data">
<comment>bulk message</comment>
<field name="state" type="short" size="2"/>
<field name="reserve" size="2" reserved="true"/>
<field name="reserve" size="1" reserved="true"/>
<field name="identification" type="char">
<array size="32" sizeName="IDENT_SIZE" encoding="UTF8" />
</field>
<field name="validity" type="int" size="4"/>
<field name="voie" type="long" size="8"/>
</message>
The corresponding XSL is too long, but for example on each field I use an <xsl:choose> because the order of coding and decoding message's buffer is important. I need to use each field more than once.
<xsl:template match="/message">
[...]
<xsl:apply-templates select="field" mode="generateField"/><xsl:text>
[...]
@Override
public byte[] toByteArray() {
ByteBuffer buffer = ByteBuffer.allocate(LENGTH);
super.toByteArray(buffer);
</xsl:text>
<xsl:apply-templates select="field" mode="generateBuffer"/>
<xsl:text>
return buffer.array();
}
</xsl:template>
<!--
*****************************************************************
** Generate a private field declaration.
**************************************************************-->
<xsl:template match="field" mode="generateField">
<xsl:choose>
<xsl:when test="array">
private int <xsl:value-of select="array/@sizeName"/><xsl:text> = </xsl:text><xsl:value-of select="array/@size"/>;
private <xsl:value-of select="@type"/><xsl:text>[] </xsl:text><xsl:value-of select="@name"/>
<xsl:text> = new </xsl:text><xsl:value-of select="@type"/>
<xsl:text>[</xsl:text><xsl:value-of select="array/@sizeName"/><xsl:text>];</xsl:text>
</xsl:when>
<xsl:when test="not(@reserved)">
private <xsl:value-of select="@type"/><xsl:text> </xsl:text><xsl:value-of select="@name"/>;
</xsl:when>
</xsl:choose>
</xsl:template>
I want to use different elements (field-array, field-reserved, field...) for each field, but the order is not respected.
- Is this a valid way to use XSL ?
- Do you have any tips on how to generate code with XSLT?
Note: I can still change the format of the XML for now.