-
Notifications
You must be signed in to change notification settings - Fork 6
/
XmlpgToXmlSchema.xslt
325 lines (308 loc) · 10.9 KB
/
XmlpgToXmlSchema.xslt
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<?xml version="1.0" encoding="UTF-8"?>
<!--
Document : XmlpgToXmlSchemaXsd.xslt.xsl
Created on : August 25, 2018, 3:29 PM
Author : Don Brutzman
Description: Convert legacy ad-hoc XML to XML Schema .xsd form
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
xmlns:xs ="http://www.w3.org/2001/XMLSchema"
xmlns:xalan="http://xml.apache.org/xslt">
<xsl:output encoding="UTF-8" media-type="text/xml" indent="yes" omit-xml-declaration="no" method="xml" xalan:indent-amount="4"/>
<xsl:strip-space elements="*" />
<xsl:template match="/">
<xsl:text> </xsl:text>
<xs:schema version="1.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xsl:apply-templates select="*"/>
</xs:schema>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="class">
<xsl:variable name="className" select="@name"/>
<xsl:variable name="baseType">
<xsl:choose>
<xsl:when test="(normalize-space(@inheritsFrom) = 'root')">
<!-- no inheritance -->
</xsl:when>
<xsl:when test="(string-length(normalize-space(@inheritsFrom)) > 0)">
<xsl:value-of select="normalize-space(@inheritsFrom)"/>
</xsl:when>
<xsl:otherwise>
<xsl:text></xsl:text><!-- SomePduType -->
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="isAbstract" select="boolean(//class[@inheritsFrom = $className])"/>
<xsl:variable name="pduType" select="initialValue[@name = 'pduType']/@value"/>
<xsl:variable name="protocolFamily" select="initialValue[@name = 'protocolFamily']/@value"/><!-- TODO -->
<xsl:choose>
<xsl:when test="preceding::class[@name = $className]">
<xsl:message>
<xsl:text>*** duplicate class name='</xsl:text>
<xsl:value-of select="@name"/>
<xsl:text>' found, ignored</xsl:text>
</xsl:message>
</xsl:when>
<xsl:when test="$isAbstract">
<xsl:message>
<xsl:text>*** $isAbstract=true complexType name='</xsl:text>
<xsl:value-of select="$className"/>
<xsl:text>' found</xsl:text>
</xsl:message>
<xsl:element name="xs:complexType">
<xsl:attribute name="name">
<xsl:value-of select="$className"/>
</xsl:attribute>
</xsl:element>
</xsl:when>
<xsl:when test="(//attribute/classRef[@name = $className]) and false()"><!-- TODO -->
<!-- something else refers to this element -->
<xsl:message>
<xsl:text>*** element name='</xsl:text>
<xsl:value-of select="$className"/>
<xsl:text>' found, TODO</xsl:text>
</xsl:message>
<xsl:element name="xs:element">
<xsl:attribute name="name">
<xsl:value-of select="$className"/>
</xsl:attribute>
<xsl:attribute name="abstract">
<xsl:value-of select="$isAbstract"/>
</xsl:attribute>
<xsl:if test="(string-length(normalize-space(@comment)) > 0)">
<xs:annotation>
<xs:appinfo>
<xsl:value-of select="normalize-space(@comment)"/>
</xs:appinfo>
</xs:annotation>
</xsl:if>
<xsl:if test="attribute">
<xs:complexType>
<xsl:choose>
<xsl:when test="(string-length($baseType) > 0)">
<xs:complexContent>
<xs:extension base="{$baseType}">
<xsl:if test="attribute[classRef]">
<!-- TODO warning -->
</xsl:if>
<xsl:apply-templates select="attribute[not(classRef)]">
<!-- contained attributes -->
<xsl:sort select="@name" order="ascending" data-type="text"/>
</xsl:apply-templates>
</xs:extension>
</xs:complexContent>
</xsl:when>
<xsl:otherwise>
<!-- no xs:complexContent/xs:extension -->
<xsl:if test="attribute[classRef]">
<!-- TODO warning -->
</xsl:if>
<xsl:apply-templates select="attribute[not(classRef)]">
<!-- contained attributes -->
<xsl:sort select="@name" order="ascending" data-type="text"/>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xs:complexType>
</xsl:if>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:element name="xs:element">
<xsl:attribute name="name">
<xsl:value-of select="$className"/>
</xsl:attribute>
<xsl:attribute name="abstract">
<xsl:value-of select="$isAbstract"/>
</xsl:attribute>
<xsl:if test="(string-length(normalize-space(@comment)) > 0)">
<xs:annotation>
<xs:appinfo>
<xsl:value-of select="normalize-space(@comment)"/>
</xs:appinfo>
</xs:annotation>
</xsl:if>
<xsl:if test="attribute">
<xs:complexType>
<xsl:choose>
<xsl:when test="(string-length($baseType) > 0)">
<xs:complexContent>
<xs:extension base="{$baseType}">
<xsl:if test="attribute[classRef]">
<xs:choice>
<xsl:apply-templates select="attribute[classRef]">
<!-- contained elements -->
<xsl:sort select="@name" order="ascending" data-type="text"/>
</xsl:apply-templates>
</xs:choice>
</xsl:if>
<xsl:apply-templates select="attribute[not(classRef)]">
<!-- contained attributes -->
<xsl:sort select="@name" order="ascending" data-type="text"/>
</xsl:apply-templates>
<xsl:if test="(string-length($pduType) > 0)">
<xsl:element name="xs:attribute">
<xsl:attribute name="name">
<xsl:text>pduType</xsl:text>
</xsl:attribute>
<xsl:attribute name="fixed">
<xsl:value-of select="$pduType"/>
</xsl:attribute>
<xsl:attribute name="type">
<xsl:text>xs:short</xsl:text>
</xsl:attribute>
</xsl:element>
</xsl:if>
</xs:extension>
</xs:complexContent>
</xsl:when>
<xsl:otherwise>
<xsl:if test="attribute[classRef]">
<!-- TODO warning -->
</xsl:if>
<xsl:apply-templates select="attribute[not(classRef)]">
<!-- contained attributes -->
<xsl:sort select="@name" order="ascending" data-type="text"/>
</xsl:apply-templates>
<xsl:if test="(string-length($pduType) > 0)">
<xsl:element name="xs:attribute">
<xsl:attribute name="name">
<xsl:text>pduType</xsl:text>
</xsl:attribute>
<xsl:attribute name="fixed">
<xsl:value-of select="$pduType"/>
</xsl:attribute>
<xsl:attribute name="type">
<xsl:text>xs:short</xsl:text>
</xsl:attribute>
</xsl:element>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xs:complexType>
</xsl:if>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="attribute[classRef]">
<!-- this is not an attribute, rather this is a contained element -->
<xsl:variable name="fieldName" select="@name"/>
<xsl:variable name="classRefName" select="classRef/@name"/>
<xsl:choose>
<xsl:when test="(count(following-sibling::*/classRef[@name = $classRefName]) > 0)">
<xsl:comment>
<xsl:text> field name </xsl:text>
<xsl:value-of select="$fieldName"/>
<xsl:text>: </xsl:text>
</xsl:comment>
</xsl:when>
<xsl:otherwise>
<xsl:comment>
<xsl:text> field name </xsl:text>
<xsl:value-of select="$fieldName"/>
<xsl:text>: </xsl:text>
</xsl:comment>
<xsl:element name="xs:element">
<xsl:attribute name="ref">
<xsl:value-of select="$classRefName"/>
</xsl:attribute>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="attribute">
<xsl:variable name="attributeName" select="@name"/>
<!-- debug -->
<xsl:if test="(string-length(normalize-space(primitive/@type)) = 0)">
<xsl:message>
<xsl:text>*** set missing type='xs:string' for attribute name='</xsl:text>
<xsl:value-of select="$attributeName"/>
<xsl:text>'</xsl:text>
</xsl:message>
</xsl:if>
<xsl:variable name="attributeType">
<xsl:call-template name="convert-type">
<xsl:with-param name="xmlpgType">
<xsl:value-of select="primitive/@type"/>
</xsl:with-param>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="defaultValue">
<xsl:value-of select="normalize-space(primitive/@defaultValue)"/>
</xsl:variable>
<xsl:element name="xs:attribute">
<xsl:attribute name="name">
<xsl:value-of select="$attributeName"/>
</xsl:attribute>
<xsl:attribute name="type">
<xsl:value-of select="$attributeType"/>
</xsl:attribute>
<xsl:if test="(string-length($defaultValue) > 0)">
<xsl:attribute name="default">
<xsl:value-of select="$defaultValue"/>
</xsl:attribute>
</xsl:if>
<xsl:if test="(string-length(normalize-space(@comment)) > 0)">
<xs:annotation>
<xs:appinfo>
<xsl:value-of select="normalize-space(@comment)"/>
</xs:appinfo>
</xs:annotation>
</xsl:if>
</xsl:element>
</xsl:template>
<xsl:template name="convert-type">
<xsl:param name="xmlpgType"/>
<!-- debug
<xsl:message>
<xsl:text>*** convert-type $xmlpgType='</xsl:text>
<xsl:value-of select="$xmlpgType"/>
<xsl:text>'</xsl:text>
</xsl:message> -->
<xsl:choose>
<xsl:when test="($xmlpgType = 'unsigned byte')">
<xsl:text>xs:unsignedByte</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'unsigned short')">
<xsl:text>xs:unsignedShort</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'unsigned long')">
<xsl:text>xs:unsignedLong</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'unsigned int')">
<xsl:text>xs:unsignedInt</xsl:text>
</xsl:when>
<xsl:when test="(string-length(normalize-space($xmlpgType)) = 0)">
<xsl:text>xs:string</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'byte')">
<xsl:text>xs:byte</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'short')">
<xsl:text>xs:short</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'long')">
<xsl:text>xs:long</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'int')">
<xsl:text>xs:int</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'float')">
<xsl:text>xs:float</xsl:text>
</xsl:when>
<xsl:when test="($xmlpgType = 'double')">
<xsl:text>xs:double</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:message>
<xsl:text>*** found unknown xmlpg type='</xsl:text>
<xsl:value-of select="$xmlpgType"/>
<xsl:text>'</xsl:text>
</xsl:message>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>