forked from ivarg/goxsd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate.go
267 lines (220 loc) · 5.28 KB
/
generate.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
package main
import (
"bytes"
"fmt"
"io"
"strings"
"text/template"
"golang.org/x/tools/imports"
)
var (
// Struct field generated from an element attribute
attr = `{{ define "Attr" }}{{ printf " %s " (lintTitle .Name) }}{{ printf "%s ` + "`xml:\\\"%s%s,attr\\\"`" + `" (lint .Type) .Name (omitEmpty .OmitEmpty) }}
{{ end }}`
// Struct field generated from an element child element
child = `{{ define "Child" }}{{ printf " %s " (lintTitle .Name) }}{{ if .List }}[]{{ end }}{{ printf "%s ` + "`xml:\\\"%s%s\\\"`" + `" (typeName (fieldType .)) .Name (omitEmpty .OmitEmpty) }}
{{ end }}`
// Struct field generated from the character data of an element
cdata = `{{ define "Cdata" }}{{ printf "%s %s ` + "`xml:\\\",cdata\\\"`" + `" (lintTitle .Name) (lint .Type) }}
{{ end }}`
// Struct generated from a non-trivial element (with children and/or attributes)
elem = `{{ printf "// %s is generated from an XSD element\ntype %s struct {\n" (typeName .Name) (typeName .Name) }}{{ range $a := .Attribs }}{{ template "Attr" $a }}{{ end }}{{ range $c := .Children }}{{ template "Child" $c }}{{ end }} {{ if .Cdata }}{{ template "Cdata" . }}{{ end }} }
`
)
var (
// The initialism pairs are based on the commonInitialisms found in golang/lint
// https://github.com/golang/lint/blob/4946cea8b6efd778dc31dc2dbeb919535e1b7529/lint.go#L698-L738
//
initialismPairs = []string{
"Api", "API",
"Ascii", "ASCII",
"Cpu", "CPU",
"Css", "CSS",
"Dns", "DNS",
"Eof", "EOF",
"Guid", "GUID",
"Html", "HTML",
"Https", "HTTPS",
"Http", "HTTP",
"Id", "ID",
"Ip", "IP",
"Json", "JSON",
"Lhs", "LHS",
"Qps", "QPS",
"Ram", "RAM",
"Rhs", "RHS",
"Rpc", "RPC",
"Sla", "SLA",
"Smtp", "SMTP",
"Sql", "SQL",
"Ssh", "SSH",
"Tcp", "TCP",
"Tls", "TLS",
"Ttl", "TTL",
"Udp", "UDP",
"Uid", "UID",
"Ui", "UI",
"Uuid", "UUID",
"Uri", "URI",
"Url", "URL",
"Utf8", "UTF8",
"Vm", "VM",
"Xml", "XML",
"Xsrf", "XSRF",
"Xss", "XSS",
}
initialisms = strings.NewReplacer(initialismPairs...)
)
// Generator is responsible for generating Go structs based on a given XML
// schema tree.
type generator struct {
pkg string
prefix string
exported bool
types map[string]struct{}
}
func (g generator) do(out io.Writer, roots []*xmlTree) error {
g.types = make(map[string]struct{})
tt, err := prepareTemplates(g.prefix, g.exported)
if err != nil {
return fmt.Errorf("could not prepare templates: %s", err)
}
var res bytes.Buffer
if g.pkg != "" {
fmt.Fprintf(&res, `
// generated by goxsd; DO NOT EDIT
package %s
import "time"
var _ = time.Parse
type DurationType time.Duration
`, g.pkg)
}
for _, e := range roots {
if err := g.execute(e, tt, &res); err != nil {
return err
}
}
buf, err := imports.Process("", res.Bytes(), &imports.Options{
Fragment: true,
Comments: true,
TabIndent: true,
TabWidth: 8,
})
if err != nil {
return err
}
if _, err := io.Copy(out, bytes.NewBuffer(buf)); err != nil {
return err
}
return nil
}
func (g generator) execute(root *xmlTree, tt *template.Template, out io.Writer) error {
if _, ok := g.types[root.Name]; ok {
return nil
}
if err := tt.Execute(out, root); err != nil {
return err
}
g.types[root.Name] = struct{}{}
for _, e := range root.Children {
if !primitiveType(e) {
if err := g.execute(e, tt, out); err != nil {
return err
}
}
}
return nil
}
func prepareTemplates(prefix string, exported bool) (*template.Template, error) {
typeName := func(name string) string {
if goPrimitiveType(name) {
return name
}
if prefix != "" {
name = prefix + strings.Title(name)
}
if exported {
name = strings.Title(name)
}
return lint(name)
}
omitEmpty := func(empty bool) string {
if !empty {
return ""
}
return ",omitempty"
}
fmap := template.FuncMap{
"lint": lint,
"lintTitle": lintTitle,
"typeName": typeName,
"fieldType": fieldType,
"omitEmpty": omitEmpty,
}
tt := template.New("yyy").Funcs(fmap)
if _, err := tt.Parse(attr); err != nil {
return nil, err
}
if _, err := tt.Parse(cdata); err != nil {
return nil, err
}
if _, err := tt.Parse(child); err != nil {
return nil, err
}
if _, err := tt.Parse(elem); err != nil {
return nil, err
}
return tt, nil
}
// If this is a chardata field, the field type must point to a
// struct, even if the element type is a built-in primitive.
func fieldType(e *xmlTree) (res string) {
if e.Cdata {
res = e.Name
} else {
res = e.Type
}
if !e.List && e.OmitEmpty {
res = "*" + res
}
return
}
func omitEmpty(e *xmlTree) string {
if e.OmitEmpty {
return ",omitempty"
}
return ""
}
func primitiveType(e *xmlTree) bool {
if e.Cdata {
return false
}
return goPrimitiveType(e.Type)
}
func goPrimitiveType(t string) bool {
t = strings.Replace(t, "*", "", 1)
switch t {
case "bool", "string", "int", "float64", "time.Time", "DurationType":
return true
}
return false
}
func lint(s string) string {
return dashToCamel(squish(initialisms.Replace(s)))
}
func lintTitle(s string) string {
return lint(strings.Title(s))
}
func squish(s string) string {
return strings.Replace(s, " ", "", -1)
}
func dashToCamel(name string) string {
s := strings.Split(name, "-")
if len(s) > 1 {
for i := 1; i < len(s); i++ {
s[i] = strings.Title(s[i])
}
return strings.Join(s, "")
}
return name
}