-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
xmlAttributeGroup.go
53 lines (48 loc) · 1.67 KB
/
xmlAttributeGroup.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
// Copyright 2020 - 2024 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"
// OnAttributeGroup handles parsing event on the attributeGroup start
// elements. The attributeGroup element is used to group a set of attribute
// declarations so that they can be incorporated as a group into complex type
// definitions.
func (opt *Options) OnAttributeGroup(ele xml.StartElement, protoTree []interface{}) (err error) {
attributeGroup := AttributeGroup{}
for _, attr := range ele.Attr {
if attr.Name.Local == "name" {
attributeGroup.Name = attr.Value
}
if attr.Name.Local == "ref" {
attributeGroup.Name = attr.Value
attributeGroup.Ref, err = opt.GetValueType(attr.Value, protoTree)
if err != nil {
return
}
}
}
if opt.ComplexType.Len() == 0 {
opt.InAttributeGroup = true
opt.CurrentEle = opt.InElement
opt.AttributeGroup.Push(&attributeGroup)
return
}
if opt.ComplexType.Len() > 0 {
opt.ComplexType.Peek().(*ComplexType).AttributeGroup = append(opt.ComplexType.Peek().(*ComplexType).AttributeGroup, attributeGroup)
return
}
return
}
// EndAttributeGroup handles parsing event on the attributeGroup end elements.
func (opt *Options) EndAttributeGroup(ele xml.EndElement, protoTree []interface{}) (err error) {
if opt.AttributeGroup.Len() > 0 {
opt.ProtoTree = append(opt.ProtoTree, opt.AttributeGroup.Pop())
opt.CurrentEle = ""
opt.InAttributeGroup = false
}
return
}