forked from ChimeraCoder/gojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson-to-struct.go
376 lines (348 loc) · 11 KB
/
json-to-struct.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
// gojson generates go struct defintions from JSON documents
//
// Reads from stdin and prints to stdout
//
// Example:
// curl -s https://api.github.com/repos/chimeracoder/gojson | gojson -name=Repository
//
// Output:
// package main
//
// type Repository struct {
// ArchiveURL string `json:"archive_url"`
// AssigneesURL string `json:"assignees_url"`
// BlobsURL string `json:"blobs_url"`
// BranchesURL string `json:"branches_url"`
// CloneURL string `json:"clone_url"`
// CollaboratorsURL string `json:"collaborators_url"`
// CommentsURL string `json:"comments_url"`
// CommitsURL string `json:"commits_url"`
// CompareURL string `json:"compare_url"`
// ContentsURL string `json:"contents_url"`
// ContributorsURL string `json:"contributors_url"`
// CreatedAt string `json:"created_at"`
// DefaultBranch string `json:"default_branch"`
// Description string `json:"description"`
// DownloadsURL string `json:"downloads_url"`
// EventsURL string `json:"events_url"`
// Fork bool `json:"fork"`
// Forks float64 `json:"forks"`
// ForksCount float64 `json:"forks_count"`
// ForksURL string `json:"forks_url"`
// FullName string `json:"full_name"`
// GitCommitsURL string `json:"git_commits_url"`
// GitRefsURL string `json:"git_refs_url"`
// GitTagsURL string `json:"git_tags_url"`
// GitURL string `json:"git_url"`
// HasDownloads bool `json:"has_downloads"`
// HasIssues bool `json:"has_issues"`
// HasWiki bool `json:"has_wiki"`
// Homepage interface{} `json:"homepage"`
// HooksURL string `json:"hooks_url"`
// HtmlURL string `json:"html_url"`
// ID float64 `json:"id"`
// IssueCommentURL string `json:"issue_comment_url"`
// IssueEventsURL string `json:"issue_events_url"`
// IssuesURL string `json:"issues_url"`
// KeysURL string `json:"keys_url"`
// LabelsURL string `json:"labels_url"`
// Language string `json:"language"`
// LanguagesURL string `json:"languages_url"`
// MasterBranch string `json:"master_branch"`
// MergesURL string `json:"merges_url"`
// MilestonesURL string `json:"milestones_url"`
// MirrorURL interface{} `json:"mirror_url"`
// Name string `json:"name"`
// NetworkCount float64 `json:"network_count"`
// NotificationsURL string `json:"notifications_url"`
// OpenIssues float64 `json:"open_issues"`
// OpenIssuesCount float64 `json:"open_issues_count"`
// Owner struct {
// AvatarURL string `json:"avatar_url"`
// EventsURL string `json:"events_url"`
// FollowersURL string `json:"followers_url"`
// FollowingURL string `json:"following_url"`
// GistsURL string `json:"gists_url"`
// GravatarID string `json:"gravatar_id"`
// HtmlURL string `json:"html_url"`
// ID float64 `json:"id"`
// Login string `json:"login"`
// OrganizationsURL string `json:"organizations_url"`
// ReceivedEventsURL string `json:"received_events_url"`
// ReposURL string `json:"repos_url"`
// SiteAdmin bool `json:"site_admin"`
// StarredURL string `json:"starred_url"`
// SubscriptionsURL string `json:"subscriptions_url"`
// Type string `json:"type"`
// URL string `json:"url"`
// } ` json:"owner"`
// Private bool `json:"private"`
// PullsURL string `json:"pulls_url"`
// PushedAt string `json:"pushed_at"`
// Size float64 `json:"size"`
// SshURL string `json:"ssh_url"`
// StargazersURL string `json:"stargazers_url"`
// StatusesURL string `json:"statuses_url"`
// SubscribersURL string `json:"subscribers_url"`
// SubscriptionURL string `json:"subscription_url"`
// SvnURL string `json:"svn_url"`
// TagsURL string `json:"tags_url"`
// TeamsURL string `json:"teams_url"`
// TreesURL string `json:"trees_url"`
// UpdatedAt string `json:"updated_at"`
// URL string `json:"url"`
// Watchers float64 `json:"watchers"`
// WatchersCount float64 `json:"watchers_count"`
// }
package json2struct
import (
"encoding/json"
"fmt"
"go/format"
"io"
"math"
"reflect"
"sort"
"strconv"
"strings"
"unicode"
)
// commonInitialisms is a set of common initialisms.
// Only add entries that are highly unlikely to be non-initialisms.
// For instance, "ID" is fine (Freudian code is rare), but "AND" is not.
var commonInitialisms = map[string]bool{
"API": true,
"ASCII": true,
"CPU": true,
"CSS": true,
"DNS": true,
"EOF": true,
"GUID": true,
"HTML": true,
"HTTP": true,
"HTTPS": true,
"ID": true,
"IP": true,
"JSON": true,
"LHS": true,
"QPS": true,
"RAM": true,
"RHS": true,
"RPC": true,
"SLA": true,
"SMTP": true,
"SSH": true,
"TLS": true,
"TTL": true,
"UI": true,
"UID": true,
"UUID": true,
"URI": true,
"URL": true,
"UTF8": true,
"VM": true,
"XML": true,
}
var intToWordMap = []string{
"zero",
"one",
"two",
"three",
"four",
"five",
"six",
"seven",
"eight",
"nine",
}
// Given a JSON string representation of an object and a name structName,
// attemp to generate a struct definition
func Generate(input io.Reader, structName, pkgName string) ([]byte, error) {
var iresult interface{}
var result map[string]interface{}
if err := json.NewDecoder(input).Decode(&iresult); err != nil {
return nil, err
}
switch iresult := iresult.(type) {
case map[string]interface{}:
result = iresult
case []map[string]interface{}:
if len(iresult) > 0 {
result = iresult[0]
} else {
return nil, fmt.Errorf("empty array")
}
case []interface{}:
src := fmt.Sprintf("package %s\n\ntype %s %s\n",
pkgName,
structName,
"[]interface{}")
return []byte(src), nil
default:
return nil, fmt.Errorf("unexpected type: %T", iresult)
}
src := fmt.Sprintf("package %s\ntype %s %s}",
pkgName,
structName,
generateTypes(result, 0))
formatted, err := format.Source([]byte(src))
if err != nil {
err = fmt.Errorf("error formatting: %s, was formatting\n%s", err, src)
}
return formatted, err
}
// Generate go struct entries for a map[string]interface{} structure
func generateTypes(obj map[string]interface{}, depth int) string {
structure := "struct {"
keys := make([]string, 0, len(obj))
for key := range obj {
keys = append(keys, key)
}
sort.Strings(keys)
for _, key := range keys {
value := obj[key]
valueType := typeForValue(value)
//If a nested value, recurse
switch value := value.(type) {
case []map[string]interface{}:
valueType = "[]" + generateTypes(value[0], depth+1) + "}"
case map[string]interface{}:
valueType = generateTypes(value, depth+1) + "}"
}
fieldName := fmtFieldName(stringifyFirstChar(key))
structure += fmt.Sprintf("\n%s %s `json:\"%s\"`",
fieldName,
valueType,
key)
}
return structure
}
// fmtFieldName formats a string as a struct key
//
// Example:
// fmtFieldName("foo_id")
// Output: FooID
func fmtFieldName(s string) string {
name := lintFieldName(s)
runes := []rune(name)
for i, c := range runes {
ok := unicode.IsLetter(c) || unicode.IsDigit(c)
if i == 0 {
ok = unicode.IsLetter(c)
}
if !ok {
runes[i] = '_'
}
}
return string(runes)
}
func lintFieldName(name string) string {
// Fast path for simple cases: "_" and all lowercase.
if name == "_" {
return name
}
for len(name) > 0 && name[0] == '_' {
name = name[1:]
}
allLower := true
for _, r := range name {
if !unicode.IsLower(r) {
allLower = false
break
}
}
if allLower {
runes := []rune(name)
if u := strings.ToUpper(name); commonInitialisms[u] {
copy(runes[0:], []rune(u))
} else {
runes[0] = unicode.ToUpper(runes[0])
}
return string(runes)
}
// Split camelCase at any lower->upper transition, and split on underscores.
// Check each word for common initialisms.
runes := []rune(name)
w, i := 0, 0 // index of start of word, scan
for i+1 <= len(runes) {
eow := false // whether we hit the end of a word
if i+1 == len(runes) {
eow = true
} else if runes[i+1] == '_' {
// underscore; shift the remainder forward over any run of underscores
eow = true
n := 1
for i+n+1 < len(runes) && runes[i+n+1] == '_' {
n++
}
// Leave at most one underscore if the underscore is between two digits
if i+n+1 < len(runes) && unicode.IsDigit(runes[i]) && unicode.IsDigit(runes[i+n+1]) {
n--
}
copy(runes[i+1:], runes[i+n+1:])
runes = runes[:len(runes)-n]
} else if unicode.IsLower(runes[i]) && !unicode.IsLower(runes[i+1]) {
// lower->non-lower
eow = true
}
i++
if !eow {
continue
}
// [w,i) is a word.
word := string(runes[w:i])
if u := strings.ToUpper(word); commonInitialisms[u] {
// All the common initialisms are ASCII,
// so we can replace the bytes exactly.
copy(runes[w:], []rune(u))
} else if strings.ToLower(word) == word {
// already all lowercase, and not the first word, so uppercase the first character.
runes[w] = unicode.ToUpper(runes[w])
}
w = i
}
return string(runes)
}
// generate an appropriate struct type entry
func typeForValue(value interface{}) string {
//Check if this is an array
if objects, ok := value.([]interface{}); ok {
types := make(map[reflect.Type]bool, 0)
for _, o := range objects {
types[reflect.TypeOf(o)] = true
}
if len(types) == 1 {
return "[]" + typeForValue(objects[0])
}
return "[]interface{}"
} else if object, ok := value.(map[string]interface{}); ok {
return generateTypes(object, 0) + "}"
} else if reflect.TypeOf(value) == nil {
return "interface{}"
}
v := reflect.TypeOf(value).Name()
if v == "float64" {
v = disambiguateFloatInt(value)
}
return v
}
// All numbers will initially be read as float64
// If the number appears to be an integer value, use int instead
func disambiguateFloatInt(value interface{}) string {
const epsilon = .0001
vfloat := value.(float64)
if math.Abs(vfloat-math.Floor(vfloat+epsilon)) < epsilon {
var tmp int = 1
return reflect.TypeOf(tmp).Name()
}
return reflect.TypeOf(value).Name()
}
// convert first character ints to strings
func stringifyFirstChar(str string) string {
first := str[:1]
i, err := strconv.ParseInt(first, 10, 8)
if err != nil {
return str
}
return intToWordMap[i] + "_" + str[1:]
}