-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
xmlChoice.go
49 lines (42 loc) · 1.39 KB
/
xmlChoice.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
// Copyright 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"
"strconv"
)
// OnChoice handles parsing event on the choice start elements. The
// choice element defines that one and only one of the contained element can be present within
// the contained element.
func (opt *Options) OnChoice(ele xml.StartElement, protoTree []interface{}) (err error) {
choice := Choice{}
for _, attr := range ele.Attr {
if attr.Name.Local == "maxOccurs" {
var maxOccurs int
if maxOccurs, err = strconv.Atoi(attr.Value); attr.Value != "unbounded" && err != nil {
return
}
if attr.Value == "unbounded" || maxOccurs > 1 {
choice.Plural, err = true, nil
} else {
choice.Plural, err = false, nil
}
}
}
// Handle a case of a parent choice having plurality that children should inherit
if opt.Choice.Len() > 0 {
choice.Plural = choice.Plural || opt.Choice.Peek().(*Choice).Plural
}
opt.Choice.Push(&choice)
return
}
// EndChoice handles parsing event on the choice end elements.
func (opt *Options) EndChoice(ele xml.EndElement, protoTree []interface{}) (err error) {
opt.Choice.Pop()
return
}