-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
119 lines (105 loc) · 2.28 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
package main
import (
"reflect"
"strconv"
)
func marshalInt(val reflect.Value) []byte {
s := strconv.FormatInt(val.Int(), 10)
return []byte(s)
}
func marshalUint(val reflect.Value) []byte {
s := strconv.FormatUint(val.Uint(), 10)
return []byte(s)
}
func marshalArray(val reflect.Value) ([]byte, error) {
result := []byte{'['}
for i := 0; i < val.Len(); i++ {
res, err := Marshal(val.Index(i).Interface())
if err != nil {
return nil, err
}
result = append(result, res...)
result = append(result, ',')
}
if val.Len() > 0 {
result[len(result)-1] = ']'
} else {
result = append(result, ']')
}
return result, nil
}
func marshalStruct(val reflect.Value) ([]byte, error) {
result := []byte{'{'}
inputType := val.Type()
exportedFields := 0
for i := 0; i < inputType.NumField(); i++ {
field := inputType.Field(i)
if field.PkgPath == "" {
// This is an exported field
tag := field.Tag.Get("json")
fieldName := field.Name
if tag != "" {
fieldName = tag
}
result = append(result, []byte(fieldName)...)
result = append(result, ':')
res, err := Marshal(val.Field(i).Interface())
if err != nil {
return nil, err
}
result = append(result, res...)
result = append(result, ',')
exportedFields += 1
}
}
if exportedFields > 0 {
result[len(result)-1] = '}'
} else {
result = append(result, '}')
}
return result, nil
}
func Marshal(input interface{}) (result []byte, err error) {
inputType := reflect.TypeOf(input)
switch inputType.Kind() {
case reflect.Int:
fallthrough
case reflect.Int8:
fallthrough
case reflect.Int16:
fallthrough
case reflect.Int32:
fallthrough
case reflect.Int64:
result = append(result, marshalInt(reflect.ValueOf(input))...)
case reflect.Uint:
fallthrough
case reflect.Uint8:
fallthrough
case reflect.Uint16:
fallthrough
case reflect.Uint32:
fallthrough
case reflect.Uint64:
result = append(result, marshalUint(reflect.ValueOf(input))...)
case reflect.Array:
fallthrough
case reflect.Slice:
res, e := marshalArray(reflect.ValueOf(input))
if e != nil {
err = e
return
}
result = append(result, res...)
case reflect.Struct:
res, e := marshalStruct(reflect.ValueOf(input))
if e != nil {
err = e
return
}
result = append(result, res...)
}
return
}
func main() {
}