我有一个使用命名空间的XSD文档,简化为:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xns="urn:MyNs" targetNamespace="urn:MyNs">
<xs:complexType name="Type1">
<xs:sequence>
<xs:element name="xxx" type="xs:short" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="Type2">
<xs:sequence>
<xs:element name="yyy" type="xs:short" />
<xs:element name="value" type="xns:Type1" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="Type3">
<xs:sequence>
<xs:element name="yyy" type="xs:short" />
<xs:element name="value" type="xns:Type2" />
</xs:sequence>
</xs:complexType>
</xs:schema>
我需要处理该文件中的类型依赖项,因为我有以下XSL(再次,简化为最小示例):
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output method="text" encoding="utf-8" indent="yes"/>
<xsl:param name="debug" select="no"/>
<xsl:strip-space elements="*"/>
<xsl:key name="type" match="xs:complexType" use="@name"/>
<xsl:template match="*" mode="print-dependency">
<xsl:value-of select="@name"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="*" mode="process-type">
<xsl:apply-templates mode="print-dependency"
select="key('type', (
xs:attribute | xs:complexContent/xs:extension//xs:attribute |
xs:sequence/xs:element | xs:complexContent/xs:extension/xs:sequence/xs:element
)/@type)"/>
</xsl:template>
<xsl:template match="/xs:schema">
<xsl:apply-templates select="xs:complexType" mode="process-type">
<xsl:with-param name="debug" select="$debug"/>
</xsl:apply-templates>
</xsl:template>
</xsl:stylesheet>
如果我在输入XSD文件中没有命名空间(即如果我删除了“xns”),则输出符合预期:
Type1
Type2
(Type1显示为Type 2的依赖关系,Type2显示为Type3的依赖关系)
但是,对于名称空间,输出为空,类型名称显然不匹配。即使在示例中使用名称空间时,是否可以管理它? (我不知道如何更改key()以匹配默认情况下使用“targetNamespace”的complexType,因此不会在“name”中明确指定它。)
答案 0 :(得分:0)
好的,所以要根据@ michael的评论回答我自己的问题,我通过使用这个XSLT使其工作 - 删除key()
并使用显式匹配代替非剥离和剥离的字符串:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output method="text" encoding="utf-8" indent="yes"/>
<xsl:param name="debug" select="no"/>
<xsl:strip-space elements="*"/>
<xsl:key name="type" match="xs:complexType" use="@name"/>
<xsl:template match="*" mode="print-dependency">
<xsl:value-of select="@name"/>
<xsl:text>
</xsl:text>
</xsl:template>
<xsl:template match="*" mode="process-dependency">
<xsl:variable name="type" select="@type"/>
<xsl:apply-templates mode="print-dependency"
select="//xs:complexType[@name=$type]"/>
<xsl:apply-templates mode="print-dependency"
select="//xs:complexType[@name=substring-after($type, ':')]"/>
</xsl:template>
<xsl:template match="*" mode="process-type">
<xsl:apply-templates mode="process-dependency"
select="(
xs:attribute | xs:complexContent/xs:extension//xs:attribute |
xs:sequence/xs:element | xs:complexContent/xs:extension/xs:sequence/xs:element
)"/>
</xsl:template>
<xsl:template match="/xs:schema">
<xsl:apply-templates select="xs:complexType" mode="process-type">
<xsl:with-param name="debug" select="$debug"/>
</xsl:apply-templates>
</xsl:template>
</xsl:stylesheet>
这适用于命名空间和非命名空间的类型名称(或其混合),完全符合我的要求。可选地,如果类型名称可以包括名称空间并且在没有名称空间的情况下被引用,则可以添加两个额外的可能性。