-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbytes.go
More file actions
212 lines (192 loc) · 4.86 KB
/
bytes.go
File metadata and controls
212 lines (192 loc) · 4.86 KB
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
package pretty
import (
"encoding/hex"
"io"
"reflect"
"github.com/pierrre/go-libs/reflectutil"
"github.com/pierrre/go-libs/syncutil"
"github.com/pierrre/pretty/internal/indent"
"github.com/pierrre/pretty/internal/itfassert"
)
var bytesType = reflect.TypeFor[[]byte]()
// BytesHexDumpWriter is a [ValueWriter] that handles []byte and writes them with [hex.Dumper].
//
// It should be created with [NewBytesHexDumpWriter].
type BytesHexDumpWriter 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
}
// NewBytesHexDumpWriter creates a new [BytesHexDumpWriter].
func NewBytesHexDumpWriter() *BytesHexDumpWriter {
return &BytesHexDumpWriter{
ShowLen: true,
ShowCap: true,
ShowAddr: false,
MaxLen: 0,
}
}
// WriteValue implements [ValueWriter].
func (vw *BytesHexDumpWriter) WriteValue(st *State, v reflect.Value) bool {
if v.Kind() != reflect.Slice || v.Type() != bytesType {
return false
}
if checkNil(st, v) {
return true
}
b := v.Bytes()
writeBytesHexDumpCommon(st, v, b, vw.ShowLen, vw.ShowCap, vw.ShowAddr, vw.MaxLen)
return true
}
// Supports implements [SupportChecker].
func (vw *BytesHexDumpWriter) Supports(typ reflect.Type) ValueWriter {
var res ValueWriter
if typ.Kind() == reflect.Slice && typ == bytesType {
res = vw
}
return res
}
// Bytesable is an interface that can return a []byte.
type Bytesable interface {
Bytes() []byte
}
var bytesableImplementsCache = reflectutil.NewImplementsCacheFor[Bytesable]()
// BytesableHexDumpWriter is a [ValueWriter] that handles [Bytesable] and writes them with [hex.Dumper].
//
// If [Bytesable.Bytes] panics, [BytesableHexDumpWriter.WriteValue] returns false.
//
// It should be created with [NewBytesableHexDumpWriter].
type BytesableHexDumpWriter 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
}
// NewBytesableHexDumpWriter creates a new [BytesableHexDumpWriter].
func NewBytesableHexDumpWriter() *BytesableHexDumpWriter {
return &BytesableHexDumpWriter{
ShowLen: true,
ShowCap: true,
ShowAddr: false,
MaxLen: 0,
}
}
// WriteValue implements [ValueWriter].
func (vw *BytesableHexDumpWriter) WriteValue(st *State, v reflect.Value) bool {
typ := v.Type()
if typ == reflectValueType {
return false
}
if !bytesableImplementsCache.ImplementedBy(typ) {
return false
}
br, ok := itfassert.Assert[Bytesable](v)
if !ok {
return false
}
b, ok := func() (_ []byte, ok bool) {
defer func() {
if !ok {
_ = recover()
}
}()
return br.Bytes(), true
}()
if !ok {
return false
}
writeArrowWrappedString(st, "Bytes() ")
if b == nil {
writeNil(st)
return true
}
writeBytesHexDumpCommon(st, reflect.ValueOf(b), b, vw.ShowLen, vw.ShowCap, vw.ShowAddr, vw.MaxLen)
return true
}
// Supports implements [SupportChecker].
func (vw *BytesableHexDumpWriter) Supports(typ reflect.Type) ValueWriter {
var res ValueWriter
if typ != reflectValueType && bytesableImplementsCache.ImplementedBy(typ) {
res = vw
}
return res
}
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
}
st.Writer.AppendByte('\n')
st.IndentLevel++
iw := indent.NewWriter(&st.Writer, st.IndentString, st.IndentLevel, false)
e := getHexDumperPoolEntry(iw)
d := e.dumper
_, _ = d.Write(b)
_ = d.Close()
releaseHexDumperPoolEntry(e)
iw.Release()
if truncated {
st.WriteIndent()
writeTruncated(st)
st.Writer.AppendByte('\n')
}
st.IndentLevel--
st.WriteIndent()
}
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
}