1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/xurime-xgen

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
xmlAttribute.go 1.8 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Alex Normand Отправлено 15.11.2021 06:25 ec1513b
// 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"
// OnAttribute handles parsing event on the attribute start elements. All
// attributes are declared as simple types.
func (opt *Options) OnAttribute(ele xml.StartElement, protoTree []interface{}) (err error) {
attribute := Attribute{
Optional: true,
}
for _, attr := range ele.Attr {
if attr.Name.Local == "ref" {
attribute.Name = attr.Value
attribute.Type, err = opt.GetValueType(attr.Value, protoTree)
if err != nil {
return
}
}
if attr.Name.Local == "name" {
attribute.Name = attr.Value
}
if attr.Name.Local == "type" {
attribute.Type, err = opt.GetValueType(attr.Value, protoTree)
if err != nil {
return
}
}
if attr.Name.Local == "use" {
if attr.Value == "required" {
attribute.Optional = false
}
}
}
opt.Attribute.Push(&attribute)
return
}
// EndAttribute handles parsing event on the attribute end elements.
func (opt *Options) EndAttribute(ele xml.EndElement, protoTree []interface{}) (err error) {
if opt.Attribute.Len() == 0 {
return
}
if opt.AttributeGroup.Len() > 0 {
opt.AttributeGroup.Peek().(*AttributeGroup).Attributes = append(opt.AttributeGroup.Peek().(*AttributeGroup).Attributes, *opt.Attribute.Pop().(*Attribute))
return
}
if opt.ComplexType.Len() > 0 {
opt.ComplexType.Peek().(*ComplexType).Attributes = append(opt.ComplexType.Peek().(*ComplexType).Attributes, *opt.Attribute.Pop().(*Attribute))
return
}
if opt.ComplexType.Len() == 0 {
opt.ProtoTree = append(opt.ProtoTree, opt.Attribute.Pop())
}
return
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/xurime-xgen.git
git@api.gitlife.ru:oschina-mirror/xurime-xgen.git
oschina-mirror
xurime-xgen
xurime-xgen
master