wireshark/fix/hfDecl.xsl
Alexis La Goutte 48cef7c61a Enhance FIX generator
* Remove whitespace and tab
* Add information how to generate packet-fix.h (in top of packet-fix.h)

Regenerate packet-fix.h

svn path=/trunk/; revision=47178
2013-01-20 18:32:23 +00:00

35 lines
1.1 KiB
XML

<!--
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:template match="text()"/>
<xsl:template match="/">
static fix_field fix_fields[] = {
<xsl:apply-templates/>
};
</xsl:template>
<xsl:template match="fields">
<xsl:for-each select="field">
<xsl:sort select="@number" data-type="number"/>
<xsl:choose>
<xsl:when test="count( value ) != 0">
<xsl:variable name="val_type" >
<xsl:choose>
<xsl:when test="@type='INT'">0</xsl:when>
<xsl:when test="@type='STRING'">1</xsl:when>
<xsl:otherwise>2</xsl:otherwise>
</xsl:choose>
</xsl:variable>
{ <xsl:value-of select="@number"/>, -1, <xsl:copy-of select="$val_type" />, <xsl:value-of select="@name"/>_val },</xsl:when>
<xsl:otherwise>
{ <xsl:value-of select="@number"/>, -1, 0, NULL }, /* <xsl:value-of select="@name"/> */</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>