-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmlList.go
29 lines (26 loc) · 926 Bytes
/
xmlList.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
// 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"
// OnList handles parsing event on the list start elements. The list element
// defines a simple type element as a list of values of a specified data
// type.
func (opt *Options) OnList(ele xml.StartElement, protoTree []interface{}) (err error) {
if opt.SimpleType.Peek() == nil {
return
}
opt.SimpleType.Peek().(*SimpleType).List = true
for _, attr := range ele.Attr {
if attr.Name.Local == "itemType" {
if opt.SimpleType.Peek().(*SimpleType).Base, err = opt.GetValueType(attr.Value, protoTree); err != nil {
return
}
}
}
return
}