forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreader.go
More file actions
374 lines (326 loc) · 7.23 KB
/
Copy pathreader.go
File metadata and controls
374 lines (326 loc) · 7.23 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
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
package avro
import (
"errors"
"fmt"
"io"
"math"
"unsafe"
)
const (
maxIntBufSize = 5
maxLongBufSize = 10
)
// ReaderFunc is a function used to customize the Reader.
type ReaderFunc func(r *Reader)
// WithReaderConfig specifies the configuration to use with a reader.
func WithReaderConfig(cfg API) ReaderFunc {
return func(r *Reader) {
r.cfg = cfg.(*frozenConfig)
}
}
// Reader is an Avro specific io.Reader.
type Reader struct {
cfg *frozenConfig
reader io.Reader
slab []byte
buf []byte
head int
tail int
Error error
}
// NewReader creates a new Reader.
func NewReader(r io.Reader, bufSize int, opts ...ReaderFunc) *Reader {
reader := &Reader{
cfg: DefaultConfig.(*frozenConfig),
reader: r,
}
for _, opt := range opts {
opt(reader)
}
reader.buf = make([]byte, max(0, reader.cfg.getReadBufSize()))
return reader
}
// Reset resets a Reader with a new byte array attached.
func (r *Reader) Reset(b []byte) *Reader {
r.reader = nil
r.buf = b
r.head = 0
r.tail = len(b)
return r
}
// ReportError record an error in iterator instance with current position.
func (r *Reader) ReportError(operation, msg string) {
if r.Error != nil && !errors.Is(r.Error, io.EOF) {
return
}
r.Error = fmt.Errorf("avro: %s: %s", operation, msg)
}
func (r *Reader) loadMore() bool {
if r.reader == nil {
if r.Error == nil {
r.head = r.tail
r.Error = io.EOF
}
return false
}
for {
n, err := r.reader.Read(r.buf)
if n == 0 {
if err != nil {
if r.Error == nil {
r.Error = err
}
return false
}
continue
}
r.head = 0
r.tail = n
return true
}
}
func (r *Reader) readByte() byte {
if r.head != r.tail {
r.head++
return r.buf[r.head-1]
}
return r.readByteSlow()
}
//go:noinline
func (r *Reader) readByteSlow() byte {
if !r.loadMore() {
r.Error = io.ErrUnexpectedEOF
return 0
}
b := r.buf[r.head]
r.head++
return b
}
// Peek returns the next byte in the buffer.
// The Reader Error will be io.EOF if no next byte exists.
func (r *Reader) Peek() byte {
if r.head == r.tail {
if !r.loadMore() {
return 0
}
}
return r.buf[r.head]
}
// Read reads data into the given bytes.
func (r *Reader) Read(b []byte) {
size := len(b)
read := 0
for read < size {
if r.head == r.tail {
if !r.loadMore() {
r.Error = io.ErrUnexpectedEOF
return
}
}
n := copy(b[read:], r.buf[r.head:r.tail])
r.head += n
read += n
}
}
// ReadBool reads a Bool from the Reader.
func (r *Reader) ReadBool() bool {
b := r.readByte()
if b != 0 && b != 1 {
r.ReportError("ReadBool", "invalid bool")
}
return b == 1
}
// ReadInt reads an Int from the Reader.
//
//nolint:dupl
func (r *Reader) ReadInt() int32 {
if r.Error != nil {
return 0
}
// Fast path: enough bytes in buffer for maximum varint size.
if r.tail-r.head >= maxIntBufSize {
var v uint32
var s uint8
for i, b := range r.buf[r.head : r.head+maxIntBufSize] {
v |= uint32(b&0x7f) << s
if b&0x80 == 0 {
r.head += i + 1
return int32((v >> 1) ^ -(v & 1))
}
s += 7
}
r.ReportError("ReadInt", "int overflow")
return 0
}
// Slow path: not enough bytes in buffer, may need to load more.
var (
n int
v uint32
s uint8
)
for {
tail := r.tail
if r.tail-r.head+n > maxIntBufSize {
tail = r.head + maxIntBufSize - n
}
// Consume what it is in the buffer.
var i int
for _, b := range r.buf[r.head:tail] {
v |= uint32(b&0x7f) << s
if b&0x80 == 0 {
r.head += i + 1
return int32((v >> 1) ^ -(v & 1))
}
s += 7
i++
}
if n >= maxIntBufSize {
r.ReportError("ReadInt", "int overflow")
return 0
}
r.head += i
n += i
// We ran out of buffer and are not at the end of the int,
// Read more into the buffer.
if !r.loadMore() {
r.Error = fmt.Errorf("reading int: %w", r.Error)
return 0
}
}
}
// ReadLong reads a Long from the Reader.
//
//nolint:dupl
func (r *Reader) ReadLong() int64 {
if r.Error != nil {
return 0
}
// Fast path: enough bytes in buffer for maximum varint size.
if r.tail-r.head >= maxLongBufSize {
var v uint64
var s uint8
for i, b := range r.buf[r.head : r.head+maxLongBufSize] {
v |= uint64(b&0x7f) << s
if b&0x80 == 0 {
r.head += i + 1
return int64((v >> 1) ^ -(v & 1))
}
s += 7
}
r.ReportError("ReadLong", "int overflow")
return 0
}
// Slow path: not enough bytes in buffer, may need to load more.
var (
n int
v uint64
s uint8
)
for {
tail := r.tail
if r.tail-r.head+n > maxLongBufSize {
tail = r.head + maxLongBufSize - n
}
// Consume what it is in the buffer.
var i int
for _, b := range r.buf[r.head:tail] {
v |= uint64(b&0x7f) << s
if b&0x80 == 0 {
r.head += i + 1
return int64((v >> 1) ^ -(v & 1))
}
s += 7
i++
}
if n >= maxLongBufSize {
r.ReportError("ReadLong", "int overflow")
return 0
}
r.head += i
n += i
// We ran out of buffer and are not at the end of the long,
// Read more into the buffer.
if !r.loadMore() {
r.Error = fmt.Errorf("reading long: %w", r.Error)
return 0
}
}
}
// ReadBytes reads Bytes from the Reader.
func (r *Reader) ReadBytes() []byte {
return r.readBytes("ReadBytes", "bytes")
}
// ReadString reads a String from the Reader.
func (r *Reader) ReadString() string {
b := r.readBytes("ReadString", "string")
if len(b) == 0 {
return ""
}
return *(*string)(unsafe.Pointer(&b))
}
func (r *Reader) readBytes(fnName, op string) []byte {
size64 := r.ReadLong()
if size64 < 0 {
r.ReportError(fnName, "invalid "+op+" length")
return nil
}
if size64 == 0 {
return []byte{}
}
if maxSize := r.cfg.getMaxByteSliceSize(); maxSize > 0 && size64 > int64(maxSize) {
r.ReportError(fnName, "size is greater than `Config.MaxByteSliceSize`")
return nil
}
// MaxByteSliceSize defaults to MaxInt, so the cap above usually catches
// oversize lengths. The standalone check defends configurations that
// disable the cap or set it above the platform int range.
if size64 > math.MaxInt {
r.ReportError(fnName, op+" length is too big")
return nil
}
size := int(size64)
// The bytes are entirely in the buffer and of a reasonable size.
// Use the byte slab.
if r.head+size <= r.tail && size <= r.cfg.getSlabSize() {
if cap(r.slab) < size {
r.slab = make([]byte, r.cfg.getSlabSize())
}
_ = r.slab[size-1] // Bounds check hint to compiler.
dst := r.slab[:size]
r.slab = r.slab[size:]
copy(dst, r.buf[r.head:r.head+size])
r.head += size
return dst
}
buf := make([]byte, size)
r.Read(buf)
return buf
}
// ReadBlockHeader reads a Block Header from the Reader.
func (r *Reader) ReadBlockHeader() (int, int) {
length64 := r.ReadLong()
if length64 > math.MaxInt {
r.ReportError("read block header", "block length is too big")
return 0, 0
}
// check for too small value on 32-bit architecture and for math.MinInt on both 32- and 64-bit which cannot be negated
if length64 <= math.MinInt {
r.ReportError("read block header", "block length is too small")
return 0, 0
}
length := int(length64)
if length >= 0 {
return length, 0
}
size64 := r.ReadLong()
if size64 > math.MaxInt {
r.ReportError("read block header", "skip size is too big")
return 0, 0
}
if size64 < 0 {
r.ReportError("read block header", "skip size is too small")
return 0, 0
}
size := int(size64)
return -length, size
}