I'm looking to optimise this XSLT slightly if anyone can spot any improvements / recommendations?
I receive an XML file which follows along this sort of format:
<TransfersToComplete>
<TransfersForFees>
<Transfer>
<PlayerID>1234</PlayerID>
<ClubJoiningID>4444</ClubJoiningID>
<FeeInPounds>1200000</FeeInPounds>
</Transfer>
<Transfer>
<PlayerID>3835</PlayerID>
<ClubJoiningID>4444</ClubJoiningID>
<FeeInPounds>5000000</FeeInPounds>
</Transfer>
<Transfer>
<PlayerID>17118</PlayerID>
<ClubJoiningID>5229</ClubJoiningID>
<FeeInPounds>18000000</FeeInPounds>
</Transfer>
</TransfersForFees>
<FreeAgencyTransfers>
<FreeTransfer>
<PlayerID>42323</PlayerID>
<ClubJoiningID>332</ClubJoiningID>
</FreeTransfer>
</FreeAgencyTransfers>
</TransfersToComplete>
I also have another XML file that contains the list of the 'active' clubs (ie ones being controlled by players rather than AI)
<ActiveClubs>
<Club><ClubID>1234</ClubID></Club>
<Club><ClubID>4482</ClubID></Club>
</ActiveClubs>
I've joined these in a dual input map as part of a Biztalk Solution, so the input document looks something like this:
<Root>
<InputMessage0>
<ActiveClubs>
<Club>
<ClubID>1234</ClubID>
</Club>
<Club>
<ClubID>4482</ClubID>
</Club>
</ActiveClubs>
</InputMessage0>
<InputMessage1>
<TransfersToComplete>
<TransfersForFees>
<Transfer>
<PlayerID>1234</PlayerID>
<ClubJoiningID>4444</ClubJoiningID>
<FeeInPounds>1200000</FeeInPounds>
</Transfer>
<Transfer>
<PlayerID>3835</PlayerID>
<ClubJoiningID>4444</ClubJoiningID>
<FeeInPounds>5000000</FeeInPounds>
</Transfer>
<Transfer>
<PlayerID>17118</PlayerID>
<ClubJoiningID>5229</ClubJoiningID>
<FeeInPounds>18000000</FeeInPounds>
</Transfer>
</TransfersForFees>
<FreeAgencyTransfers>
<FreeTransfer>
<PlayerID>42323</PlayerID>
<ClubJoiningID>332</ClubJoiningID>
</FreeTransfer>
</FreeAgencyTransfers>
</TransfersToComplete>
</InputMessage1>
</Root>
I dont want every player on the game to see the full workings of every transfer, so I restrict to only their own clubs, my XSLT is as follows:
<xsl:for-each select="/*[1]/ActiveClubs/Club">
<xsl:variable name ="clubId" select="current()/ClubID/text()"/>
<...CallTemplate...>
</xsl:for-each>
Is there a way I can optimise that for-each, and how does it help? I'm seeing my CPU slowly getting chewed up as the number of active clubs grows so I assume this is a partial cause?
EDIT:
Expected Output would be variable ClubId first time around to be 1234, second time 4482
In my example above (2 active clubs) I see little/no performance degredation - its when I get to 40 and beyond...
In terms of showing the rest of the XSLT - This is the template it calls:
<xsl:call-template name="DoPaidTransfers">
<xsl:with-param name="var:ClubId" select="$clubId"/>
</xsl:call-template>
Which is:
<xsl:template name="DoPaidTransfers">
<xsl:param name="var:ClubId"/>
<responseCode><xsl:value-of select="CSharpCodeCall:DoPaidTransfers($clubId)"/></responseCode>
</xsl:template>
My C# code writes them to a DB, returning a code for success, and this is passed on elsewhere through the environment.
As I say, it works as expected but I see significant performance loss when ramping up the number of clubs that are active.
