Слияние кода завершено, страница обновится автоматически
// 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"
// OnSimpleType handles parsing event on the simpleType start elements. The
// simpleType element defines a simple type and specifies the constraints and
// information about the values of attributes or text-only elements.
func (opt *Options) OnSimpleType(ele xml.StartElement, protoTree []interface{}) (err error) {
if opt.SimpleType.Len() == 0 {
opt.SimpleType.Push(&SimpleType{})
}
if opt.CurrentEle == "attributeGroup" {
// return
}
opt.CurrentEle = opt.InElement
for _, attr := range ele.Attr {
if attr.Name.Local == "name" {
opt.SimpleType.Peek().(*SimpleType).Name = attr.Value
}
}
return
}
// EndSimpleType handles parsing event on the simpleType end elements.
func (opt *Options) EndSimpleType(ele xml.EndElement, protoTree []interface{}) (err error) {
if opt.SimpleType.Len() > 0 && opt.Attribute.Len() > 0 {
opt.Attribute.Peek().(*Attribute).Type = opt.SimpleType.Pop().(*SimpleType).Base
return
}
if ele.Name.Local == opt.CurrentEle && opt.ComplexType.Len() == 1 {
opt.ProtoTree = append(opt.ProtoTree, opt.ComplexType.Pop())
opt.CurrentEle = ""
}
if ele.Name.Local == opt.CurrentEle && !opt.InUnion {
opt.ProtoTree = append(opt.ProtoTree, opt.SimpleType.Pop())
opt.CurrentEle = ""
}
return
}
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )