tame/src/current/dot.xsl

66 lines
1.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Outputs graph visualization of dependencies in DOT format
-->
<xsl:stylesheet version="2.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:lv="http://www.lovullo.com/rater"
xmlns:dot="http://www.lovullo.com/calc/dot">
<xsl:import href="dot/depout.xsl" />
<xsl:import href="dot/defnode.xsl" />
<!-- supported sources (entry points) -->
<xsl:include href="dot/pkg-obj.xsl" />
<xsl:include href="dot/pkg-exec.xsl" />
<xsl:output method="text" />
<!--
Newline character
-->
<xsl:variable name="dot:nl" select="'&#10;'" />
<!--
Immediately fails on unrecognized source type
-->
<xsl:template match="lv:package" priority="1">
<xsl:message terminate="yes">
<xsl:text>[dot] fatal: this is not an object/executable file: </xsl:text>
<xsl:text>no symbol dependencies found</xsl:text>
</xsl:message>
</xsl:template>
<!--
Beginning of a DOT document
-->
<xsl:template match="lv:package" mode="dot:head">
<xsl:text>/* dependency graph of </xsl:text>
<xsl:value-of select="@name" />
<xsl:text> */</xsl:text>
<xsl:text>digraph "</xsl:text>
<xsl:value-of select="@name" />
<xsl:text>" { </xsl:text>
<xsl:text>graph [rankdir="LR", ranksep="2"]; </xsl:text>
</xsl:template>
<!--
End of a DOT document
-->
<xsl:template match="lv:package" mode="dot:tail">
<xsl:text>}</xsl:text>
</xsl:template>
</xsl:stylesheet>