分组后的 XSLT 1.0 条件合并
XSLT 1.0 conditional merge after grouping
我的输入 xml 如下所示:
<items>
<item>
<geoDetails>
<street>xxx</street>
<city>yyy</city>
<state>zzz</state>
</geoDetails>
<otherDetails>
<desc>abcd111</desc>
<comments>good item</comments>
</otherDetails>
<key>
<name>item1</name>
<id>123</id>
<color>red</color>
</key>
<misc>
<available>false</available>
<details>geo</details>
</misc>
</item>
<item>
<otherDetails>
<desc>efgh222</desc>
<comments>good item</comments>
</otherDetails>
<key>
<name>item2</name>
<id>123</id>
<color>red</color>
</key>
<misc>
<available>false</available>
<details>other</details>
</misc>
</item>
<item>
<geoDetails>
<street>ppp</street>
<city>qqq</city>
<state>rrr</state>
</geoDetails>
<otherDetails>
<desc>ijkl333</desc>
<comments>best item</comments>
</otherDetails>
<key>
<name>item3</name>
<id>456</id>
<color>blue</color>
</key>
<misc>
<available>false</available>
<details>other</details>
</misc>
</item>
</items>
分组 'item' 个节点的关键是 concat(/items/item/key/id,/items/item/key/color)
对于每个确定的组,合并应该按照下面给出的逻辑进行:
一个。从 'item' 中提取 'geoDetails',其中 misc/details 是 'geo'。
b。从 'item' 中提取 'otherDetails',其中 misc/details 是 'other'。每个 'item' 中只有一个 misc/details,其值为 'geo' 或 'other'。
c。从给定组中的第一个 'item' 中提取 'key' 元素。
d。 'misc' 元素应该包含原样的 'available' 元素(这总是 'false' 因此填充一次就足够了)并且 'details' 元素应该具有基于元素的值'geoDetails' 或 'otherDetails' 通过上述步骤 a 和 b 中给出的逻辑填充。如果同时填充 'geoDetails' 和 'otherDetails',则应该有 2 个 'details' 元素。
e。不属于组的任何其他单个 'item' 元素应按原样推送到输出。
基于上述逻辑的预期输出如下所示:
<items>
<item>
<geoDetails>
<street>xxx</street>
<city>yyy</city>
<state>zzz</state>
</geoDetails>
<otherDetails>
<desc>efgh222</desc>
<comments>good item</comments>
</otherDetails>
<key>
<name>item1</name>
<id>123</id>
<color>red</color>
</key>
<misc>
<available>false</available>
<details>geo</details>
<details>other</details>
</misc>
</item>
<item>
<geoDetails>
<street>ppp</street>
<city>qqq</city>
<state>rrr</state>
</geoDetails>
<otherDetails>
<desc>ijkl333</desc>
<comments>best item</comments>
</otherDetails>
<key>
<name>item3</name>
<id>456</id>
<color>blue</color>
</key>
<misc>
<available>false</available>
<details>other</details>
</misc>
</item>
我使用 xsl:key 和应用模板尝试了基于 Muenchian 分组的转换。我能够对 'item' 元素进行分组,但无法进一步了解如何根据上述条件集合并这些分组的元素。
XSLT 转换:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl">
<xsl:key match="item" name="itemKey" use="concat(key/id,key/color)" />
<xsl:template match="/">
<xsl:variable name="output">
<xsl:apply-templates />
</xsl:variable>
<xsl:copy-of select="exsl:node-set($output)/*" />
</xsl:template>
<!-- default template -->
<xsl:template match="node( ) | @*">
<xsl:copy>
<xsl:apply-templates select="@*" />
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<xsl:template match="item[generate-id(.)=generate-id(key('itemKey',concat(key/id,key/color))[1])]">
<xsl:copy>
<xsl:apply-templates select="@* | key('itemKey',concat(key/id,key/color))/node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="item" />
我已经在 Whosebug 上解决了几个相关问题,但无法使合并过程适应我当前的情况。非常感谢任何帮助。
AFAICT,这满足你的条件(据我所知):
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:strip-space elements="*"/>
<xsl:key name="itemKey" match="item" use="concat(key/id, key/color)" />
<xsl:template match="/items">
<xsl:copy>
<xsl:apply-templates select="item[generate-id()=generate-id(key('itemKey', concat(key/id, key/color))[1])]"/>
</xsl:copy>
</xsl:template>
<xsl:template match="item">
<xsl:variable name="curr-group" select="key('itemKey', concat(key/id, key/color))" />
<xsl:choose>
<!-- e. Any other single 'item' element that is which is not part of a group should be pushed to output as it is. -->
<xsl:when test="count($curr-group)=1">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:copy>
<!-- a. Extract 'geoDetails' from the 'item' where misc/details is 'geo'. -->
<xsl:copy-of select="$curr-group[misc/details='geo']/geoDetails"/>
<!-- b. Extract 'otherDetails' from the 'item' where misc/details is 'other'. -->
<xsl:copy-of select="$curr-group[misc/details='other']/otherDetails"/>
<!-- c. Extract the 'key' element from the first 'item' in a given group. -->
<xsl:copy-of select="key"/>
<!-- d. ??? -->
<misc>
<available>false</available>
<xsl:copy-of select="$curr-group/misc/details"/>
</misc>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
我的输入 xml 如下所示:
<items>
<item>
<geoDetails>
<street>xxx</street>
<city>yyy</city>
<state>zzz</state>
</geoDetails>
<otherDetails>
<desc>abcd111</desc>
<comments>good item</comments>
</otherDetails>
<key>
<name>item1</name>
<id>123</id>
<color>red</color>
</key>
<misc>
<available>false</available>
<details>geo</details>
</misc>
</item>
<item>
<otherDetails>
<desc>efgh222</desc>
<comments>good item</comments>
</otherDetails>
<key>
<name>item2</name>
<id>123</id>
<color>red</color>
</key>
<misc>
<available>false</available>
<details>other</details>
</misc>
</item>
<item>
<geoDetails>
<street>ppp</street>
<city>qqq</city>
<state>rrr</state>
</geoDetails>
<otherDetails>
<desc>ijkl333</desc>
<comments>best item</comments>
</otherDetails>
<key>
<name>item3</name>
<id>456</id>
<color>blue</color>
</key>
<misc>
<available>false</available>
<details>other</details>
</misc>
</item>
</items>
分组 'item' 个节点的关键是 concat(/items/item/key/id,/items/item/key/color) 对于每个确定的组,合并应该按照下面给出的逻辑进行:
一个。从 'item' 中提取 'geoDetails',其中 misc/details 是 'geo'。
b。从 'item' 中提取 'otherDetails',其中 misc/details 是 'other'。每个 'item' 中只有一个 misc/details,其值为 'geo' 或 'other'。
c。从给定组中的第一个 'item' 中提取 'key' 元素。
d。 'misc' 元素应该包含原样的 'available' 元素(这总是 'false' 因此填充一次就足够了)并且 'details' 元素应该具有基于元素的值'geoDetails' 或 'otherDetails' 通过上述步骤 a 和 b 中给出的逻辑填充。如果同时填充 'geoDetails' 和 'otherDetails',则应该有 2 个 'details' 元素。
e。不属于组的任何其他单个 'item' 元素应按原样推送到输出。
基于上述逻辑的预期输出如下所示:
<items>
<item>
<geoDetails>
<street>xxx</street>
<city>yyy</city>
<state>zzz</state>
</geoDetails>
<otherDetails>
<desc>efgh222</desc>
<comments>good item</comments>
</otherDetails>
<key>
<name>item1</name>
<id>123</id>
<color>red</color>
</key>
<misc>
<available>false</available>
<details>geo</details>
<details>other</details>
</misc>
</item>
<item>
<geoDetails>
<street>ppp</street>
<city>qqq</city>
<state>rrr</state>
</geoDetails>
<otherDetails>
<desc>ijkl333</desc>
<comments>best item</comments>
</otherDetails>
<key>
<name>item3</name>
<id>456</id>
<color>blue</color>
</key>
<misc>
<available>false</available>
<details>other</details>
</misc>
</item>
我使用 xsl:key 和应用模板尝试了基于 Muenchian 分组的转换。我能够对 'item' 元素进行分组,但无法进一步了解如何根据上述条件集合并这些分组的元素。
XSLT 转换:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" version="1.0" exclude-result-prefixes="exsl">
<xsl:key match="item" name="itemKey" use="concat(key/id,key/color)" />
<xsl:template match="/">
<xsl:variable name="output">
<xsl:apply-templates />
</xsl:variable>
<xsl:copy-of select="exsl:node-set($output)/*" />
</xsl:template>
<!-- default template -->
<xsl:template match="node( ) | @*">
<xsl:copy>
<xsl:apply-templates select="@*" />
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
<xsl:template match="item[generate-id(.)=generate-id(key('itemKey',concat(key/id,key/color))[1])]">
<xsl:copy>
<xsl:apply-templates select="@* | key('itemKey',concat(key/id,key/color))/node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="item" />
我已经在 Whosebug 上解决了几个相关问题,但无法使合并过程适应我当前的情况。非常感谢任何帮助。
AFAICT,这满足你的条件(据我所知):
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:strip-space elements="*"/>
<xsl:key name="itemKey" match="item" use="concat(key/id, key/color)" />
<xsl:template match="/items">
<xsl:copy>
<xsl:apply-templates select="item[generate-id()=generate-id(key('itemKey', concat(key/id, key/color))[1])]"/>
</xsl:copy>
</xsl:template>
<xsl:template match="item">
<xsl:variable name="curr-group" select="key('itemKey', concat(key/id, key/color))" />
<xsl:choose>
<!-- e. Any other single 'item' element that is which is not part of a group should be pushed to output as it is. -->
<xsl:when test="count($curr-group)=1">
<xsl:copy-of select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:copy>
<!-- a. Extract 'geoDetails' from the 'item' where misc/details is 'geo'. -->
<xsl:copy-of select="$curr-group[misc/details='geo']/geoDetails"/>
<!-- b. Extract 'otherDetails' from the 'item' where misc/details is 'other'. -->
<xsl:copy-of select="$curr-group[misc/details='other']/otherDetails"/>
<!-- c. Extract the 'key' element from the first 'item' in a given group. -->
<xsl:copy-of select="key"/>
<!-- d. ??? -->
<misc>
<available>false</available>
<xsl:copy-of select="$curr-group/misc/details"/>
</misc>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>