-
Notifications
You must be signed in to change notification settings - Fork 9
/
encode_writer.go
381 lines (363 loc) · 8.11 KB
/
encode_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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
package protocol
import (
"strconv"
"unicode/utf8"
"github.com/valyala/bytebufferpool"
)
// Flags describe various encoding options. The behavior may be actually implemented in the encoder, but
// Flags field in writer is used to set and pass them around.
type flags int
const (
nilMapAsEmpty flags = 1 << iota // Encode nil map as '{}' rather than 'null'.
nilSliceAsEmpty // Encode nil slice as '[]' rather than 'null'.
)
// writer is a JSON writer.
type writer struct {
Buffer *bytebufferpool.ByteBuffer
Flags flags
Error error
NoEscapeHTML bool
}
func newWriter() *writer {
return &writer{
Buffer: bytebufferpool.Get(),
}
}
// BuildBytes returns writer data as a single byte slice.
func (w *writer) BuildBytes(reuse ...[]byte) ([]byte, error) {
if w.Error != nil {
return nil, w.Error
}
var ret []byte
size := w.Buffer.Len()
// If we got a buffer as argument and it is big enough, reuse it.
if len(reuse) == 1 && cap(reuse[0]) >= size {
ret = reuse[0][:0]
} else {
ret = make([]byte, 0, size)
}
ret = append(ret, w.Buffer.Bytes()...)
bytebufferpool.Put(w.Buffer)
// Make writer non-usable after building bytes - writes will panic.
w.Buffer = nil
return ret, nil
}
// RawByte appends raw binary data to the buffer.
func (w *writer) RawByte(c byte) {
_ = w.Buffer.WriteByte(c)
}
// RawString appends string to the buffer.
func (w *writer) RawString(s string) {
_, _ = w.Buffer.WriteString(s)
}
// Raw appends raw binary data to the buffer or sets the error if it is given. Useful for
// calling with results of MarshalJSON-like functions.
func (w *writer) Raw(src []byte, err error) {
switch {
case w.Error != nil:
return
case err != nil:
w.Error = err
case len(src) > 0:
_, _ = w.Buffer.Write(src)
default:
w.RawString("null")
}
}
func (w *writer) Uint32(n uint32) {
_, _ = w.Buffer.WriteString(strconv.FormatUint(uint64(n), 10))
}
func (w *writer) Uint64(n uint64) {
_, _ = w.Buffer.WriteString(strconv.FormatUint(n, 10))
}
func (w *writer) Int32(n int32) {
_, _ = w.Buffer.WriteString(strconv.FormatInt(int64(n), 10))
}
func (w *writer) Bool(v bool) {
if v {
_, _ = w.Buffer.Write([]byte(`true`))
} else {
_, _ = w.Buffer.Write([]byte(`false`))
}
}
var hex = "0123456789abcdef"
func (w *writer) String(s string) {
escapeHTML := !w.NoEscapeHTML
_ = w.Buffer.WriteByte('"')
start := 0
for i := 0; i < len(s); {
if b := s[i]; b < utf8.RuneSelf {
if htmlSafeSet[b] || (!escapeHTML && safeSet[b]) {
i++
continue
}
if start < i {
_, _ = w.Buffer.WriteString(s[start:i])
}
_ = w.Buffer.WriteByte('\\')
switch b {
case '\\', '"':
_ = w.Buffer.WriteByte(b)
case '\n':
_ = w.Buffer.WriteByte('n')
case '\r':
_ = w.Buffer.WriteByte('r')
case '\t':
_ = w.Buffer.WriteByte('t')
default:
// This encodes bytes < 0x20 except for \t, \n and \r.
// If escapeHTML is set, it also escapes <, >, and &
// because they can lead to security holes when
// user-controlled strings are rendered into JSON
// and served to some browsers.
_, _ = w.Buffer.WriteString(`u00`)
_ = w.Buffer.WriteByte(hex[b>>4])
_ = w.Buffer.WriteByte(hex[b&0xF])
}
i++
start = i
continue
}
c, size := utf8.DecodeRuneInString(s[i:])
if c == utf8.RuneError && size == 1 {
if start < i {
_, _ = w.Buffer.WriteString(s[start:i])
}
_, _ = w.Buffer.WriteString(`\ufffd`)
i += size
start = i
continue
}
// U+2028 is LINE SEPARATOR.
// U+2029 is PARAGRAPH SEPARATOR.
// They are both technically valid characters in JSON strings,
// but don't work in JSONP, which has to be evaluated as JavaScript,
// and can lead to security holes there. It is valid JSON to
// escape them, so we do so unconditionally.
// See http://timelessrepo.com/json-isnt-a-javascript-subset for discussion.
if c == '\u2028' || c == '\u2029' {
if start < i {
_, _ = w.Buffer.WriteString(s[start:i])
}
_, _ = w.Buffer.WriteString(`\u202`)
_ = w.Buffer.WriteByte(hex[c&0xF])
i += size
start = i
continue
}
i += size
}
if start < len(s) {
_, _ = w.Buffer.WriteString(s[start:])
}
_ = w.Buffer.WriteByte('"')
}
// safeSet holds the value true if the ASCII character with the given array
// position can be represented inside a JSON string without any further
// escaping.
//
// All values are true except for the ASCII control characters (0-31), the
// double quote ("), and the backslash character ("\").
var safeSet = [utf8.RuneSelf]bool{
' ': true,
'!': true,
'"': false,
'#': true,
'$': true,
'%': true,
'&': true,
'\'': true,
'(': true,
')': true,
'*': true,
'+': true,
',': true,
'-': true,
'.': true,
'/': true,
'0': true,
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
':': true,
';': true,
'<': true,
'=': true,
'>': true,
'?': true,
'@': true,
'A': true,
'B': true,
'C': true,
'D': true,
'E': true,
'F': true,
'G': true,
'H': true,
'I': true,
'J': true,
'K': true,
'L': true,
'M': true,
'N': true,
'O': true,
'P': true,
'Q': true,
'R': true,
'S': true,
'T': true,
'U': true,
'V': true,
'W': true,
'X': true,
'Y': true,
'Z': true,
'[': true,
'\\': false,
']': true,
'^': true,
'_': true,
'`': true,
'a': true,
'b': true,
'c': true,
'd': true,
'e': true,
'f': true,
'g': true,
'h': true,
'i': true,
'j': true,
'k': true,
'l': true,
'm': true,
'n': true,
'o': true,
'p': true,
'q': true,
'r': true,
's': true,
't': true,
'u': true,
'v': true,
'w': true,
'x': true,
'y': true,
'z': true,
'{': true,
'|': true,
'}': true,
'~': true,
'\u007f': true,
}
// htmlSafeSet holds the value true if the ASCII character with the given
// array position can be safely represented inside a JSON string, embedded
// inside of HTML <script> tags, without any additional escaping.
//
// All values are true except for the ASCII control characters (0-31), the
// double quote ("), the backslash character ("\"), HTML opening and closing
// tags ("<" and ">"), and the ampersand ("&").
var htmlSafeSet = [utf8.RuneSelf]bool{
' ': true,
'!': true,
'"': false,
'#': true,
'$': true,
'%': true,
'&': false,
'\'': true,
'(': true,
')': true,
'*': true,
'+': true,
',': true,
'-': true,
'.': true,
'/': true,
'0': true,
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
':': true,
';': true,
'<': false,
'=': true,
'>': false,
'?': true,
'@': true,
'A': true,
'B': true,
'C': true,
'D': true,
'E': true,
'F': true,
'G': true,
'H': true,
'I': true,
'J': true,
'K': true,
'L': true,
'M': true,
'N': true,
'O': true,
'P': true,
'Q': true,
'R': true,
'S': true,
'T': true,
'U': true,
'V': true,
'W': true,
'X': true,
'Y': true,
'Z': true,
'[': true,
'\\': false,
']': true,
'^': true,
'_': true,
'`': true,
'a': true,
'b': true,
'c': true,
'd': true,
'e': true,
'f': true,
'g': true,
'h': true,
'i': true,
'j': true,
'k': true,
'l': true,
'm': true,
'n': true,
'o': true,
'p': true,
'q': true,
'r': true,
's': true,
't': true,
'u': true,
'v': true,
'w': true,
'x': true,
'y': true,
'z': true,
'{': true,
'|': true,
'}': true,
'~': true,
'\u007f': true,
}