-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytes.go
183 lines (165 loc) · 4.3 KB
/
bytes.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
package pretty
import (
"encoding/hex"
"io"
"reflect"
"github.com/pierrre/go-libs/syncutil"
"github.com/pierrre/pretty/internal"
"github.com/pierrre/pretty/internal/indent"
)
var bytesType = reflect.TypeFor[[]byte]()
// BytesHexDumpValueWriter is a [ValueWriter] that handles []byte and writes them with [hex.Dumper].
//
// It should be created with [NewBytesHexDumpValueWriter].
type BytesHexDumpValueWriter struct {
// ShowLen shows the len.
// Default: true.
ShowLen bool
// ShowCap shows the cap.
// Default: true.
ShowCap bool
// ShowAddr shows the address.
// Default: false.
ShowAddr bool
// MaxLen is the maximum length of the bytes.
// Default: 0 (no limit).
MaxLen int
}
// NewBytesHexDumpValueWriter creates a new [BytesHexDumpValueWriter].
func NewBytesHexDumpValueWriter() *BytesHexDumpValueWriter {
return &BytesHexDumpValueWriter{
ShowLen: true,
ShowCap: true,
ShowAddr: false,
MaxLen: 0,
}
}
// WriteValue implements [ValueWriter].
func (vw *BytesHexDumpValueWriter) WriteValue(st *State, v reflect.Value) bool {
if v.Type() != bytesType {
return false
}
if checkNil(st.Writer, v) {
return true
}
b := v.Bytes()
writeBytesHexDumpCommon(st, v, b, vw.ShowLen, vw.ShowCap, vw.ShowAddr, vw.MaxLen)
return true
}
// Bytesable is an interface that can return a []byte.
type Bytesable interface {
Bytes() []byte
}
var bytesableType = reflect.TypeFor[Bytesable]()
// BytesableHexDumpValueWriter is a [ValueWriter] that handles [Bytesable] and writes thems with [hex.Dumper].
//
// It should be created with [NewBytesableHexDumpValueWriter].
type BytesableHexDumpValueWriter struct {
// ShowLen shows the len.
// Default: true.
ShowLen bool
// ShowCap shows the cap.
// Default: true.
ShowCap bool
// ShowAddr shows the address.
// Default: false.
ShowAddr bool
// MaxLen is the maximum length of the bytes.
// Default: 0 (no limit).
MaxLen int
}
// NewBytesableHexDumpValueWriter creates a new [BytesableHexDumpValueWriter].
func NewBytesableHexDumpValueWriter() *BytesableHexDumpValueWriter {
return &BytesableHexDumpValueWriter{
ShowLen: true,
ShowCap: true,
ShowAddr: false,
MaxLen: 0,
}
}
// WriteValue implements [ValueWriter].
func (vw *BytesableHexDumpValueWriter) WriteValue(st *State, v reflect.Value) bool {
if !v.Type().Implements(bytesableType) {
return false
}
if v.Kind() == reflect.Pointer && v.IsNil() {
return false
}
if v.Type() == reflectValueType {
return false
}
if !v.CanInterface() {
return false
}
br := v.Interface().(Bytesable) //nolint:forcetypeassert // Checked above.
b := br.Bytes()
writeArrowWrappedString(st.Writer, ".Bytes() ")
if b == nil {
writeNil(st.Writer)
return true
}
writeBytesHexDumpCommon(st, reflect.ValueOf(b), b, vw.ShowLen, vw.ShowCap, vw.ShowAddr, vw.MaxLen)
return true
}
func writeBytesHexDumpCommon(st *State, v reflect.Value, b []byte, showLen bool, showCap bool, showAddr bool, maxLen int) {
infos{
showLen: showLen,
len: len(b),
showCap: showCap,
cap: cap(b),
showAddr: showAddr,
addr: uintptr(v.UnsafePointer()),
}.write(st)
truncated := false
if maxLen > 0 && len(b) > maxLen {
b = b[:maxLen]
truncated = true
}
writeString(st.Writer, "\n")
st.IndentLevel++
defer func() {
st.IndentLevel--
}()
iw := indent.NewWriter(st.Writer, st.IndentString, st.IndentLevel, false)
defer iw.Release()
e := getHexDumperPoolEntry(iw)
defer releaseHexDumperPoolEntry(e)
d := e.dumper
internal.MustWrite(d.Write(b))
internal.Must(d.Close())
if truncated {
st.writeIndent()
writeTruncated(st.Writer)
}
}
type hexDumperPoolEntry struct {
dumper io.WriteCloser
original io.WriteCloser
writerWrapper *writerWrapper
}
func newHexDumperPoolEntry() *hexDumperPoolEntry {
ww := &writerWrapper{}
return &hexDumperPoolEntry{
dumper: hex.Dumper(ww),
original: hex.Dumper(ww),
writerWrapper: ww,
}
}
var hexDumperPool = syncutil.Pool[*hexDumperPoolEntry]{
New: newHexDumperPoolEntry,
}
func getHexDumperPoolEntry(w io.Writer) *hexDumperPoolEntry {
e := hexDumperPool.Get()
e.writerWrapper.Writer = w
return e
}
func releaseHexDumperPoolEntry(e *hexDumperPoolEntry) {
v1 := reflect.ValueOf(e.dumper).Elem()
v2 := reflect.ValueOf(e.original).Elem()
v1.Set(v2)
e.writerWrapper.Writer = nil
hexDumperPool.Put(e)
}
type writerWrapper struct {
io.Writer
}