-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencode.go
194 lines (150 loc) · 3.1 KB
/
encode.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
package mathematica
import (
"bufio"
"bytes"
"fmt"
"reflect"
"strconv"
)
type CantEncode struct {
Kind reflect.Kind
}
func (c CantEncode) Error() string {
return fmt.Sprint("go-mathematica can't marshall type ", c.Kind)
}
type Marshaler interface {
MarshalMathematica() ([]byte, error)
}
func Marshal(v interface{}) ([]byte, error) {
bbuf := new(bytes.Buffer)
bio := bufio.NewWriter(bbuf)
e := encodeValue(bio, v)
if e != nil {
return []byte{}, e
}
bio.Flush()
return bbuf.Bytes(), e
}
func encodeValue(buf *bufio.Writer, v interface{}) (e error) {
if m, ok := v.(Marshaler); ok {
if m != nil {
var byt []byte
byt, e = m.MarshalMathematica()
buf.Write(byt)
return
}
}
// quick-cases to skip reflection
switch t := v.(type) {
case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64:
_, e = fmt.Fprint(buf, v)
return
case float32, float64:
_, e = fmt.Fprint(buf, v)
return
case bool:
return encodeBool(buf, t)
case string:
return encodeString(buf, t)
case fmt.Stringer:
return encodeString(buf, t.String())
}
vt := reflect.ValueOf(v)
return encodeValueReflect(buf, vt)
}
func encodeBool(buf *bufio.Writer, v bool) (e error) {
switch v {
case true:
_, e = buf.WriteString("True")
case false:
_, e = buf.WriteString("False")
}
return
}
func encodeString(buf *bufio.Writer, v string) (e error) {
_, e = buf.WriteString(strconv.Quote(v))
return
}
func encodeValueReflect(buf *bufio.Writer, vt reflect.Value) (e error) {
// deal with arrays and structs and other non-standard values
switch vt.Kind() {
case reflect.Array, reflect.Slice:
return encodeArray(buf, vt)
case reflect.Struct:
return encodeStruct(buf, vt)
case reflect.Map:
return encodeMap(buf, vt)
default:
return CantEncode{Kind: vt.Kind()}
}
return nil
}
func encodeArray(buf *bufio.Writer, vt reflect.Value) (e error) {
l := vt.Len()
buf.WriteByte('{')
for i := 0; i < l; i++ {
if i != 0 {
buf.WriteByte(',')
}
e = encodeValue(buf, vt.Index(i).Interface())
if e != nil {
return
}
}
buf.WriteByte('}')
return
}
func encodeStruct(buf *bufio.Writer, vt reflect.Value) (e error) {
tt := vt.Type()
n := tt.NumField()
first := true
buf.WriteString("<|")
for i := 0; i < n; i++ {
f := tt.Field(i)
if f.PkgPath != "" {
// this field is unexported!!
continue
}
fname := f.Tag.Get("mathematica")
if fname == "" {
fname = f.Name
}
if first {
first = false
} else {
buf.WriteByte(',')
}
encodeString(buf, fname)
buf.WriteString("->")
e = encodeValue(buf, vt.Field(i).Interface())
if e != nil {
return
}
}
buf.WriteString("|>")
return
}
func encodeMap(buf *bufio.Writer, vt reflect.Value) (e error) {
keys := vt.MapKeys()
kL := len(keys)
first := true
buf.WriteString("<|")
for i := 0; i < kL; i++ {
k := keys[i]
v := vt.MapIndex(k)
if first {
first = false
} else {
buf.WriteByte(',')
}
if e = encodeValue(buf, k.Interface()); e != nil {
return e
}
buf.WriteString("->")
if e = encodeValue(buf, v.Interface()); e != nil {
return e
}
}
buf.WriteString("|>")
return
}