-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathroll-bases.xsl
186 lines (178 loc) · 5.78 KB
/
roll-bases.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0" encoding="UTF-8"?>
<!--
The MIT License (MIT)
Copyright (c) 2016-2025 Objectionary.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:eo="https://www.eolang.org" id="roll-bases" version="2.0">
<!--
- <o base=".org">
<o base="Q"/> => <o base="org"/>
</o>
- <o base=".instructions">
<o base="$"/> => <o base="instructions"/>
</o>
- <o base=".eolang">
<o base="org"/> => <o base="org.eolang"/>
</o>
- <o base=".seq">
<o base="org.eolang"/> => <o base="org.eolang.seq"/>
</o>
- <o base=".seq">
<o base=".eolang">
<o base=".org">
<o base="Q"/> => <o base="Q.org.eolang.seq"/>
</o>
</o>
</o>
-->
<xsl:output encoding="UTF-8" method="xml"/>
<xsl:import href="/org/eolang/parser/_funcs.xsl"/>
<xsl:template match="o[starts-with(@base, '.')]">
<xsl:variable name="first" select="o[1]"/>
<xsl:choose>
<!--
x.
y.
Process y.
-->
<xsl:when test="starts-with($first/@base, '.')">
<xsl:variable name="argument" as="element()">
<xsl:apply-templates select="$first"/>
</xsl:variable>
<xsl:choose>
<!--
Left as
x.
y.
Copy as is
-->
<xsl:when test="starts-with($argument/@base, '.')">
<xsl:element name="o">
<xsl:apply-templates select="@*"/>
<xsl:copy-of select="$argument"/>
<xsl:apply-templates select="node()[position()>1]"/>
</xsl:element>
</xsl:when>
<!--
Either rolled, but with data:
x.
z.y
2A-
Or not rolled because anonymous:
x.
[]
-->
<xsl:when test="not(exists($argument/@base)) or eo:has-data($argument)">
<xsl:element name="o">
<xsl:apply-templates select="@*"/>
<xsl:element name="o">
<xsl:apply-templates select="$argument/@*"/>
<xsl:apply-templates select="$argument/node()"/>
</xsl:element>
<xsl:apply-templates select="node()[position()>1]"/>
</xsl:element>
</xsl:when>
<!--
Changed to
x.
z.y
Try to roll again
-->
<xsl:otherwise>
<xsl:apply-templates select="." mode="roll">
<xsl:with-param name="arg" select="$argument"/>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<!--
- With anonymous
x.
[]
- Or with data
x.
2A-
- Or ∅ (in case of parsing errors)
x.
∅
Leave as is
-->
<xsl:when test="not(exists($first/@base)) or eo:has-data($first) or eo:void($first)">
<xsl:element name="o">
<xsl:apply-templates select="@*"/>
<xsl:element name="o">
<xsl:apply-templates select="$first/@*"/>
<xsl:apply-templates select="$first/node()"/>
</xsl:element>
<xsl:apply-templates select="node()[position()>1]"/>
</xsl:element>
</xsl:when>
<!--
x.
y
-->
<xsl:otherwise>
<xsl:apply-templates select="." mode="roll">
<xsl:with-param name="arg" select="$first"/>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Try to roll @base with first child -->
<xsl:template match="o" mode="roll">
<xsl:param name="arg"/>
<xsl:choose>
<!--
x.
y
z
No rolling because of argument
-->
<xsl:when test="$arg/o">
<xsl:element name="o">
<xsl:apply-templates select="@*"/>
<xsl:element name="o">
<xsl:apply-templates select="$arg/@*"/>
<xsl:apply-templates select="$arg/node()"/>
</xsl:element>
<xsl:apply-templates select="node()[position()>1]"/>
</xsl:element>
</xsl:when>
<!--
x.
y
Roll into y.x
-->
<xsl:otherwise>
<xsl:element name="o">
<xsl:apply-templates select="@* except @base"/>
<xsl:attribute name="base">
<xsl:value-of select="concat($arg/@base, @base)"/>
</xsl:attribute>
<xsl:apply-templates select="node()[position()>1]"/>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Default copying -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>