-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjson.go
493 lines (425 loc) · 9.77 KB
/
json.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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
package jsonmap
import (
"encoding/json"
"errors"
"reflect"
"strconv"
)
// Json is our wrapper to an unmarshalled json
type Json struct {
data interface{}
}
// A Jsonizer can converts to a json
type Jsonizer interface {
JSON() *Json
}
func jsonize(j Jsonizer) *Json {
if j == nil {
return Nil()
}
if rv := reflect.ValueOf(j); rv.IsNil() {
return Nil()
}
return j.JSON()
}
// New creates an empty object Json, ie {}
func New() *Json {
return &Json{
data: make(map[string]interface{}),
}
}
// Nil creates an nil Json
func Nil() *Json {
return &Json{nil}
}
// FromBytes to creates a Json from bytes
func FromBytes(bytes []byte) *Json {
j := new(Json)
j.UnmarshalJSON(bytes)
return j
}
// FromString to creates a Json from a string
func FromString(str string) *Json {
return FromBytes([]byte(str))
}
// FromMap to creates a Json from an unmarshalled map
func FromMap(m map[string]interface{}) *Json {
return &Json{
data: m,
}
}
// Stringify formats current node to a json string
func (j *Json) Stringify() string {
return string(j.Bytes())
}
// Bytes return json bytes
func (j *Json) Bytes() []byte {
bytes, _ := j.MarshalJSON()
return bytes
}
// MarshalJSON implements marshaler interface from encoding/json encode.go
func (j *Json) MarshalJSON() ([]byte, error) {
if j.IsNil() {
return []byte("null"), nil
}
bytes, err := json.Marshal(j.data)
if err != nil {
return []byte("null"), err
}
return bytes, nil
}
// UnmarshalJSON implements unmarshaler interface from encoding/json decode.go
func (j *Json) UnmarshalJSON(data []byte) error {
if j == nil {
return errors.New("unmarshal JSON on a nil pointer")
}
return json.Unmarshal(data, &j.data)
}
// Data get uncasted data
func (j *Json) Data() interface{} {
return j.data
}
// IsNil to check if the current Json is nil
func (j *Json) IsNil() bool {
return j.data == nil
}
// IsObject to know if the current Json is an object
func (j *Json) IsObject() bool {
_, ok := (j.data).(map[string]interface{})
return ok
}
// AsObject casts underlying to object (map[string]interface{})
// Returns nil if not an object
func (j *Json) AsObject() map[string]interface{} {
if casted, ok := (j.data).(map[string]interface{}); ok {
return casted
}
return nil
}
// IsArray to check if the current Json is an array
func (j *Json) IsArray() bool {
_, ok := (j.data).([]interface{})
return ok
}
// AsArray casts underlying to array ([]interface{})
// Returns nil if not an array
func (j *Json) AsArray() []interface{} {
if casted, ok := (j.data).([]interface{}); ok {
return casted
}
return nil
}
// IsValue to check if the current Json is a type value
func (j *Json) IsValue() bool {
return !j.IsNil() && !j.IsObject() && !j.IsArray()
}
// AsString casts underlying to string
// Returns an empty string if not a string
func (j *Json) AsString() string {
if casted, ok := (j.data).(string); ok {
return casted
}
return ""
}
// AsBool casts underlying to boolean
// Returns false if not a boolean
func (j *Json) AsBool() bool {
if casted, ok := (j.data).(bool); ok {
return casted
}
return false
}
// AsInt casts underlying to int64
// Returns 0 if not an int
func (j *Json) AsInt() int64 {
switch j.data.(type) {
case json.Number:
if i, err := (j.data).(json.Number).Int64(); err != nil {
return i
}
return 0
case float32, float64:
return int64(reflect.ValueOf(j.data).Float())
case int, int8, int16, int32, int64:
return reflect.ValueOf(j.data).Int()
case uint, uint8, uint16, uint32, uint64:
return int64(reflect.ValueOf(j.data).Uint())
default:
return 0
}
}
// AsUint casts underlying to uint64
// Returns 0 if not an int
func (j *Json) AsUint() uint64 {
switch j.data.(type) {
case json.Number:
if u, err := strconv.ParseUint(j.data.(json.Number).String(), 10, 64); err != nil {
return u
}
return 0
case float32, float64:
return uint64(reflect.ValueOf(j.data).Float())
case int, int8, int16, int32, int64:
return uint64(reflect.ValueOf(j.data).Int())
case uint, uint8, uint16, uint32, uint64:
return reflect.ValueOf(j.data).Uint()
default:
return 0
}
}
// AsFloat casts underlying to float64
// Returns 0 if not a float
func (j *Json) AsFloat() float64 {
switch j.data.(type) {
case json.Number:
if f, err := (j.data).(json.Number).Float64(); err != nil {
return f
}
return 0
case float32, float64:
return reflect.ValueOf(j.data).Float()
case int, int8, int16, int32, int64:
return float64(reflect.ValueOf(j.data).Int())
case uint, uint8, uint16, uint32, uint64:
return float64(reflect.ValueOf(j.data).Uint())
default:
return 0
}
}
// Get gets the value at path of object. If not found returns Nils() value
func (j *Json) Get(path string) *Json {
keys := createPath(path)
curr := j
for _, k := range keys {
// Get as object
if o := curr.AsObject(); o != nil {
val, ok := o[k]
if !ok {
return Nil()
}
curr = &Json{val}
continue
}
// Get as array
if a := curr.AsArray(); a != nil {
// Must be an int
idx, e := strconv.Atoi(k)
if e != nil || idx < 0 || idx >= len(a) {
return Nil()
}
curr = &Json{a[idx]}
continue
}
// Not found
return Nil()
}
return curr
}
// Has checks if path is a direct property of object.
func (j *Json) Has(path string) bool {
o := j.Get(path)
return !o.IsNil()
}
// Set sets the value at path of object. If a portion of path doesn't exist, it's created.
// Arrays are created for missing index properties while objects are created for all other missing properties
func (j *Json) Set(path string, value interface{}) bool {
keys := createPath(path)
lastIndex := len(keys) - 1
// Pick value
var newValue interface{}
switch cv := value.(type) {
case Jsonizer:
newValue = jsonize(cv).data
case *Json:
newValue = cv.data
case []*Json:
datas := make([]interface{}, 0, len(cv))
for _, item := range cv {
datas = append(datas, item.data)
}
newValue = datas
case []interface{}:
newValue = cv
default:
rv := reflect.ValueOf(value)
kind := rv.Kind()
if kind == reflect.Array || kind == reflect.Slice {
l := rv.Len()
datas := make([]interface{}, l)
for i := 0; i < l; i++ {
val := rv.Index(i)
if !val.CanInterface() {
continue
}
if jsonizer, ok := val.Interface().(Jsonizer); ok {
datas[i] = jsonize(jsonizer).data
continue
}
datas[i] = val.Interface()
}
newValue = datas
} else {
newValue = value
}
}
if lastIndex == -1 {
j.data = newValue
return true
}
curr := j
for i, k := range keys {
// Get as object
if o := curr.AsObject(); o != nil {
// Assign value
if i == lastIndex {
o[k] = newValue
return true
}
if _, ok := o[k]; !ok {
o[k] = make(map[string]interface{})
}
curr = &Json{o[k]}
continue
}
// Get as array
if a := curr.AsArray(); a != nil {
// Must be an int
idx, e := strconv.Atoi(k)
if e != nil || idx < 0 || idx >= len(a) {
return false
}
// Assign value
if i == lastIndex {
a[idx] = newValue
return true
}
curr = &Json{a[idx]}
continue
}
// Value or nil => we force the rewrite
m := make(map[string]interface{})
curr.data = m
// Assign
if i == lastIndex {
m[k] = newValue
return true
}
m[k] = make(map[string]interface{})
curr = &Json{m[k]}
}
return false
}
// Unset deletes the value
func (j *Json) Unset(path string) bool {
keys := createPath(path)
curr := j
lastIndex := len(keys) - 1
for i, k := range keys {
// Get as object
if o := curr.AsObject(); o != nil {
if i == lastIndex {
delete(o, k)
return true
}
val, ok := o[k]
if !ok {
return false
}
curr = &Json{val}
continue
}
// Get as array
if a := curr.AsArray(); a != nil {
// Must be an int
idx, e := strconv.Atoi(k)
if e != nil || idx < 0 || idx >= len(a) {
return false
}
if i == lastIndex {
a[idx] = nil
return true
}
curr = &Json{a[idx]}
continue
}
// Not found
return false
}
return false
}
// Rewrite changes a path
func (j *Json) Rewrite(oldPath string, newPath string) bool {
d := j.Get(oldPath).Data()
return j.Unset(oldPath) && j.Set(newPath, d)
}
// Wrap the current json to a new json
// Example : { "pi": 3.14 }.Wrap("const") => { "const": { "pi": 3.14 }} }
// Returns the new parent or nilJson if error
func (j *Json) Wrap(path string) *Json {
wrap := New()
if !wrap.Set(path, j) {
return Nil()
}
return wrap
}
// ForEach : Iterates over elements of collection and invokes iteratee for each element.
// Iteratee functions may exit iteration early by explicitly returning false.
func (j *Json) ForEach(iteratee func(k string, v *Json) bool) {
if iteratee == nil {
return
}
if o := j.AsObject(); o != nil {
for k, v := range o {
if !iteratee(k, &Json{v}) {
break
}
}
} else if a := j.AsArray(); a != nil {
for i, v := range a {
if !iteratee(strconv.Itoa(i), &Json{v}) {
break
}
}
}
}
// Keys : creates an array of the own property names of object.
func (j *Json) Keys() []string {
var keys []string
callback := func(k string, v *Json) bool {
keys = append(keys, k)
return true
}
j.ForEach(callback)
return keys
}
// Values : creates an array of the own enumerable string keyed property values of object.
func (j *Json) Values() []*Json {
var values []*Json
callback := func(k string, v *Json) bool {
values = append(values, v)
return true
}
j.ForEach(callback)
return values
}
// Clone to clone a json
// Not the best performance cause we marshal / unmarshal
func (j *Json) Clone() *Json {
bytes, err := j.MarshalJSON()
if err != nil {
return Nil()
}
return FromBytes(bytes)
}
// Merge to merge multiples JSON into a single one
func Merge(jsons ...*Json) *Json {
res := New()
m := make(map[string]interface{})
for _, j := range jsons {
for _, k := range j.Keys() {
m[k] = j.AsObject()[k]
}
}
res.data = m
return res
}