forked from metaleap/go-xsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elem.go
552 lines (497 loc) · 9.61 KB
/
elem.go
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
package xsd
import (
xsdt "github.com/metaleap/go-xsd/types"
)
type element interface {
base() *elemBase
init(parent, self element, xsdName xsdt.NCName, atts ...beforeAfterMake)
Parent() element
}
type elemBase struct {
atts []beforeAfterMake
parent, self element // self is the struct that embeds elemBase, rather than the elemBase pseudo-field
xsdName xsdt.NCName
hasNameAttr bool
}
func (me *elemBase) afterMakePkg(bag *PkgBag) {
if !me.hasNameAttr {
bag.Stacks.Name.Pop()
}
for _, a := range me.atts {
a.afterMakePkg(bag)
}
}
func (me *elemBase) beforeMakePkg(bag *PkgBag) {
if !me.hasNameAttr {
bag.Stacks.Name.Push(me.xsdName)
}
for _, a := range me.atts {
a.beforeMakePkg(bag)
}
}
func (me *elemBase) base() *elemBase { return me }
func (me *elemBase) init(parent, self element, xsdName xsdt.NCName, atts ...beforeAfterMake) {
me.parent, me.self, me.xsdName, me.atts = parent, self, xsdName, atts
for _, a := range atts {
if _, me.hasNameAttr = a.(*hasAttrName); me.hasNameAttr {
break
}
}
}
func (me *elemBase) longSafeName(bag *PkgBag) (ln string) {
var els = []element{}
for el := me.self; (el != nil) && (el != bag.Schema); el = el.Parent() {
els = append(els, el)
}
for i := len(els) - 1; i >= 0; i-- {
ln += bag.safeName(els[i].base().selfName().String())
}
return
}
func (me *elemBase) selfName() xsdt.NCName {
if me.hasNameAttr {
for _, at := range me.atts {
if an, ok := at.(*hasAttrName); ok {
return an.Name
}
}
}
return me.xsdName
}
func (me *elemBase) Parent() element { return me.parent }
type All struct {
elemBase
// XMLName xml.Name `xml:"all"`
hasAttrId
hasAttrMaxOccurs
hasAttrMinOccurs
hasElemAnnotation
hasElemsElement
}
type Annotation struct {
elemBase
// XMLName xml.Name `xml:"annotation"`
hasElemsAppInfo
hasElemsDocumentation
}
type Any struct {
elemBase
// XMLName xml.Name `xml:"any"`
hasAttrId
hasAttrMaxOccurs
hasAttrMinOccurs
hasAttrNamespace
hasAttrProcessContents
hasElemAnnotation
}
type AnyAttribute struct {
elemBase
// XMLName xml.Name `xml:"anyAttribute"`
hasAttrId
hasAttrNamespace
hasAttrProcessContents
hasElemAnnotation
}
type AppInfo struct {
elemBase
// XMLName xml.Name `xml:"appinfo"`
hasAttrSource
hasCdata
}
type Attribute struct {
elemBase
// XMLName xml.Name `xml:"attribute"`
hasAttrDefault
hasAttrFixed
hasAttrForm
hasAttrId
hasAttrName
hasAttrRef
hasAttrType
hasAttrUse
hasElemAnnotation
hasElemsSimpleType
}
type AttributeGroup struct {
elemBase
// XMLName xml.Name `xml:"attributeGroup"`
hasAttrId
hasAttrName
hasAttrRef
hasElemAnnotation
hasElemsAnyAttribute
hasElemsAttribute
hasElemsAttributeGroup
}
type Choice struct {
elemBase
// XMLName xml.Name `xml:"choice"`
hasAttrId
hasAttrMaxOccurs
hasAttrMinOccurs
hasElemAnnotation
hasElemsAny
hasElemsChoice
hasElemsElement
hasElemsGroup
hasElemsSequence
}
type ComplexContent struct {
elemBase
// XMLName xml.Name `xml:"complexContent"`
hasAttrId
hasAttrMixed
hasElemAnnotation
hasElemExtensionComplexContent
hasElemRestrictionComplexContent
}
type ComplexType struct {
elemBase
// XMLName xml.Name `xml:"complexType"`
hasAttrAbstract
hasAttrBlock
hasAttrFinal
hasAttrId
hasAttrMixed
hasAttrName
hasElemAll
hasElemAnnotation
hasElemsAnyAttribute
hasElemsAttribute
hasElemsAttributeGroup
hasElemChoice
hasElemComplexContent
hasElemGroup
hasElemSequence
hasElemSimpleContent
}
type Documentation struct {
elemBase
// XMLName xml.Name `xml:"documentation"`
hasAttrLang
hasAttrSource
hasCdata
}
type Element struct {
elemBase
// XMLName xml.Name `xml:"element"`
hasAttrAbstract
hasAttrBlock
hasAttrDefault
hasAttrFinal
hasAttrFixed
hasAttrForm
hasAttrId
hasAttrMaxOccurs
hasAttrMinOccurs
hasAttrName
hasAttrNillable
hasAttrRef
hasAttrSubstitutionGroup
hasAttrType
hasElemAnnotation
hasElemComplexType
hasElemsKey
hasElemKeyRef
hasElemsSimpleType
hasElemUnique
}
type ExtensionComplexContent struct {
elemBase
// XMLName xml.Name `xml:"extension"`
hasAttrBase
hasAttrId
hasElemAll
hasElemAnnotation
hasElemsAnyAttribute
hasElemsAttribute
hasElemsAttributeGroup
hasElemsChoice
hasElemsGroup
hasElemsSequence
}
type ExtensionSimpleContent struct {
elemBase
// XMLName xml.Name `xml:"extension"`
hasAttrBase
hasAttrId
hasElemAnnotation
hasElemsAnyAttribute
hasElemsAttribute
hasElemsAttributeGroup
}
type Field struct {
elemBase
// XMLName xml.Name `xml:"field"`
hasAttrId
hasAttrXpath
hasElemAnnotation
}
type Group struct {
elemBase
// XMLName xml.Name `xml:"group"`
hasAttrId
hasAttrMaxOccurs
hasAttrMinOccurs
hasAttrName
hasAttrRef
hasElemAll
hasElemAnnotation
hasElemChoice
hasElemSequence
}
type Include struct {
elemBase
// XMLName xml.Name `xml:"include"`
hasAttrId
hasAttrSchemaLocation
hasElemAnnotation
}
type Import struct {
elemBase
// XMLName xml.Name `xml:"import"`
hasAttrId
hasAttrNamespace
hasAttrSchemaLocation
hasElemAnnotation
}
type Key struct {
elemBase
// XMLName xml.Name `xml:"key"`
hasAttrId
hasAttrName
hasElemAnnotation
hasElemField
hasElemSelector
}
type KeyRef struct {
elemBase
// XMLName xml.Name `xml:"keyref"`
hasAttrId
hasAttrName
hasAttrRefer
hasElemAnnotation
hasElemField
hasElemSelector
}
type List struct {
elemBase
// XMLName xml.Name `xml:"list"`
hasAttrId
hasAttrItemType
hasElemAnnotation
hasElemsSimpleType
}
type Notation struct {
elemBase
// XMLName xml.Name `xml:"notation"`
hasAttrId
hasAttrName
hasAttrPublic
hasAttrSystem
hasElemAnnotation
}
type Redefine struct {
elemBase
// XMLName xml.Name `xml:"redefine"`
hasAttrId
hasAttrSchemaLocation
hasElemAnnotation
hasElemsAttributeGroup
hasElemsComplexType
hasElemsGroup
hasElemsSimpleType
}
type RestrictionComplexContent struct {
elemBase
// XMLName xml.Name `xml:"restriction"`
hasAttrBase
hasAttrId
hasElemAll
hasElemAnnotation
hasElemsAnyAttribute
hasElemsAttribute
hasElemsAttributeGroup
hasElemsChoice
hasElemsSequence
}
type RestrictionSimpleContent struct {
elemBase
// XMLName xml.Name `xml:"restriction"`
hasAttrBase
hasAttrId
hasElemAnnotation
hasElemsAnyAttribute
hasElemsAttribute
hasElemsAttributeGroup
hasElemsEnumeration
hasElemFractionDigits
hasElemLength
hasElemMaxExclusive
hasElemMaxInclusive
hasElemMaxLength
hasElemMinExclusive
hasElemMinInclusive
hasElemMinLength
hasElemPattern
hasElemsSimpleType
hasElemTotalDigits
hasElemWhiteSpace
}
type RestrictionSimpleEnumeration struct {
elemBase
// XMLName xml.Name `xml:"enumeration"`
hasAttrValue
}
type RestrictionSimpleFractionDigits struct {
elemBase
// XMLName xml.Name `xml:"fractionDigits"`
hasAttrValue
}
type RestrictionSimpleLength struct {
elemBase
// XMLName xml.Name `xml:"length"`
hasAttrValue
}
type RestrictionSimpleMaxExclusive struct {
elemBase
// XMLName xml.Name `xml:"maxExclusive"`
hasAttrValue
}
type RestrictionSimpleMaxInclusive struct {
elemBase
// XMLName xml.Name `xml:"maxInclusive"`
hasAttrValue
}
type RestrictionSimpleMaxLength struct {
elemBase
// XMLName xml.Name `xml:"maxLength"`
hasAttrValue
}
type RestrictionSimpleMinExclusive struct {
elemBase
// XMLName xml.Name `xml:"minExclusive"`
hasAttrValue
}
type RestrictionSimpleMinInclusive struct {
elemBase
// XMLName xml.Name `xml:"minInclusive"`
hasAttrValue
}
type RestrictionSimpleMinLength struct {
elemBase
// XMLName xml.Name `xml:"minLength"`
hasAttrValue
}
type RestrictionSimplePattern struct {
elemBase
// XMLName xml.Name `xml:"pattern"`
hasAttrValue
}
type RestrictionSimpleTotalDigits struct {
elemBase
// XMLName xml.Name `xml:"totalDigits"`
hasAttrValue
}
type RestrictionSimpleType struct {
elemBase
// XMLName xml.Name `xml:"restriction"`
hasAttrBase
hasAttrId
hasElemAnnotation
hasElemsEnumeration
hasElemFractionDigits
hasElemLength
hasElemMaxExclusive
hasElemMaxInclusive
hasElemMaxLength
hasElemMinExclusive
hasElemMinInclusive
hasElemMinLength
hasElemPattern
hasElemsSimpleType
hasElemTotalDigits
hasElemWhiteSpace
}
type RestrictionSimpleWhiteSpace struct {
elemBase
// XMLName xml.Name `xml:"whiteSpace"`
hasAttrValue
}
type Selector struct {
elemBase
// XMLName xml.Name `xml:"selector"`
hasAttrId
hasAttrXpath
hasElemAnnotation
}
type Sequence struct {
elemBase
// XMLName xml.Name `xml:"sequence"`
hasAttrId
hasAttrMaxOccurs
hasAttrMinOccurs
hasElemAnnotation
hasElemsAny
hasElemsChoice
hasElemsElement
hasElemsGroup
hasElemsSequence
}
type SimpleContent struct {
elemBase
// XMLName xml.Name `xml:"simpleContent"`
hasAttrId
hasElemAnnotation
hasElemExtensionSimpleContent
hasElemRestrictionSimpleContent
}
type SimpleType struct {
elemBase
// XMLName xml.Name `xml:"simpleType"`
hasAttrFinal
hasAttrId
hasAttrName
hasElemAnnotation
hasElemList
hasElemRestrictionSimpleType
hasElemUnion
}
type Union struct {
elemBase
// XMLName xml.Name `xml:"union"`
hasAttrId
hasAttrMemberTypes
hasElemAnnotation
hasElemsSimpleType
}
type Unique struct {
elemBase
// XMLName xml.Name `xml:"unique"`
hasAttrId
hasAttrName
hasElemAnnotation
hasElemField
hasElemSelector
}
func Flattened(choices []*Choice, seqs []*Sequence) (allChoices []*Choice, allSeqs []*Sequence) {
var tmpChoices []*Choice
var tmpSeqs []*Sequence
for _, ch := range choices {
if ch != nil {
allChoices = append(allChoices, ch)
tmpChoices, tmpSeqs = Flattened(ch.Choices, ch.Sequences)
allChoices = append(allChoices, tmpChoices...)
allSeqs = append(allSeqs, tmpSeqs...)
}
}
for _, seq := range seqs {
if seq != nil {
allSeqs = append(allSeqs, seq)
tmpChoices, tmpSeqs = Flattened(seq.Choices, seq.Sequences)
allChoices = append(allChoices, tmpChoices...)
allSeqs = append(allSeqs, tmpSeqs...)
}
}
return
}