Получить значение enum из строки, используя xslt и xsd - PullRequest
0 голосов
/ 04 октября 2018

Я пытаюсь получить значение перечисления соответствующей строки.Я перевожу один XML в другой.

Например, исходный элемент:

<VehicleBodyType>Van</VehicleBodyType>

Мне нужно преобразовать его в

<VehicleTypeCode>5</VehicleTypeCode>

Это в XSD:

<xs:simpleType name="VehicleBodyType">
    <xs:restriction base="xs:string">
        <xs:enumeration value="NotProvided" />
        <xs:enumeration value="NotApplicable" />
        <xs:enumeration value="PassengerCar" />
        <xs:enumeration value="TruckPickupOrPassengerTruck" />
        <xs:enumeration value="Van" />
        <xs:enumeration value="TruckSingleUnitTruck2Axles" />
        <xs:enumeration value="MotorHomeRecreationalVehicle" />
    </xs:restriction>
</xs:simpleType>

Я пробовал это:

<VehicleTypeCode>
    <xsl:template match="xs:simpleType[@name='VehicleBodyType']/xs:restriction">
     <xsl:for-each select="xs:enumeration">
         <xsl:value-of select="@value"/>
     </xsl:for-each>
   </xsl:template>
</VehicleTypeCode>

, но получит ошибку, указывающую, что я не могу сделать шаблон как дочерний элемент для «VehicleTypeCode»element.

Я бы предпочел использовать XSD, но я могу также включить это в XSLT, если это облегчит задачу.Я даже не знаю, подходит ли for-each, но я нашел его на здесь , и это выглядит так, как я хочу.

Вот пример исходного XML:

<?xml version="1.0" encoding="UTF-8"?>
<Crash>
    <Vehicles>
        <Vehicle>
            <VehicleBodyType>Van</VehicleBodyType>
            <VehicleColor>Red</VehicleColor>
        </Vehicle>
    </Vehicles>
</Crash>

Здесь урезанный xslt, который я использую:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" exclude-result-prefixes="xsl xs fn xsi">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/Crash" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <CrashEntity>
            <WorkZoneWorkers>
                    <xsl:value-of select="WorkersPresentCde"/>
            </WorkZoneWorkers>
            <xsl:choose>
                <xsl:when test="not(Vehicles/Vehicle)">
                    <CrashUnits/>
                </xsl:when>
                <xsl:otherwise>
                    <CrashUnits>
                        <xsl:apply-templates select="Vehicles/Vehicle" />
                    </CrashUnits>
                </xsl:otherwise>
            </xsl:choose>
        </CrashEntity>
    </xsl:template>

    <!-- Vehicles/Vehicle -->
    <xsl:template match="Vehicles/Vehicle">
        <CrashUnitsEntity>
            <VehicleTypeCode>
                <xsl:value-of select="VehicleBodyType"/>
            </VehicleTypeCode>

            <!--Can't use a template within a template-->
            <!--<xsl:template match="xs:simpleType[@name='VehicleBodyType']/xs:restriction">
                    <VehicleTypeCode>
                        <xsl:value-of select="count(xs:enumeration[@value = 'Van']/preceding-sibling::xs:enumeration) + 1"/>
                    </VehicleTypeCode>
                </xsl:template>-->

            <!--Can't use a template within a template (original attempt)-->
            <!--<VehicleTypeCode>
                    <xsl:template match="xs:simpleType[@name=$data]/xs:restriction">
                      <xsl:for-each select="xs:enumeration">
                          <xsl:value-of select="@value"/>
                      </xsl:for-each>
                    </xsl:template>
                </VehicleTypeCode>-->

            <!--Try to call a function-->
            <VehicleTypeCode function="Enum1">
                <xsl:call-template name="getEnum1">
                    <xsl:with-param name="type" select="VehicleBodyType"/>
                    <xsl:with-param name="data" select="VehicleBodyType"/>
                </xsl:call-template>
            </VehicleTypeCode>

            <!--Try to call a function-->
            <VehicleTypeCode function="Enum2">
                <xsl:call-template name="getEnum2">
                    <xsl:with-param name="type" select="VehicleBodyType"/>
                    <xsl:with-param name="data" select="VehicleBodyType"/>
                </xsl:call-template>
            </VehicleTypeCode>

            <Vehicle>
                <UnitNumber>
                    <xsl:value-of select="@VehicleNumber"/>
                </UnitNumber>
            </Vehicle>
        </CrashUnitsEntity>
    </xsl:template>

    <!-- ##################################### functions ##################################### -->

    <!-- Can't call a template inside another template-->
    <xsl:template name="getEnum1">
    <xsl:param name="type"/>
    <xsl:param name="data"/>
    <xsl:if test="$data">
      <!--<xsl:template match="xs:simpleType[@name=$type]/xs:restriction">
        <xsl:for-each select="xs:enumeration">
            <xsl:value-of select="@value"/>
        </xsl:for-each>
      </xsl:template>-->
    </xsl:if>
  </xsl:template>

    <!-- Can't call a template inside another template-->
    <xsl:template name="getEnum2">
    <xsl:param name="type"/>
    <xsl:param name="data"/>
    <xsl:if test="$data">
        <!--<xsl:template match="xs:simpleType[@name=$type]/xs:restriction">
            <xsl:value-of select="count(xs:enumeration[@value = $data]/preceding-sibling::xs:enumeration) + 1"/>
        </xsl:template>-->
    </xsl:if>
  </xsl:template>

    <xs:simpleType name="VehicleBodyType">
        <xs:restriction base="xs:string">
            <xs:enumeration value="NotProvided" />
            <xs:enumeration value="NotApplicable" />
            <xs:enumeration value="PassengerCar" />
            <xs:enumeration value="Van" />
            <xs:enumeration value="Truck" />
        </xs:restriction>
    </xs:simpleType>

    <xs:simpleType name="VehicleColor">
        <xs:restriction base="xs:string">
            <xs:enumeration value="NotProvided" />
            <xs:enumeration value="Red" />
            <xs:enumeration value="Green" />
            <xs:enumeration value="Blue" />
        </xs:restriction>
    </xs:simpleType>

</xsl:stylesheet>

Ожидаемый вывод xml:

<?xml version="1.0" encoding="UTF-8"?>
<CrashEntity>
  <WorkZoneWorkers/>
  <CrashUnits>
    <CrashUnitsEntity>
      <VehicleTypeCode>4</VehicleTypeCode>
      <VehicleColor>2</VehicleColor>
    </CrashUnitsEntity>
  </CrashUnits>
</CrashEntity>
...