在xsl中自定义分组

时间:2015-02-25 23:11:39

标签: algorithm xslt grouping

嗨我有一个问题需要一个相当专业的分组,并希望得到一些关于最佳方法的反馈。 这是一些xml:

<root>
  <locations>
    <location>
      <address>123 4 st Smallville</address>
      <number>1</number>
    </location>
    <location>
      <address>432 1 st Metropolis</address>
      <number>2</number>
    </location>
  </locations>
  <insuranceCoverages>
    <coverage>
      <name>General Coverage</name>
      <locationSplits>
        <coverage>
          <name>Building Coverage</name>
          <locationNumber>1</locationNumber>
          <clauses>
            <coverage>
              <name>Earthquake Exclusion</name>
            </coverage>
          </clauses>
        </coverage>
      </locationSplits>
    </coverage>
    <coverage>
      <name>General Liability</name>
    </coverage>
  </insuranceCoverages>
</root>

我想要做的是按位置将覆盖范围分组到相当平坦的层次结构中。类似的东西:

┌Location 1
├┬Coverage "Building Coverage"
│└Coverage "Earthquake Exclusion"
├Location 2
├No Location
├┬Coverage "General Coverage"
│└Coverage "General Liability"

我当前的解决方案使用位置/位置上的模板,并枚举覆盖范围列表,查找与当前位置匹配的位置编号。但是,由于此算法枚举了每个位置的所有coverage,因此

O(nm)
  where n = # locations + 1
        m = # coverages

我希望我的算法可以优化,只能遍历覆盖树一次,将每个覆盖范围放在一个基于当前位置或其祖先的集合中,然后打印出这些集合。

O(n)
  where n = # coverages

当然,如果有更有效的方法用xsl表达这个,(可能用xsl:for-each-group指令?)我也有兴趣听到这个。

2 个答案:

答案 0 :(得分:1)

  

如果有更有效的方式用xsl表达,

使用XSLT执行此操作的有效方法是使用 key 。这是一个简单的例子:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:key name="coverage-by-location" match="coverage" use="locationNumber" />

<xsl:template match="/root">
    <xsl:copy>
        <xsl:for-each select="locations/location">
            <location number="{number}">
                <xsl:for-each select="key('coverage-by-location', number)">
                    <coverage name="{name}"/>
                </xsl:for-each>
            </location>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

仅遍历树的位置/位置分支,并使用<key>指令创建的索引来选择与当前位置对应的coverage。

在输出树中添加另一个“无位置”分支稍微有些棘手,但可以通过将密钥修改为:

来完成。
<xsl:key name="coverage-by-location" match="coverage" use="string(locationNumber)" />

此时,使用单个模板处理这两种覆盖范围会更方便,所以:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:key name="coverage-by-location" match="coverage" use="string(locationNumber)" />

<xsl:template match="/root">
    <xsl:copy>
        <xsl:apply-templates select="locations/location"/>
        <no-location>
            <xsl:apply-templates select="key('coverage-by-location', '')"/>
        </no-location>
    </xsl:copy>
</xsl:template>

<xsl:template match="location">
    <location number="{number}">
        <xsl:apply-templates select="key('coverage-by-location', number)"/>
    </location>
</xsl:template>

<xsl:template match="coverage">
    <coverage name="{name}"/>
</xsl:template>

</xsl:stylesheet>

将此应用于您的输入示例将返回:

<?xml version="1.0" encoding="UTF-8"?>
<root>
   <location number="1">
      <coverage name="Building Coverage"/>
   </location>
   <location number="2"/>
   <no-location>
      <coverage name="General Coverage"/>
      <coverage name="Earthquake Exclusion"/>
      <coverage name="General Liability"/>
   </no-location>
</root>

与您预期的结果略有不同,但您没有解释“地震排除”覆盖范围与地点#1的确切关系。


修改

  

至于地震排除,它最终会很重要   在位置1元素下,因为它是另一个覆盖范围的子元素   在位置1.

在这种情况下,我认为最好将密钥更改为:

<xsl:key name="coverage-by-location" match="coverage" use="string(ancestor-or-self::coverage/locationNumber)" />

答案 1 :(得分:0)

我不确定这种方法是否足够有效 - 使用匹配每个location的模板与匹配number locationNumber子元素的locationSplits

<xsl:template match="location[number=//coverage//locationNumber]">

和第二个模板匹配所有其他location,以下XSLT

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />
  <xsl:strip-space elements="*" />
    <xsl:template match="insuranceCoverages">
      <xsl:apply-templates />
    </xsl:template>
    <xsl:template match="@*|node()">
      <xsl:apply-templates select="@*|node()" />
    </xsl:template>
    <xsl:template match="location[number=//coverage//locationNumber]">
      <xsl:variable name="number" select="number" />
      <xsl:text>Location</xsl:text>
      <xsl:value-of select="$number" />
      <xsl:text>Coverage:</xsl:text>
      <xsl:value-of select="//locationSplits//coverage[locationNumber=$number]/name" />
      <xsl:for-each select="//locationSplits//coverage[locationNumber=$number]/clauses/coverage">
        <xsl:text>Coverage:</xsl:text>
        <xsl:value-of select="name" />
    </xsl:for-each>
  </xsl:template>
  <xsl:template match="location">
    <xsl:variable name="number" select="number" />
    <xsl:text>Location</xsl:text>
    <xsl:value-of select="$number" />
    <xsl:text>No Location</xsl:text>
    <xsl:for-each select="//insuranceCoverages//coverage[not(ancestor::locationSplits)]">
      <xsl:text>Coverage:</xsl:text>
      <xsl:value-of select="name" />
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>

当应用于您的输入时,XML会生成输出

Location 1
Coverage: Building Coverage
Coverage: Earthquake Exclusion
Location 2
No Location
Coverage: General Coverage
Coverage: General Liability

我不确定locationSplits中的覆盖范围是否有多个条款是可能的,所以也许没有必要循环它们。
location中没有coverage的{​​{1}}匹配的模板只会打印locationSplits的{​​{1}}子元素,而coverage不是insurangeCoverages的子元素:< / p>

locationSplits