forked from hooklift/gowsdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types_tmpl.go
127 lines (115 loc) · 3.85 KB
/
types_tmpl.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
// 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
var typesTmpl = `
{{define "SimpleType"}}
{{$type := replaceReservedWords .Name | makePublic}}
type {{$type}} {{toGoType .Restriction.Base}}
const (
{{with .Restriction}}
{{range .Enumeration}}
{{if .Doc}} {{.Doc | comment}} {{end}}
{{$type}}{{$value := replaceReservedWords .Value}}{{$value | makePublic}} {{$type}} = "{{$value}}" {{end}}
{{end}}
)
{{end}}
{{define "ComplexContent"}}
{{$baseType := toGoType .Extension.Base}}
{{ if $baseType }}
{{$baseType}}
{{end}}
{{template "Elements" .Extension.Sequence}}
{{template "Attributes" .Extension.Attributes}}
{{end}}
{{define "Attributes"}}
{{range .}}
{{if .Doc}} {{.Doc | comment}} {{end}} {{if not .Type}}
{{ .Name | makeFieldPublic}} {{toGoType .SimpleType.Restriction.Base}} ` + "`" + `xml:"{{.Name}},attr,omitempty"` + "`" + `
{{else}}
{{ .Name | makeFieldPublic}} {{toGoType .Type}} ` + "`" + `xml:"{{.Name}},attr,omitempty"` + "`" + `
{{end}}
{{end}}
{{end}}
{{define "SimpleContent"}}
Value {{toGoType .Extension.Base}}{{template "Attributes" .Extension.Attributes}}
{{end}}
{{define "ComplexTypeInline"}}
{{replaceReservedWords .Name | makePublic}} struct {
{{with .ComplexType}}
{{if ne .ComplexContent.Extension.Base ""}}
{{template "ComplexContent" .ComplexContent}}
{{else if ne .SimpleContent.Extension.Base ""}}
{{template "SimpleContent" .SimpleContent}}
{{else}}
{{template "Elements" .Sequence}}
{{template "Elements" .Choice}}
{{template "Elements" .SequenceChoice}}
{{template "Elements" .All}}
{{template "Attributes" .Attributes}}
{{end}}
{{end}}
} ` + "`" + `xml:"{{.Name}},omitempty"` + "`" + `
{{end}}
{{define "Elements"}}
{{range .}}
{{if ne .Ref ""}}
{{removeNS .Ref | replaceReservedWords | makePublic}} {{if eq .MaxOccurs "unbounded"}}[]{{end}}{{.Ref | toGoType}} ` + "`" + `xml:"{{.Ref | removeNS}},omitempty"` + "`" + `
{{else}}
{{if not .Type}}
{{template "ComplexTypeInline" .}}
{{else}}
{{if .Doc}}
{{.Doc | comment}} {{"\n"}}
{{end}}
{{replaceReservedWords .Name | makeFieldPublic}} {{if eq .MaxOccurs "unbounded"}}[]{{end}}{{.Type | toGoType}} ` + "`" + `xml:"{{.Name}},omitempty"` + "`" + ` {{end}}
{{end}}
{{end}}
{{end}}
{{range .Schemas}}
{{ $targetNamespace := .TargetNamespace }}
{{range .SimpleType}}
{{template "SimpleType" .}}
{{end}}
{{range .Elements}}
{{if not .Type}}
{{/* ComplexTypeLocal */}}
{{$name := .Name}}
{{with .ComplexType}}
type {{$name | replaceReservedWords | makePublic}} struct {
XMLName xml.Name ` + "`xml:\"{{$targetNamespace}} {{$name}}\"`" + `
{{if ne .ComplexContent.Extension.Base ""}}
{{template "ComplexContent" .ComplexContent}}
{{else if ne .SimpleContent.Extension.Base ""}}
{{template "SimpleContent" .SimpleContent}}
{{else}}
{{template "Elements" .Sequence}}
{{template "Elements" .Choice}}
{{template "Elements" .SequenceChoice}}
{{template "Elements" .All}}
{{template "Attributes" .Attributes}}
{{end}}
}
{{end}}
{{end}}
{{end}}
{{range .ComplexTypes}}
{{/* ComplexTypeGlobal */}}
{{$name := replaceReservedWords .Name | makePublic}}
type {{$name}} struct {
XMLName xml.Name ` + "`xml:\"{{$targetNamespace}} {{.Name}}\"`" + `
{{if ne .ComplexContent.Extension.Base ""}}
{{template "ComplexContent" .ComplexContent}}
{{else if ne .SimpleContent.Extension.Base ""}}
{{template "SimpleContent" .SimpleContent}}
{{else}}
{{template "Elements" .Sequence}}
{{template "Elements" .Choice}}
{{template "Elements" .SequenceChoice}}
{{template "Elements" .All}}
{{template "Attributes" .Attributes}}
{{end}}
}
{{end}}
{{end}}
`