-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer.go
177 lines (149 loc) · 4.75 KB
/
buffer.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
/*
* This file is a part of hypera.dev/lib, licensed under the MIT License.
*
* Copyright (c) 2024 Joshua Sing <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package pretty
import (
"io"
"strconv"
"sync"
"time"
)
const poolMaxBufferSize = 16 << 10
// bufferPool is a simple Buffer pool.
type bufferPool struct {
pool sync.Pool
}
// newBufferPool returns a new bufferPool.
func newBufferPool() *bufferPool {
return &bufferPool{
pool: sync.Pool{
New: func() any {
return newBuffer()
},
},
}
}
// Acquire returns a buffer from the pool.
// If there are no available buffers, a new one will be created.
func (p *bufferPool) Acquire() *Buffer {
return p.pool.Get().(*Buffer)
}
// Free returns the given buffer to the pool.
func (p *bufferPool) Free(b *Buffer) {
if cap(b.buf) <= poolMaxBufferSize {
b.Reset()
p.pool.Put(b)
}
}
// Buffer is a simple wrapper around a byte slice.
type Buffer struct {
buf []byte
}
// newBuffer returns a new [Buffer].
func newBuffer() *Buffer {
return &Buffer{buf: make([]byte, 0, 1024)}
}
// Write writes the given bytes to the buffer.
func (b *Buffer) Write(p []byte) (int, error) {
b.buf = append(b.buf, p...)
return len(p), nil
}
// WriteString writes the given string to the buffer.
func (b *Buffer) WriteString(s string) (int, error) {
b.buf = append(b.buf, s...)
return len(s), nil
}
// WriteTo writes the buffer contents to the given writer.
func (b *Buffer) WriteTo(writer io.Writer) (int64, error) {
n, err := writer.Write(b.buf)
return int64(n), err
}
// AppendByte writes the given byte to the buffer.
func (b *Buffer) AppendByte(p byte) {
b.buf = append(b.buf, p)
}
// AppendBytes writes the given byte slice to the buffer.
func (b *Buffer) AppendBytes(p []byte) {
b.buf = append(b.buf, p...)
}
// AppendString writes the given string to the buffer.
func (b *Buffer) AppendString(s string) {
b.buf = append(b.buf, s...)
}
// AppendQuote writes a double-quoted string to the buffer using
// the [strconv.AppendQuote] function.
func (b *Buffer) AppendQuote(s string) {
b.buf = strconv.AppendQuote(b.buf, s)
}
// AppendInt writes the given int64 to the buffer.
func (b *Buffer) AppendInt(i int64) {
b.buf = strconv.AppendInt(b.buf, i, 10)
}
// AppendUint writes the given uint64 to the buffer.
func (b *Buffer) AppendUint(i uint64) {
b.buf = strconv.AppendUint(b.buf, i, 10)
}
// AppendFloat32 writes the given float32 to the buffer.
func (b *Buffer) AppendFloat32(f float32) {
b.AppendFloat(float64(f), 32)
}
// AppendFloat64 writes the given float64 to the buffer.
func (b *Buffer) AppendFloat64(f float64) {
b.AppendFloat(f, 64)
}
// AppendFloat writes the given float to the buffer with the given bitSize.
func (b *Buffer) AppendFloat(f float64, bitSize int) {
b.buf = strconv.AppendFloat(b.buf, f, 'f', -1, bitSize)
}
// AppendBool writes "true" or "false" to the buffer according to the given bool.
func (b *Buffer) AppendBool(v bool) {
b.buf = strconv.AppendBool(b.buf, v)
}
// AppendTimeFormat writes a timestamp to the buffer in the given format.
func (b *Buffer) AppendTimeFormat(t time.Time, layout string) {
b.buf = t.AppendFormat(b.buf, layout)
}
// Replace replaces the byte at index i with the given byte, if the underlying
// byte slice contains index i.
func (b *Buffer) Replace(i int, p byte) {
if i < 0 || i >= b.Len() {
return
}
b.buf[i] = p
}
// Len returns the length of the underlying byte slice.
func (b *Buffer) Len() int {
return len(b.buf)
}
// Cap returns the capacity of the underlying byte slice.
func (b *Buffer) Cap() int {
return cap(b.buf)
}
// String returns a string copy of the underlying byte slice.
func (b *Buffer) String() string {
return string(b.buf)
}
// Reset resets the underlying byte slice.
func (b *Buffer) Reset() {
b.buf = b.buf[:0]
}