-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfields.go
93 lines (86 loc) · 1.9 KB
/
fields.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
package tower
import (
"encoding/json"
"fmt"
"sort"
"strconv"
"strings"
)
type Fields map[string]any
// F Alias to tower.Fields.
type F = Fields
var (
_ Summary = (Fields)(nil)
_ SummaryWriter = (Fields)(nil)
)
// Summary Returns a short summary of this type.
func (f Fields) Summary() string {
s := &strings.Builder{}
lw := NewLineWriter(s).LineBreak("\n").Build()
f.WriteSummary(lw)
return s.String()
}
// WriteSummary Writes the Summary() string to the writer instead of being allocated as value.
func (f Fields) WriteSummary(w LineWriter) {
prefixLength := 0
keys := make([]string, 0, len(f))
for k := range f {
if prefixLength < len(k) {
prefixLength = len(k)
}
keys = append(keys, k)
}
sort.Strings(keys)
for i, k := range keys {
v := f[k]
if i > 0 {
w.WriteLineBreak()
}
i++
w.WriteIndent()
w.WritePrefix()
_, _ = fmt.Fprintf(w, "%-*s: ", prefixLength, k)
if v == nil {
_, _ = w.WriteString("null")
w.WriteSuffix()
continue
}
switch v := v.(type) {
case SummaryWriter:
if _, ok := v.(Fields); ok {
w.WriteLineBreak()
}
v.WriteSummary(NewLineWriter(w).Indent(" ").Build())
case Summary:
_, _ = w.WriteString(v.Summary())
case fmt.Stringer:
_, _ = w.WriteString(v.String())
case json.RawMessage:
if len(v) <= 32 {
s := strconv.Quote(string(v))
_, _ = w.WriteString(s)
} else {
_, _ = w.WriteString("[...]")
}
case []byte:
if len(v) <= 32 {
s := strconv.Quote(string(v))
_, _ = w.WriteString(s)
} else {
_, _ = w.WriteString("[...]")
}
case string:
if len(v) <= 32 {
s := strconv.Quote(v)
_, _ = w.WriteString(s)
} else {
_, _ = w.WriteString("[...]")
}
case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64, float32, float64, complex64, complex128:
_, _ = fmt.Fprintf(w, "%v", v)
default:
_, _ = w.WriteString("[object]")
}
w.WriteSuffix()
}
}