-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathfmt.go
410 lines (376 loc) · 7.18 KB
/
fmt.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
package ffmt
import (
"encoding/json"
"fmt"
"reflect"
"strconv"
"unicode"
"unicode/utf8"
)
const (
invalidJSON = "null"
invalid = "<nil>"
private = "<private>"
)
type format struct {
optional
buf builder
filter map[uintptr]bool
}
func (s *format) write(b []byte) {
s.buf.Write(b)
}
func (s *format) writeByte(b byte) {
s.buf.WriteByte(b)
}
func (s *format) writeString(str string) {
s.buf.WriteString(str)
}
func (s *format) writeFormat(format string, a ...interface{}) {
fmt.Fprintf(s.buf, format, a...)
}
func (s *format) fmt(va reflect.Value, depth int) {
if !va.IsValid() {
s.nilBuf()
return
}
if va.Kind() == reflect.Ptr && va.IsNil() {
s.nilBuf()
return
}
v := va
if depth >= s.depth {
s.defaultBuf(v)
return
}
if s.getString(v) {
return
}
for v.Kind() == reflect.Ptr {
if s.opt.IsCanDefaultString() {
if s.filter[v.Pointer()] {
s.xxBuf(v, v.Pointer())
return
}
s.filter[v.Pointer()] = true
}
v = v.Elem()
if !v.IsValid() {
s.nilBuf()
return
}
switch s.style {
case StylePjson:
default:
s.writeByte('&')
}
if s.getString(va) {
return
}
}
s.switchType(v, depth)
}
func (s *format) switchType(v reflect.Value, depth int) {
switch v.Kind() {
case reflect.Invalid:
s.nilBuf()
case reflect.Struct:
switch s.style {
case StylePjson:
s.mapBuf(reflect.ValueOf(struct2Map(v)), depth)
default:
s.structBuf(v, depth)
}
case reflect.Map:
s.mapBuf(v, depth)
case reflect.Array, reflect.Slice:
s.sliceBuf(v, depth)
case reflect.String:
s.stringBuf(v)
case reflect.Func:
s.funcBuf(v)
case reflect.Uintptr:
s.xxBuf(v, v.Uint())
case reflect.Chan, reflect.Ptr, reflect.UnsafePointer:
s.xxBuf(v, v.Pointer())
case reflect.Interface:
v = v.Elem()
if v.IsValid() {
s.fmt(v, depth)
} else {
s.nilBuf()
}
default:
s.defaultBuf(v)
}
}
// depthBuf write buffer with depth
func (s *format) depthBuf(i int) {
s.writeByte('\n')
for k := 0; k < i; k++ {
s.writeByte(Space)
}
}
// nilBuf write buffer with nil
func (s *format) nilBuf() {
switch s.style {
case StylePjson:
s.writeString(invalidJSON)
default:
s.writeString(invalid)
}
}
// defaultBuf write buffer with default string
func (s *format) defaultBuf(v reflect.Value) {
s.nameBuf(v.Type())
switch s.style {
case StyleP:
s.writeByte('(')
s.writeFormat("%#v", v.Interface())
s.writeByte(')')
case StylePjson:
d, _ := json.Marshal(v.Interface())
s.write(d)
default:
s.writeFormat("%+v", v.Interface())
}
return
}
// stringBuf write buffer with string
func (s *format) stringBuf(v reflect.Value) {
switch s.style {
case StyleP:
s.defaultBuf(v)
case StylePuts, StylePjson:
s.writeString(strconv.Quote(v.String()))
default:
s.writeString(v.String())
}
return
}
// funcBuf write buffer with func address
func (s *format) funcBuf(v reflect.Value) {
switch s.style {
case StylePjson:
s.writeByte('"')
defer s.writeByte('"')
case StyleP:
s.writeByte('<')
defer s.writeByte('>')
}
s.writeString("func(")
t := v.Type()
if t.NumIn() != 0 {
for i := 0; ; {
s.writeString(t.In(i).String())
i++
if i == t.NumIn() {
break
}
s.writeByte(',')
}
}
s.writeString(")(")
if t.NumOut() != 0 {
for i := 0; ; {
s.writeString(t.Out(i).String())
i++
if i == t.NumOut() {
break
}
s.writeByte(',')
}
}
s.writeByte(')')
s.writeFormat("(0x%020x)", v.Pointer())
return
}
// xxBuf write buffer with hex format
func (s *format) xxBuf(v reflect.Value, i interface{}) {
switch s.style {
case StylePjson:
s.writeByte('"')
defer s.writeByte('"')
case StyleP:
s.writeByte('<')
defer s.writeByte('>')
}
s.nameBuf(v.Type())
s.writeFormat("(0x%020x)", i)
return
}
// structBuf write buffer with struct
func (s *format) structBuf(v reflect.Value, depth int) {
s.nameBuf(v.Type())
s.writeByte('{')
t := v.Type()
for i := 0; i != t.NumField(); i++ {
f := t.Field(i)
v0 := v.Field(i)
s.depthBuf(depth + 1)
s.writeString(f.Name)
s.writeString(colSym)
if isPrivateName(f.Name) {
s.writeString(private)
} else {
s.fmt(v0, depth+1)
}
}
s.depthBuf(depth)
s.writeByte('}')
return
}
// mapBuf write buffer with map
func (s *format) mapBuf(v reflect.Value, depth int) {
mk := v.MapKeys()
valueSlice(mk).Sort()
s.nameBuf(v.Type())
s.writeByte('{')
for i := 0; i != len(mk); i++ {
k := mk[i]
switch s.style {
case StylePjson:
if i != 0 {
s.depthBuf(depth)
s.writeByte(',')
} else {
s.depthBuf(depth + 1)
}
default:
s.depthBuf(depth + 1)
}
s.fmt(k, s.depth-1)
s.writeString(colSym)
s.fmt(v.MapIndex(k), depth+1)
}
s.depthBuf(depth)
s.writeByte('}')
return
}
// sliceBuf write buffer with slice
func (s *format) sliceBuf(v reflect.Value, depth int) {
s.nameBuf(v.Type())
s.writeByte('[')
for i := 0; i != v.Len(); i++ {
switch s.style {
case StylePjson:
if i != 0 {
s.depthBuf(depth)
s.writeByte(',')
} else {
s.depthBuf(depth + 1)
}
default:
s.depthBuf(depth + 1)
}
s.fmt(v.Index(i), depth+1)
}
s.depthBuf(depth)
s.writeByte(']')
return
}
// nameBuf write buffer with type name
func (s *format) nameBuf(t reflect.Type) bool {
switch s.style {
case StyleP:
switch t.Kind() {
case reflect.Map:
s.writeString("map[")
s.nameBuf(t.Key())
s.writeByte(']')
return s.nameBuf(t.Elem())
case reflect.Slice:
s.writeString("[]")
return s.nameBuf(t.Elem())
case reflect.Array:
s.writeByte('[')
s.writeString(strconv.FormatInt(int64(t.Len()), 10))
s.writeByte(']')
return s.nameBuf(t.Elem())
case reflect.Ptr:
s.writeByte('*')
return s.nameBuf(t.Elem())
default:
if pkg := t.PkgPath(); pkg != "" {
s.writeString(pkg)
s.writeByte('.')
}
if t.Name() != "" {
s.writeString(t.Name())
} else {
s.writeString(t.String())
}
return true
}
}
return false
}
// getString write buffer with default string
// returns true if can't default string
func (s *format) getString(v reflect.Value) bool {
if !s.opt.IsCanDefaultString() {
return false
}
switch s.style {
case StylePjson:
r := getString(v)
if r == "" {
return false
}
vv, _ := json.Marshal(v.Interface())
s.write(vv)
case StyleP:
r := getString(v)
if r == "" {
return false
}
s.writeByte('<')
s.writeString(r)
s.writeByte('>')
default:
r := getString(v)
if r == "" {
return false
}
s.writeString(r)
}
return true
}
// getString return default string
func getString(v reflect.Value) string {
if v.Kind() == reflect.Interface {
if v.IsNil() {
return ""
}
return getString(v.Elem())
}
if !v.CanInterface() {
return ""
}
i := v.Interface()
if e, b := i.(fmt.Stringer); b && e != nil {
return e.String()
}
if e, b := i.(fmt.GoStringer); b && e != nil {
return e.GoString()
}
return ""
}
// isPrivateName returns it is a private name
func isPrivateName(name string) bool {
ch, _ := utf8.DecodeRuneInString(name)
return !unicode.IsUpper(ch)
}
// struct2Map returns map from struct
func struct2Map(v reflect.Value) map[string]interface{} {
t := v.Type()
data := map[string]interface{}{}
for i := 0; i < t.NumField(); i++ {
f := t.Field(i)
if isPrivateName(f.Name) {
continue
}
data[f.Name] = v.Field(i).Interface()
}
return data
}