-
Notifications
You must be signed in to change notification settings - Fork 94
/
main.go
236 lines (203 loc) · 6.63 KB
/
main.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
package main
import (
"errors"
"fmt"
"os"
"path/filepath"
"strings"
"github.com/spf13/cobra"
"github.com/atombender/go-jsonschema/pkg/generator"
)
const (
perm755 = 0o755
perm644 = 0o644
)
var (
verbose bool
extraImports bool
onlyModels bool
defaultPackage string
defaultOutput string
schemaPackages []string
schemaOutputs []string
schemaRootTypes []string
capitalizations []string
resolveExtensions []string
yamlExtensions []string
tags []string
structNameFromTitle bool
minSizedInts bool
errFlagFormat = errors.New("flag must be in the format URI=PACKAGE")
rootCmd = &cobra.Command{
Use: "go-jsonschema FILE ...",
Short: "Generates Go code from JSON Schema files.",
Run: func(_ *cobra.Command, args []string) {
if len(args) == 0 {
abort("No arguments specified. Run with --help for usage.")
}
if defaultPackage == "" && len(schemaPackages) == 0 {
abort("Package name not specified.")
}
schemaPackageMap, err := stringSliceToStringMap(schemaPackages)
if err != nil {
abortWithErr(err)
}
schemaOutputMap, err := stringSliceToStringMap(schemaOutputs)
if err != nil {
abortWithErr(err)
}
schemaRootTypeMap, err := stringSliceToStringMap(schemaRootTypes)
if err != nil {
abortWithErr(err)
}
cfg := generator.Config{
Warner: func(message string) {
logf("Warning: %s", message)
},
ExtraImports: extraImports,
Capitalizations: capitalizations,
DefaultOutputName: defaultOutput,
DefaultPackageName: defaultPackage,
SchemaMappings: []generator.SchemaMapping{},
ResolveExtensions: resolveExtensions,
YAMLExtensions: yamlExtensions,
StructNameFromTitle: structNameFromTitle,
Tags: tags,
OnlyModels: onlyModels,
MinSizedInts: minSizedInts,
}
for _, id := range allKeys(schemaPackageMap, schemaOutputMap, schemaRootTypeMap) {
mapping := generator.SchemaMapping{SchemaID: id}
if s, ok := schemaPackageMap[id]; ok {
mapping.PackageName = s
} else {
mapping.PackageName = defaultPackage
}
if s, ok := schemaOutputMap[id]; ok {
mapping.OutputName = s
}
if s, ok := schemaRootTypeMap[id]; ok {
mapping.RootType = s
}
cfg.SchemaMappings = append(cfg.SchemaMappings, mapping)
}
generator, err := generator.New(cfg)
if err != nil {
abortWithErr(err)
}
for _, fileName := range args {
verboseLogf("Loading %s", fileName)
if err = generator.DoFile(fileName); err != nil {
abortWithErr(err)
}
}
for fileName, source := range generator.Sources() {
if fileName != "-" {
verboseLogf("Writing %s", fileName)
}
if fileName == "-" {
if _, err = os.Stdout.Write(source); err != nil {
abortWithErr(err)
}
} else {
if err := os.MkdirAll(filepath.Dir(fileName), perm755); err != nil {
abortWithErr(err)
}
w, err := os.OpenFile(fileName, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, perm644)
if err != nil {
abortWithErr(err)
}
if _, err = w.Write(source); err != nil {
abortWithErr(err)
}
_ = w.Close()
}
}
os.Exit(0)
},
}
)
func main() {
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false,
"Verbose output")
rootCmd.PersistentFlags().BoolVarP(&extraImports, "extra-imports", "e", false,
"Allow extra imports (non standard library)")
rootCmd.PersistentFlags().BoolVar(&onlyModels, "only-models", false,
"Generate only models (no unmarshal methods, no validation)")
rootCmd.PersistentFlags().StringVarP(&defaultPackage, "package", "p", "",
`Default name of package to declare Go files under, unless overridden with
--schema-package`)
rootCmd.PersistentFlags().StringVarP(&defaultOutput, "output", "o", "-",
"File to write (- for standard output)")
rootCmd.PersistentFlags().StringSliceVar(&schemaPackages, "schema-package", nil,
`Name of package to declare Go files for a specific schema ID under;
must be in the format URI=PACKAGE.`)
rootCmd.PersistentFlags().StringSliceVar(&schemaOutputs, "schema-output", nil,
`File to write (- for standard output) a specific schema ID to;
must be in the format URI=FILENAME.`)
rootCmd.PersistentFlags().StringSliceVar(&schemaRootTypes, "schema-root-type", nil,
`Override name to use for the root type of a specific schema ID;
must be in the format URI=TYPE. By default, it is derived from the file name.`)
rootCmd.PersistentFlags().StringSliceVar(&capitalizations, "capitalization", nil,
`Specify a preferred Go capitalization for a string. For example, by default a field
named 'id' becomes 'Id'. With --capitalization ID, it will be generated as 'ID'.`)
rootCmd.PersistentFlags().StringSliceVar(&resolveExtensions, "resolve-extension", nil,
`Add a file extension that is used to resolve schema names, e.g. {"$ref": "./foo"} will
also look for foo.json if --resolve-extension json is provided.`)
rootCmd.PersistentFlags().StringSliceVar(&yamlExtensions, "yaml-extension", []string{".yml", ".yaml"},
`Add a file extension that should be recognized as YAML. Default are .yml, .yaml.`)
rootCmd.PersistentFlags().BoolVarP(&structNameFromTitle, "struct-name-from-title", "t", false,
"Use the schema title as the generated struct name")
rootCmd.PersistentFlags().StringSliceVar(&tags, "tags", []string{"json", "yaml", "mapstructure"},
`Specify which struct tags to generate. Defaults are json, yaml, mapstructure`)
rootCmd.PersistentFlags().BoolVar(
&minSizedInts,
"min-sized-ints",
false,
"Uses sized int and uint values based on the min and max values for the field")
abortWithErr(rootCmd.Execute())
}
func abortWithErr(err error) {
if err != nil {
abort(err.Error())
}
}
func abort(message string) {
logf("Failed: %s", message)
os.Exit(1)
}
func stringSliceToStringMap(s []string) (map[string]string, error) {
result := make(map[string]string, len(s))
for _, p := range s {
i := strings.IndexRune(p, '=')
if i == -1 {
return nil, fmt.Errorf("%w: %q", errFlagFormat, p)
}
result[p[0:i]] = p[i+1:]
}
return result, nil
}
func allKeys(in ...map[string]string) []string {
type dummy struct{}
keySet := map[string]dummy{}
for _, m := range in {
for k := range m {
keySet[k] = dummy{}
}
}
result := make([]string, 0, len(keySet))
for k := range keySet {
result = append(result, k)
}
return result
}
func logf(format string, args ...interface{}) {
fmt.Fprint(os.Stderr, "go-jsonschema: ")
fmt.Fprintf(os.Stderr, format, args...)
fmt.Fprint(os.Stderr, "\n")
}
func verboseLogf(format string, args ...interface{}) {
if verbose {
logf(format, args...)
}
}