-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmlUnion.go
47 lines (43 loc) · 1.39 KB
/
xmlUnion.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
// Copyright 2020 - 2021 The xgen Authors. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
//
// Package xgen written in pure Go providing a set of functions that allow you
// to parse XSD (XML schema files). This library needs Go version 1.10 or
// later.
package xgen
import (
"encoding/xml"
"strings"
)
// OnUnion handles parsing event on the union start elements. The union
// element defines a simple type as a collection (union) of values from
// specified simple data types.
func (opt *Options) OnUnion(ele xml.StartElement, protoTree []interface{}) (err error) {
opt.InUnion = true
if opt.SimpleType.Peek() == nil {
return
}
opt.SimpleType.Peek().(*SimpleType).Union = true
opt.SimpleType.Peek().(*SimpleType).MemberTypes = make(map[string]string)
for _, attr := range ele.Attr {
if attr.Name.Local == "memberTypes" {
memberTypes := strings.Split(attr.Value, " ")
for _, memberType := range memberTypes {
opt.SimpleType.Peek().(*SimpleType).MemberTypes[trimNSPrefix(memberType)], err = opt.GetValueType(memberType, protoTree)
if err != nil {
return
}
}
continue
}
}
return
}
// EndUnion handles parsing event on the union end elements.
func (opt *Options) EndUnion(ele xml.EndElement, protoTree []interface{}) (err error) {
if opt.SimpleType.Len() > 0 {
opt.InUnion = false
}
return
}