forked from hooklift/gowsdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xsd.go
253 lines (228 loc) · 8.41 KB
/
xsd.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package gowsdl
import (
"encoding/xml"
)
const xmlschema11 = "http://www.w3.org/2001/XMLSchema"
// XSDSchema represents an entire Schema structure.
type XSDSchema struct {
XMLName xml.Name `xml:"schema"`
Xmlns map[string]string `xml:"-"`
Tns string `xml:"xmlns tns,attr"`
Xs string `xml:"xmlns xs,attr"`
Version string `xml:"version,attr"`
TargetNamespace string `xml:"targetNamespace,attr"`
ElementFormDefault string `xml:"elementFormDefault,attr"`
Includes []*XSDInclude `xml:"include"`
Imports []*XSDImport `xml:"import"`
Elements []*XSDElement `xml:"element"`
Attributes []*XSDAttribute `xml:"attribute"`
ComplexTypes []*XSDComplexType `xml:"complexType"` // global
SimpleType []*XSDSimpleType `xml:"simpleType"`
}
// UnmarshalXML implements interface xml.Unmarshaler for XSDSchema.
func (s *XSDSchema) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
s.Xmlns = make(map[string]string)
s.XMLName = start.Name
for _, attr := range start.Attr {
if attr.Name.Space == "xmlns" {
s.Xmlns[attr.Name.Local] = attr.Value
continue
}
switch attr.Name.Local {
case "version":
s.Version = attr.Value
case "targetNamespace":
s.TargetNamespace = attr.Value
case "elementFormDefault":
s.ElementFormDefault = attr.Value
}
}
Loop:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch t := tok.(type) {
case xml.StartElement:
if t.Name.Space != xmlschema11 {
d.Skip()
continue Loop
}
switch t.Name.Local {
case "include":
x := new(XSDInclude)
if err := d.DecodeElement(x, &t); err != nil {
return err
}
s.Includes = append(s.Includes, x)
case "import":
x := new(XSDImport)
if err := d.DecodeElement(x, &t); err != nil {
return err
}
s.Imports = append(s.Imports, x)
case "element":
x := new(XSDElement)
if err := d.DecodeElement(x, &t); err != nil {
return err
}
s.Elements = append(s.Elements, x)
case "attribute":
x := new(XSDAttribute)
if err := d.DecodeElement(x, &t); err != nil {
return err
}
s.Attributes = append(s.Attributes, x)
case "complexType":
x := new(XSDComplexType)
if err := d.DecodeElement(x, &t); err != nil {
return err
}
s.ComplexTypes = append(s.ComplexTypes, x)
case "simpleType":
x := new(XSDSimpleType)
if err := d.DecodeElement(x, &t); err != nil {
return err
}
s.SimpleType = append(s.SimpleType, x)
default:
d.Skip()
continue Loop
}
case xml.EndElement:
break Loop
}
}
return nil
}
// XSDInclude represents schema includes.
type XSDInclude struct {
SchemaLocation string `xml:"schemaLocation,attr"`
}
// XSDImport represents XSD imports within the main schema.
type XSDImport struct {
XMLName xml.Name `xml:"import"`
SchemaLocation string `xml:"schemaLocation,attr"`
Namespace string `xml:"namespace,attr"`
}
// XSDElement represents a Schema element.
type XSDElement struct {
XMLName xml.Name `xml:"element"`
Name string `xml:"name,attr"`
Doc string `xml:"annotation>documentation"`
Nillable bool `xml:"nillable,attr"`
Type string `xml:"type,attr"`
Ref string `xml:"ref,attr"`
MinOccurs string `xml:"minOccurs,attr"`
MaxOccurs string `xml:"maxOccurs,attr"`
ComplexType *XSDComplexType `xml:"complexType"` // local
SimpleType *XSDSimpleType `xml:"simpleType"`
Groups []*XSDGroup `xml:"group"`
}
// XSDAny represents a Schema element.
type XSDAny struct {
XMLName xml.Name `xml:"any"`
Doc string `xml:"annotation>documentation"`
MinOccurs string `xml:"minOccurs,attr"`
MaxOccurs string `xml:"maxOccurs,attr"`
Namespace string `xml:"namespace,attr"`
ProcessContents string `xml:"processContents,attr"`
}
// XSDComplexType represents a Schema complex type.
type XSDComplexType struct {
XMLName xml.Name `xml:"complexType"`
Abstract bool `xml:"abstract,attr"`
Name string `xml:"name,attr"`
Mixed bool `xml:"mixed,attr"`
Sequence []*XSDElement `xml:"sequence>element"`
Choice []*XSDElement `xml:"choice>element"`
SequenceChoice []*XSDElement `xml:"sequence>choice>element"`
All []*XSDElement `xml:"all>element"`
ComplexContent XSDComplexContent `xml:"complexContent"`
SimpleContent XSDSimpleContent `xml:"simpleContent"`
Attributes []*XSDAttribute `xml:"attribute"`
Any []*XSDAny `xml:"sequence>any"`
}
// XSDGroup element is used to define a group of elements to be used in complex type definitions.
type XSDGroup struct {
Name string `xml:"name,attr"`
Ref string `xml:"ref,attr"`
Sequence []XSDElement `xml:"sequence>element"`
Choice []XSDElement `xml:"choice>element"`
All []XSDElement `xml:"all>element"`
}
// XSDComplexContent element defines extensions or restrictions on a complex
// type that contains mixed content or elements only.
type XSDComplexContent struct {
XMLName xml.Name `xml:"complexContent"`
Extension XSDExtension `xml:"extension"`
}
// XSDSimpleContent element contains extensions or restrictions on a text-only
// complex type or on a simple type as content and contains no elements.
type XSDSimpleContent struct {
XMLName xml.Name `xml:"simpleContent"`
Extension XSDExtension `xml:"extension"`
}
// XSDExtension element extends an existing simpleType or complexType element.
type XSDExtension struct {
XMLName xml.Name `xml:"extension"`
Base string `xml:"base,attr"`
Attributes []*XSDAttribute `xml:"attribute"`
Sequence []*XSDElement `xml:"sequence>element"`
Choice []*XSDElement `xml:"choice>element"`
SequenceChoice []*XSDElement `xml:"sequence>choice>element"`
}
// XSDAttribute represent an element attribute. Simple elements cannot have
// attributes. If an element has attributes, it is considered to be of a
// complex type. But the attribute itself is always declared as a simple type.
type XSDAttribute struct {
Doc string `xml:"annotation>documentation"`
Name string `xml:"name,attr"`
Ref string `xml:"ref,attr"`
Type string `xml:"type,attr"`
Use string `xml:"use,attr"`
Fixed string `xml:"fixed,attr"`
SimpleType *XSDSimpleType `xml:"simpleType"`
}
// XSDSimpleType element defines a simple type and specifies the constraints
// and information about the values of attributes or text-only elements.
type XSDSimpleType struct {
Name string `xml:"name,attr"`
Doc string `xml:"annotation>documentation"`
Restriction XSDRestriction `xml:"restriction"`
List XSDList `xml:"list"`
Union XSDUnion `xml:"union"`
Final string `xml:"final"`
}
// XSDList represents a element list
type XSDList struct {
Doc string `xml:"annotation>documentation"`
ItemType string `xml:"itemType,attr"`
SimpleType *XSDSimpleType `xml:"simpleType"`
}
// XSDUnion represents a union element
type XSDUnion struct {
SimpleType []*XSDSimpleType `xml:"simpleType,omitempty"`
MemberTypes string `xml:"memberTypes,attr"`
}
// XSDRestriction defines restrictions on a simpleType, simpleContent, or complexContent definition.
type XSDRestriction struct {
Base string `xml:"base,attr"`
Enumeration []XSDRestrictionValue `xml:"enumeration"`
Pattern XSDRestrictionValue `xml:"pattern"`
MinInclusive XSDRestrictionValue `xml:"minInclusive"`
MaxInclusive XSDRestrictionValue `xml:"maxInclusive"`
WhiteSpace XSDRestrictionValue `xml:"whitespace"`
Length XSDRestrictionValue `xml:"length"`
MinLength XSDRestrictionValue `xml:"minLength"`
MaxLength XSDRestrictionValue `xml:"maxLength"`
}
// XSDRestrictionValue represents a restriction value.
type XSDRestrictionValue struct {
Doc string `xml:"annotation>documentation"`
Value string `xml:"value,attr"`
}