-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
xmlRestriction.go
53 lines (49 loc) · 1.79 KB
/
xmlRestriction.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"
// OnRestriction handles parsing event on the restriction start elements. The
// restriction element defines restrictions on a simpleType, simpleContent, or
// complexContent definition.
func (opt *Options) OnRestriction(ele xml.StartElement, protoTree []interface{}) (err error) {
for _, attr := range ele.Attr {
if attr.Name.Local == "base" {
var valueType string
valueType, err = opt.GetValueType(attr.Value, protoTree)
if err != nil {
return
}
if opt.SimpleType.Peek() != nil {
opt.SimpleType.Peek().(*SimpleType).Base, err = opt.GetValueType(valueType, protoTree)
if err != nil {
return
}
if opt.SimpleType.Peek().(*SimpleType).Name == "" {
opt.SimpleType.Peek().(*SimpleType).Name = attr.Value
}
}
}
}
return
}
// EndRestriction handles parsing event on the restriction end elements.
func (opt *Options) EndRestriction(ele xml.EndElement, protoTree []interface{}) (err error) {
if opt.Attribute.Len() > 0 && opt.SimpleType.Peek() != nil {
opt.Attribute.Peek().(*Attribute).Type, err = opt.GetValueType(opt.SimpleType.Pop().(*SimpleType).Base, opt.ProtoTree)
if err != nil {
return
}
opt.CurrentEle = ""
}
if !opt.Element.Empty() {
if !opt.ComplexType.Empty() && len(opt.ComplexType.Peek().(*ComplexType).Elements) > 0 {
opt.ComplexType.Peek().(*ComplexType).Elements[len(opt.ComplexType.Peek().(*ComplexType).Elements)-1] = *opt.Element.Peek().(*Element)
}
}
return
}