代码之家  ›  专栏  ›  技术社区  ›  bilak

xslt向已处理节点添加属性,并输出到结果文档

  •  0
  • bilak  · 技术社区  · 6 年前

    这是XML示例:

    <?xml version="1.0" encoding="UTF-8"?>
    <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"                       
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                       
          xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog                      
            http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd                       
            http://www.liquibase.org/xml/ns/dbchangelog">
      <changeSet id="1" author="a">
        <createTable tableName="TABLE1">
          <column>
          </column>
        </createTable>
      </changeSet>
      <changeSet id="1-1" author="a">
        <createSequence sequenceName="SEQ_TABLE1" />
      </changeSet>
      <changeSet id="4" author="A">
        <createTable tableName="TABLE4">
          <column>
          </column>
        </createTable>
      </changeSet>
    </databaseChangeLog>
    

    这是模板:

    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"               xpath-default-namespace="http://www.liquibase.org/xml/ns/dbchangelog">
      <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
      <xsl:variable name="coreTables"                  select="('TABLE1','TABLE2')"/>
      <xsl:template match="node()[not(self::*)]">
        <xsl:copy>
          <xsl:apply-templates/>
        </xsl:copy>
      </xsl:template>
      <xsl:template match="*">
        <xsl:element name="{local-name()}">
          <xsl:apply-templates select="node()|@*"/>
        </xsl:element>
      </xsl:template>
      <xsl:template match="@*">
        <xsl:attribute name="{local-name()}">
          <xsl:value-of select="."/>
        </xsl:attribute>
      </xsl:template>
      <xsl:template match="databaseChangeLog">
        <!-- CORE-->
        <xsl:comment>CORE TABLES</xsl:comment>
        <xsl:variable name="coreTablesVariable" select="changeSet[createTable/@tableName=$coreTables]"/>
        <xsl:comment>CORE SEQUENCES</xsl:comment>
        <xsl:variable name="coreSequencesVariable" select="changeSet[createSequence[starts-with(@sequenceName, 'SEQ_') and substring-after(@sequenceName, 'SEQ_') = $coreTables]]"/>
        <xsl:comment>CORE INDEXES</xsl:comment>
        <xsl:variable name="coreIndexesVariable" select="changeSet[createIndex/@tableName=$coreTables]"/>
        <xsl:comment>CORE FOREIGN CONSTRAINTS</xsl:comment>
        <xsl:variable name="coreForeignConstraintsVariable" select="changeSet[addForeignKeyConstraint/@baseTableName=$coreTables]"/>
        <xsl:comment>CORE VIEWS</xsl:comment>
        <xsl:variable name="coreViewsVariable" select="changeSet[createView/@viewName=$coreTables]"/>
        <xsl:call-template name="createChangeLog">
          <xsl:with-param name="outputFile" select="'core-changelog.xml'"/>
          <xsl:with-param name="changeLogContent" select="$coreTablesVariable,$coreSequencesVariable,$coreIndexesVariable,$coreForeignConstraintsVariable,$coreViewsVariable"/>
        </xsl:call-template>
      </xsl:template>
      <xsl:template name="createChangeLog">
        <xsl:param name="outputFile"/>
        <xsl:param name="changeLogContent"/>
        <xsl:result-document encoding="UTF-8" indent="true" method="xml" href="{$outputFile}">
          <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"                                               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"                                               xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog                                               http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd                                               http://www.liquibase.org/xml/ns/dbchangelog" logicalFilePath="TODO">
            <xsl:copy-of select="$changeLogContent"/>
          </databaseChangeLog>
        </xsl:result-document>
      </xsl:template>
    </xsl:transform>
    

    我想添加到输出内部处理的XML createChangelogTemplate 到每个元素 <changeSet> 另一个属性( context="legacy" )我试图添加另一个匹配的模板 databaseChangelog/changeSet 加上 xsl:attribute 但那对我不起作用。如果有办法在一个地方这样做会很好,因为我将需要准备更多的部分,如 CORE .

    我使用的是xslt 2.0和saxon 9.8he。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Martin Honnen    6 年前

    使用单独的 mode 即,代替 <xsl:copy-of select="$changeLogContent"/> 使用 <xsl:apply-templates select="$changeLogContent" mode="legacy"/> ,然后设置,例如

    <xsl:template match="changeSet" mode="legacy">
      <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:attribute name="context">legacy</xsl:attribute>
        <xsl:copy-of select="node()"/>
      </xsl:copy>
    </xsl:template>
    

    如果需要进一步处理属性和/或子节点,则更改 <xsl:copy-of select="@*"/> 和/或 <xsl:copy-of select="node()"/> 使用 xsl:apply-templates mode="#current" 并为执行任何处理的模式设置更多模板。