This repository has been archived by the owner on Sep 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetters.go
462 lines (395 loc) · 8.5 KB
/
getters.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
/*
Written by Daniel Krom
2018
*/
package jonson
import "reflect"
/*
At returns the jonson value at some path
can be chained or\and using multiple keys
String key will assume the jonson is object
int key will assume the jonson is slice
if the path is wrong the empty json is returned
Jonson.ParseUnsafe([]byte("{\"foo\" : \"bar\"}")).At("keyThatDoesNotExists").At("subKey", 3, 6 ,90)
At("key","subKey",5, 7) equals to .At("key").At(5).At(7) equals to At("key",5).At(7)
*/
func (jsn *JSON) At(key interface{}, keys ...interface{}) *JSON {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
res := jsn.atLocked(key, keys...)
return res
}
/*
IsNumber returns a boolean indicates is the value is number, can be any valid number type
*/
func (jsn *JSON) IsNumber() bool {
if !jsn.isPrimitive {
return false
}
switch jsn.kind {
case reflect.Float64,
reflect.Float32,
reflect.Uint,
reflect.Uint8,
reflect.Uint16,
reflect.Uint32,
reflect.Uint64,
reflect.Int,
reflect.Int8,
reflect.Int16,
reflect.Int32,
reflect.Int64:
return true
}
return false
}
/*
IsType returns a boolean indicates if the Jonson value is that type
*/
func (jsn *JSON) IsType(p reflect.Kind) bool {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
return jsn.kind == p
}
/*
IsString -> is the value type is string
*/
func (jsn *JSON) IsString() bool {
return jsn.IsType(reflect.String)
}
/*
IsInt -> is the value type is int (default int 64)
*/
func (jsn *JSON) IsInt() bool {
return jsn.IsType(reflect.Int)
}
func (jsn *JSON) IsInt8() bool {
return jsn.IsType(reflect.Int8)
}
func (jsn *JSON) IsInt16() bool {
return jsn.IsType(reflect.Int16)
}
func (jsn *JSON) IsInt32() bool {
return jsn.IsType(reflect.Int32)
}
func (jsn *JSON) IsInt64() bool {
return jsn.IsType(reflect.Int64)
}
func (jsn *JSON) IsBool() bool {
return jsn.IsType(reflect.Bool)
}
func (jsn *JSON) IsFloat32() bool {
return jsn.IsType(reflect.Float32)
}
func (jsn *JSON) IsFloat64() bool {
return jsn.IsType(reflect.Float64)
}
func (jsn *JSON) IsUint() bool {
return jsn.IsType(reflect.Uint)
}
func (jsn *JSON) IsUint8() bool {
return jsn.IsType(reflect.Uint8)
}
func (jsn *JSON) IsUint16() bool {
return jsn.IsType(reflect.Uint16)
}
func (jsn *JSON) IsUint32() bool {
return jsn.IsType(reflect.Uint32)
}
func (jsn *JSON) IsUint64() bool {
return jsn.IsType(reflect.Uint64)
}
func (jsn *JSON) IsNil() bool {
return jsn.value == nil
}
func (jsn *JSON) IsMap() bool {
return jsn.IsType(reflect.Map)
}
func (jsn *JSON) IsSlice() bool {
return jsn.IsType(reflect.Slice)
}
func (jsn *JSON) IsPrimitive() bool {
return jsn.isPrimitive
}
func (jsn *JSON) GetInt() (isInt bool, value int) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isInt = jsn.kind == reflect.Int
if isInt {
value = jsn.value.(int)
}
return
}
func (jsn *JSON) GetUnsafeInt() (value int) {
_, value = jsn.GetInt()
return
}
func (jsn *JSON) GetInt8() (isInt8 bool, value int8) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isInt8 = jsn.kind == reflect.Int8
if isInt8 {
value = jsn.value.(int8)
}
return
}
func (jsn *JSON) GetUnsafeInt8() (value int8) {
_, value = jsn.GetInt8()
return
}
func (jsn *JSON) GetInt16() (isInt16 bool, value int16) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isInt16 = jsn.kind == reflect.Int16
if isInt16 {
value = jsn.value.(int16)
}
return
}
func (jsn *JSON) GetUnsafeInt16() (value int16) {
_, value = jsn.GetInt16()
return
}
func (jsn *JSON) GetInt32() (isInt32 bool, value int32) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isInt32 = jsn.kind == reflect.Int32
if isInt32 {
value = jsn.value.(int32)
}
return
}
func (jsn *JSON) GetUnsafeInt32() (value int32) {
_, value = jsn.GetInt32()
return
}
func (jsn *JSON) GetInt64() (isInt64 bool, value int64) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isInt64 = jsn.kind == reflect.Int64
if isInt64 {
value = jsn.value.(int64)
}
return
}
func (jsn *JSON) GetUnsafeInt64() (value int64) {
_, value = jsn.GetInt64()
return
}
func (jsn *JSON) GetFloat32() (isFloat32 bool, value float32) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isFloat32 = jsn.kind == reflect.Float32
if isFloat32 {
value = jsn.value.(float32)
}
return
}
func (jsn *JSON) GetUnsafeFloat32() (value float32) {
_, value = jsn.GetFloat32()
return
}
func (jsn *JSON) GetFloat64() (isFloat64 bool, value float64) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isFloat64 = jsn.kind == reflect.Float64
if isFloat64 {
value = jsn.value.(float64)
}
return
}
func (jsn *JSON) GetUnsafeFloat64() (value float64) {
_, value = jsn.GetFloat64()
return
}
func (jsn *JSON) GetBool() (isBool bool, value bool) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isBool = jsn.kind == reflect.Bool
if isBool {
value = jsn.value.(bool)
}
return
}
func (jsn *JSON) GetUnsafeBool() (value bool) {
_, value = jsn.GetBool()
return
}
func (jsn *JSON) GetString() (isString bool, value string) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isString = jsn.kind == reflect.String
if isString {
value = jsn.value.(string)
}
return
}
func (jsn *JSON) GetUnsafeString() (value string) {
_, value = jsn.GetString()
return
}
func (jsn *JSON) GetMap() (isMap bool, value map[string]*JSON) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isMap = jsn.kind == reflect.Map
if isMap {
value = jsn.value.(map[string]*JSON)
}
return
}
func (jsn *JSON) GetUnsafeMap() (value map[string]*JSON) {
isMap, m := jsn.GetMap()
if isMap {
value = m
return
}
value = make(map[string]*JSON)
return
}
func (jsn *JSON) GetSlice() (isSlice bool, value []*JSON) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isSlice = jsn.kind == reflect.Slice
if isSlice {
value = jsn.value.([]*JSON)
}
return
}
func (jsn *JSON) GetUnsafeSlice() (value []*JSON) {
isSlice, m := jsn.GetSlice()
if isSlice {
value = m
return
}
value = make([]*JSON, 0)
return
}
func (jsn *JSON) GetUint() (isUint bool, value uint) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isUint = jsn.kind == reflect.Uint
if isUint {
value = jsn.value.(uint)
}
return
}
func (jsn *JSON) GetUnsafeUint() (value uint) {
_, value = jsn.GetUint()
return
}
func (jsn *JSON) GetUint8() (isUint8 bool, value uint8) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isUint8 = jsn.kind == reflect.Uint8
if isUint8 {
value = jsn.value.(uint8)
}
return
}
func (jsn *JSON) GetUnsafeUint8() (value uint8) {
_, value = jsn.GetUint8()
return
}
func (jsn *JSON) GetUint16() (isUint16 bool, value uint16) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isUint16 = jsn.kind == reflect.Uint16
if isUint16 {
value = jsn.value.(uint16)
}
return
}
func (jsn *JSON) GetUnsafeUint16() (value uint16) {
_, value = jsn.GetUint16()
return
}
func (jsn *JSON) GetUint32() (isUint32 bool, value uint32) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isUint32 = jsn.kind == reflect.Uint32
if isUint32 {
value = jsn.value.(uint32)
}
return
}
func (jsn *JSON) GetUnsafeUint32() (value uint32) {
_, value = jsn.GetUint32()
return
}
func (jsn *JSON) GetUint64() (isUint64 bool, value uint64) {
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
isUint64 = jsn.kind == reflect.Int64
if isUint64 {
value = jsn.value.(uint64)
}
return
}
func (jsn *JSON) GetUnsafeUint64() (value uint64) {
_, value = jsn.GetUint64()
return
}
func (jsn *JSON) GetObjectKeys() []string {
isMap, hMap := jsn.GetMap()
if !isMap {
return nil
}
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
keys := make([]string, len(hMap))
i := 0
for k := range hMap {
keys[i] = k
i++
}
return keys
}
func (jsn *JSON) ObjectKeyExists(key string) (exists bool) {
isMap, hMap := jsn.GetMap()
if !isMap {
return false
}
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
_, exists = hMap[key]
return
}
func (jsn *JSON) GetSliceLen() int {
isSlice, slice := jsn.GetSlice()
if !isSlice {
return 0
}
jsn.rwMutex.RLock()
defer jsn.rwMutex.RUnlock()
return len(slice)
}
func (jsn *JSON) atLocked(key interface{}, keys ...interface{}) *JSON {
var res *JSON
switch reflect.TypeOf(key).Kind() {
case reflect.Int, reflect.Uint:
if jsn.IsSlice() {
arr := jsn.value.([]*JSON)
index := key.(int)
if index < len(arr) {
res = arr[index]
}
}
break
case reflect.String:
if jsn.IsMap() {
mapKey := key.(string)
obj := jsn.value.(map[string]*JSON)
if val, ok := obj[mapKey]; ok {
res = val
}
}
break
}
if len(keys) > 0 && res != nil {
return res.atLocked(keys[0], keys[1:]...)
}
if res == nil {
res = NewEmptyJSON()
}
return res
}