-
Notifications
You must be signed in to change notification settings - Fork 0
/
GLOBAL.xsl
158 lines (146 loc) · 4.65 KB
/
GLOBAL.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
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output indent="no" method="xml" omit-xml-declaration="yes"/>
<xsl:template match="/Rowsets">
<xsl:text>{</xsl:text>
<xsl:apply-templates select="*"/>
<xsl:text>}</xsl:text>
</xsl:template>
<!-- Object or Element Property -->
<xsl:template match="*">
<xsl:text>"</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>":</xsl:text>
<xsl:call-template name="Properties"/>
</xsl:template>
<xsl:template match="Rowset">
<xsl:text>"Rows":[</xsl:text>
<xsl:call-template name="PropertiesRow"/>
<xsl:text>]</xsl:text>
<xsl:if test="following-sibling::*">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:template>
<!-- Object Properties -->
<xsl:template name="PropertiesRow">
<xsl:apply-templates mode="ArrayElement" select="Row"/>
</xsl:template>
<!-- find element start with LIST and have a child with name Rowset-->
<xsl:template match="*[starts-with(name(), 'LIST_')]">
<xsl:text>"</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>"</xsl:text>
<xsl:text>:[</xsl:text>
<xsl:choose>
<xsl:when test="name(*[*]) = 'Rowset'">
<xsl:call-template name="PropertiesNestedObject"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="PropertiesList"/>
</xsl:otherwise>
</xsl:choose>
<xsl:text>]</xsl:text>
<xsl:if test="following-sibling::*">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:template>
<!-- List Properties -->
<xsl:template name="PropertiesList">
<xsl:apply-templates mode="ArrayElement" select="*"/>
</xsl:template>
<!-- List PropertiesNestedObject -->
<xsl:template name="PropertiesNestedObject">
<xsl:apply-templates mode="ArrayElement" select="*/Row"/>
</xsl:template>
<!-- Array Element -->
<xsl:template match="*" mode="ArrayElement">
<xsl:call-template name="Properties"/>
</xsl:template>
<!-- Object Properties -->
<xsl:template name="Properties">
<xsl:variable name="childName" select="name(*[1])"/>
<xsl:choose>
<xsl:when test="not(*)">
<xsl:variable name="valore" select="."/>
<xsl:choose>
<xsl:when test="number($valore) = $valore">
<!-- Senza apici per numerici e booleani -->
<xsl:value-of select="."/>
</xsl:when>
<xsl:when test="$valore = 'true'">
<!-- Senza apici per numerici e booleani -->
<xsl:value-of select="."/>
</xsl:when>
<xsl:when test="$valore = 'false'">
<!-- Senza apici per numerici e booleani -->
<xsl:value-of select="."/>
</xsl:when>
<xsl:otherwise>
<!-- Apici per stringhe -->
<xsl:text>"</xsl:text>
<xsl:call-template name="jsonTextEscape"/>
<xsl:text>"</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="count(*[name()=$childName]) > 1">
<xsl:text>{"</xsl:text>
<xsl:value-of select="$childName"/>
<xsl:text>":[</xsl:text>
<xsl:apply-templates mode="ArrayElement" select="*"/>
<xsl:text>]}</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>{</xsl:text>
<xsl:apply-templates select="*"/>
<xsl:text>}</xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="following-sibling::*">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:template>
<xsl:template name="jsonTextEscape">
<xsl:call-template name="escapeQuote">
<xsl:with-param name="pText">
<xsl:call-template name="jsonescape">
<xsl:with-param name="str" select="." />
</xsl:call-template>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<xsl:template name="escapeQuote">
<xsl:param name="pText" select="concat(normalize-space(.), '')" />
<xsl:if test="string-length($pText) >0">
<xsl:value-of select="substring-before(concat($pText, '"'), '"')" />
<xsl:if test="contains($pText, '"')">
<xsl:text>\"</xsl:text>
<xsl:call-template name="escapeQuote">
<xsl:with-param name="pText" select="substring-after($pText, '"')" />
</xsl:call-template>
</xsl:if>
</xsl:if>
</xsl:template>
<xsl:template name="jsonescape">
<xsl:param name="str" select="."/>
<xsl:choose>
<xsl:when test="contains($str, '\')">
<xsl:value-of select="concat(substring-before($str, '\'), '\\' )"/>
<xsl:call-template name="jsonescape">
<xsl:with-param name="str" select="substring-after($str, '\')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$str"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Attribute Property -->
<xsl:template match="@*">
<xsl:text>"@</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>":"</xsl:text>
<xsl:value-of select="."/>
<xsl:text>",</xsl:text>
</xsl:template>
</xsl:stylesheet>