-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmarshal.go
More file actions
430 lines (405 loc) · 10.9 KB
/
marshal.go
File metadata and controls
430 lines (405 loc) · 10.9 KB
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
// Copyright 2019 Yunion
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jsonutils
/**
jsonutils.Marshal
Convert any object to JSONObject
*/
import (
"fmt"
"reflect"
"sort"
"time"
"yunion.io/x/log"
"yunion.io/x/pkg/gotypes"
"yunion.io/x/pkg/tristate"
"yunion.io/x/pkg/util/reflectutils"
"yunion.io/x/pkg/util/timeutils"
)
func (s *sJsonMarshalSession) marshalSlice(val reflect.Value, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if val.Kind() == reflect.Slice && val.IsNil() {
if !omitEmpty {
return JSONNull
} else {
return nil
}
}
if val.Len() == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
}
objs := make([]JSONObject, 0)
for i := 0; i < val.Len(); i += 1 {
val := s.marshalValue(val.Index(i), nil, omitEmpty)
if val != nil {
objs = append(objs, val)
}
}
arr := NewArray(objs...)
if info != nil && info.ForceString {
return NewString(arr.String())
} else {
return arr
}
}
type tMapKeys []reflect.Value
func (a tMapKeys) Len() int { return len(a) }
func (a tMapKeys) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a tMapKeys) Less(i, j int) bool { return a[i].String() < a[j].String() }
func (s *sJsonMarshalSession) marshalMap(val reflect.Value, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if val.IsNil() {
if !omitEmpty {
return JSONNull
} else {
return nil
}
}
keys := val.MapKeys()
if len(keys) == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
}
// sort keys
sort.Sort(tMapKeys(keys))
objPairs := make([]JSONPair, 0)
for i := 0; i < len(keys); i += 1 {
key := keys[i]
val := s.marshalValue(val.MapIndex(key), nil, omitEmpty)
if val != nil {
objPairs = append(objPairs, JSONPair{key: fmt.Sprintf("%s", key), val: val})
}
}
dict := NewDict(objPairs...)
if info != nil && info.ForceString {
return NewString(dict.String())
} else {
return dict
}
}
func (s *sJsonMarshalSession) marshalStruct(val reflect.Value, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
objPairs := s.struct2JSONPairs(val, omitEmpty)
if len(objPairs) == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
}
dict := NewDict(objPairs...)
if info != nil && info.ForceString {
return NewString(dict.String())
} else {
return dict
}
}
func findValueByKey(pairs []JSONPair, key string) JSONObject {
for i := range pairs {
if pairs[i].key == key {
return pairs[i].val
}
}
return nil
}
func (s *sJsonMarshalSession) struct2JSONPairs(val reflect.Value, omitEmpty bool) []JSONPair {
fields := reflectutils.FetchStructFieldValueSet(val)
objPairs := make([]JSONPair, 0, len(fields))
depFields := make(map[string]string)
for i := 0; i < len(fields); i += 1 {
jsonInfo := fields[i].Info
if jsonInfo.Ignore {
continue
}
key := jsonInfo.MarshalName()
if deprecatedBy, ok := fields[i].Info.Tags[TAG_DEPRECATED_BY]; ok {
depFields[key] = deprecatedBy
continue
}
val := s.marshalValue(fields[i].Value, jsonInfo, omitEmpty)
if val != nil {
objPair := JSONPair{key: key, val: val}
objPairs = append(objPairs, objPair)
}
}
depPairs := make([]JSONPair, 0, len(depFields))
for depKey, key := range depFields {
findLoop := false
for {
if okey, ok := depFields[key]; ok {
if okey == depKey {
// loop detected
findLoop = true
break
}
key = okey
} else {
break
}
}
if findLoop {
continue
}
val := findValueByKey(objPairs, key)
if val != nil {
objPair := JSONPair{key: depKey, val: val}
depPairs = append(depPairs, objPair)
}
}
objPairs = append(objPairs, depPairs...)
return objPairs
}
func marshalInt64(val int64, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if val == 0 && info != nil && info.OmitZero && omitEmpty {
return nil
} else if info != nil && info.ForceString {
return NewString(fmt.Sprintf("%d", val))
} else {
return NewInt(val)
}
}
func marshalFloat64(val float64, info *reflectutils.SStructFieldInfo, bit int, omitEmpty bool) JSONObject {
if val == 0.0 && info != nil && info.OmitZero && omitEmpty {
return nil
} else if info != nil && info.ForceString {
return NewString(fmt.Sprintf("%f", val))
} else {
return NewFloat64(val)
}
}
func marshalFloat32(val float32, info *reflectutils.SStructFieldInfo, bit int, omitEmpty bool) JSONObject {
if val == 0.0 && info != nil && info.OmitZero && omitEmpty {
return nil
} else if info != nil && info.ForceString {
return NewString(fmt.Sprintf("%f", val))
} else {
return NewFloat32(val)
}
}
func marshalBoolean(val bool, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if !val && info != nil && info.OmitFalse && omitEmpty {
return nil
} else if info != nil && info.ForceString {
return NewString(fmt.Sprintf("%v", val))
} else {
if val {
return JSONTrue
} else {
return JSONFalse
}
}
}
func marshalTristate(val tristate.TriState, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if val.IsTrue() {
return JSONTrue
} else if val.IsFalse() {
return JSONFalse
} else {
if omitEmpty {
return nil
} else {
return JSONNull
}
}
}
func marshalString(val string, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if len(val) == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return NewString(val)
}
}
func marshalTime(val time.Time, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
if val.IsZero() {
if info != nil && info.OmitEmpty && omitEmpty {
return nil
}
return NewString("")
} else {
return NewString(timeutils.FullIsoTime(val))
}
}
func Marshal(obj interface{}) JSONObject {
if obj == nil {
return JSONNull
}
val := reflect.ValueOf(obj)
if kind := val.Kind(); val.IsZero() && kind == reflect.Ptr {
return JSONNull
}
s := newJsonMarshalSession()
mval := s.marshalValue(val, nil, true)
s.setAllNodeId()
if mval == nil {
return JSONNull
}
return mval
}
func (s *sJsonMarshalSession) marshalValue(objValue reflect.Value, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
return tryStdMarshal(objValue, func(v reflect.Value) JSONObject {
return s.marshalValueWithObjectMap(v, info, omitEmpty)
})
}
func (s *sJsonMarshalSession) marshalValueWithObjectMap(objValue reflect.Value, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
var jsonPtr *sJSONPointer
if objValue.Kind() == reflect.Ptr {
inf := objValue.Interface()
if !gotypes.IsNil(inf) {
jsonPtrNode := s.objectTrace.find(inf)
if jsonPtrNode != nil {
// loop detected!
return jsonPtrNode.pointer
}
jsonPtr = s.newJsonPointer(inf)
}
}
jsonObj := s._marshalValue(objValue, info, omitEmpty)
if jsonPtr != nil {
s.setJsonObject(jsonPtr, jsonObj)
}
return jsonObj
}
func (s *sJsonMarshalSession) _marshalValue(objValue reflect.Value, info *reflectutils.SStructFieldInfo, omitEmpty bool) JSONObject {
switch objValue.Type() {
case JSONDictPtrType, JSONArrayPtrType, JSONBoolPtrType, JSONIntPtrType, JSONFloatPtrType, JSONStringPtrType, JSONObjectType:
if objValue.IsNil() {
if omitEmpty {
return nil
} else {
return JSONNull
}
}
return objValue.Interface().(JSONObject)
case JSONDictType:
json, ok := objValue.Interface().(JSONDict)
if ok {
if len(json.data) == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return &json
}
} else {
return nil
}
case JSONArrayType:
json, ok := objValue.Interface().(JSONArray)
if ok {
if len(json.data) == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return &json
}
} else {
return nil
}
case JSONBoolType:
json, ok := objValue.Interface().(JSONBool)
if ok {
if !json.data && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return &json
}
} else {
return nil
}
case JSONIntType:
json, ok := objValue.Interface().(JSONInt)
if ok {
if json.data == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return &json
}
} else {
return nil
}
case JSONFloatType:
json, ok := objValue.Interface().(JSONFloat)
if ok {
if json.data == 0.0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return &json
}
} else {
return nil
}
case JSONStringType:
json, ok := objValue.Interface().(JSONString)
if ok {
if len(json.data) == 0 && info != nil && info.OmitEmpty && omitEmpty {
return nil
} else {
return &json
}
} else {
return nil
}
case tristate.TriStateType:
tri, ok := objValue.Interface().(tristate.TriState)
if ok {
return marshalTristate(tri, info, omitEmpty)
} else {
return nil
}
}
switch objValue.Kind() {
case reflect.Slice, reflect.Array:
return s.marshalSlice(objValue, info, omitEmpty)
case reflect.Struct:
if objValue.Type() == gotypes.TimeType {
return marshalTime(objValue.Interface().(time.Time), info, omitEmpty)
} else {
return s.marshalStruct(objValue, info, omitEmpty)
}
case reflect.Map:
return s.marshalMap(objValue, info, omitEmpty)
case reflect.String:
strValue := objValue.Convert(gotypes.StringType)
return marshalString(strValue.Interface().(string), info, omitEmpty)
case reflect.Bool:
return marshalBoolean(objValue.Interface().(bool), info, omitEmpty)
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
intValue := objValue.Convert(gotypes.Int64Type)
return marshalInt64(intValue.Interface().(int64), info, omitEmpty)
case reflect.Float32:
floatVal := objValue.Convert(gotypes.Float32Type)
return marshalFloat32(floatVal.Interface().(float32), info, 32, omitEmpty)
case reflect.Float64:
floatVal := objValue.Convert(gotypes.Float64Type)
return marshalFloat64(floatVal.Interface().(float64), info, 64, omitEmpty)
case reflect.Interface, reflect.Ptr:
if objValue.IsNil() {
if omitEmpty {
return nil
} else {
return JSONNull
}
}
return s.marshalValue(objValue.Elem(), info, omitEmpty)
default:
log.Errorf("unsupport object %s %s", objValue.Type(), objValue.Interface())
return JSONNull
}
}
func MarshalAll(obj interface{}) JSONObject {
if obj == nil {
return JSONNull
}
val := reflect.ValueOf(obj)
if kind := val.Kind(); val.IsZero() && kind == reflect.Ptr {
return JSONNull
}
s := newJsonMarshalSession()
mval := s.marshalValue(val, nil, false)
s.setAllNodeId()
if mval == nil {
return JSONNull
}
return mval
}