-
Notifications
You must be signed in to change notification settings - Fork 150
/
writer.go
220 lines (190 loc) · 3.96 KB
/
writer.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
package quicktemplate
import (
"fmt"
"io"
"strconv"
"sync"
)
// Writer implements auxiliary writer used by quicktemplate functions.
//
// Use AcquireWriter for creating new writers.
type Writer struct {
e QWriter
n QWriter
}
// W returns the underlying writer passed to AcquireWriter.
func (qw *Writer) W() io.Writer {
return qw.n.w
}
// E returns QWriter with enabled html escaping.
func (qw *Writer) E() *QWriter {
return &qw.e
}
// N returns QWriter without html escaping.
func (qw *Writer) N() *QWriter {
return &qw.n
}
// AcquireWriter returns new writer from the pool.
//
// Return unneeded writer to the pool by calling ReleaseWriter
// in order to reduce memory allocations.
func AcquireWriter(w io.Writer) *Writer {
v := writerPool.Get()
if v == nil {
qw := &Writer{}
qw.e.w = &htmlEscapeWriter{}
v = qw
}
qw := v.(*Writer)
qw.e.w.(*htmlEscapeWriter).w = w
qw.n.w = w
return qw
}
// ReleaseWriter returns the writer to the pool.
//
// Do not access released writer, otherwise data races may occur.
func ReleaseWriter(qw *Writer) {
hw := qw.e.w.(*htmlEscapeWriter)
hw.w = nil
qw.e.Reset()
qw.e.w = hw
qw.n.Reset()
writerPool.Put(qw)
}
var writerPool sync.Pool
// QWriter is auxiliary writer used by Writer.
type QWriter struct {
w io.Writer
err error
b []byte
}
// Write implements io.Writer.
func (w *QWriter) Write(p []byte) (int, error) {
if w.err != nil {
return 0, w.err
}
n, err := w.w.Write(p)
if err != nil {
w.err = err
}
return n, err
}
// Reset resets QWriter to the original state.
func (w *QWriter) Reset() {
w.w = nil
w.err = nil
}
// S writes s to w.
func (w *QWriter) S(s string) {
w.Write(unsafeStrToBytes(s))
}
// Z writes z to w.
func (w *QWriter) Z(z []byte) {
w.Write(z)
}
// SZ is a synonym to Z.
func (w *QWriter) SZ(z []byte) {
w.Write(z)
}
// D writes n to w.
func (w *QWriter) D(n int) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = strconv.AppendInt(bb.B, int64(n), 10)
} else {
w.b = strconv.AppendInt(w.b[:0], int64(n), 10)
w.Write(w.b)
}
}
// DL writes n to w
func (w *QWriter) DL(n int64) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = strconv.AppendInt(bb.B, n, 10)
} else {
w.b = strconv.AppendInt(w.b[:0], n, 10)
w.Write(w.b)
}
}
// DUL writes n to w
func (w *QWriter) DUL(n uint64) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = strconv.AppendUint(bb.B, n, 10)
} else {
w.b = strconv.AppendUint(w.b[:0], n, 10)
w.Write(w.b)
}
}
// F writes f to w.
func (w *QWriter) F(f float64) {
n := int(f)
if float64(n) == f {
// Fast path - just int.
w.D(n)
return
}
// Slow path.
w.FPrec(f, -1)
}
// FPrec writes f to w using the given floating point precision.
func (w *QWriter) FPrec(f float64, prec int) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = strconv.AppendFloat(bb.B, f, 'f', prec, 64)
} else {
w.b = strconv.AppendFloat(w.b[:0], f, 'f', prec, 64)
w.Write(w.b)
}
}
// Q writes quoted json-safe s to w.
func (w *QWriter) Q(s string) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = AppendJSONString(bb.B, s, true)
} else {
w.b = AppendJSONString(w.b[:0], s, true)
w.Write(w.b)
}
}
var strQuote = []byte(`"`)
// QZ writes quoted json-safe z to w.
func (w *QWriter) QZ(z []byte) {
w.Q(unsafeBytesToStr(z))
}
// J writes json-safe s to w.
//
// Unlike Q it doesn't qoute resulting s.
func (w *QWriter) J(s string) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = AppendJSONString(bb.B, s, false)
} else {
w.b = AppendJSONString(w.b[:0], s, false)
w.Write(w.b)
}
}
// JZ writes json-safe z to w.
//
// Unlike Q it doesn't qoute resulting z.
func (w *QWriter) JZ(z []byte) {
w.J(unsafeBytesToStr(z))
}
// V writes v to w.
func (w *QWriter) V(v interface{}) {
fmt.Fprintf(w, "%v", v)
}
// U writes url-encoded s to w.
func (w *QWriter) U(s string) {
bb, ok := w.w.(*ByteBuffer)
if ok {
bb.B = appendURLEncode(bb.B, s)
} else {
w.b = appendURLEncode(w.b[:0], s)
w.Write(w.b)
}
}
// UZ writes url-encoded z to w.
func (w *QWriter) UZ(z []byte) {
w.U(unsafeBytesToStr(z))
}