forked from hamba/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reader.go
324 lines (278 loc) · 5.67 KB
/
reader.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
package avro
import (
"errors"
"fmt"
"io"
"strings"
"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,
buf: make([]byte, bufSize),
head: 0,
tail: 0,
}
for _, opt := range opts {
opt(reader)
}
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 {
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
}
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
}
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
}
}
}
// ReadFloat reads a Float from the Reader.
func (r *Reader) ReadFloat() float32 {
var buf [4]byte
r.Read(buf[:])
float := *(*float32)(unsafe.Pointer(&buf[0]))
return float
}
// ReadDouble reads a Double from the Reader.
func (r *Reader) ReadDouble() float64 {
var buf [8]byte
r.Read(buf[:])
float := *(*float64)(unsafe.Pointer(&buf[0]))
return float
}
// ReadBytes reads Bytes from the Reader.
func (r *Reader) ReadBytes() []byte {
return r.readBytes("bytes")
}
// ReadString reads a String from the Reader.
func (r *Reader) ReadString() string {
b := r.readBytes("string")
if len(b) == 0 {
return ""
}
return *(*string)(unsafe.Pointer(&b))
}
func (r *Reader) readBytes(op string) []byte {
size := int(r.ReadLong())
if size < 0 {
fnName := "Read" + strings.ToTitle(op)
r.ReportError(fnName, "invalid "+op+" length")
return nil
}
if size == 0 {
return []byte{}
}
if max := r.cfg.getMaxByteSliceSize(); max > 0 && size > max {
fnName := "Read" + strings.ToTitle(op)
r.ReportError(fnName, "size is greater than `Config.MaxByteSliceSize`")
return nil
}
// The bytes are entirely in the buffer and of a reasonable size.
// Use the byte slab.
if r.head+size <= r.tail && size <= 1024 {
if cap(r.slab) < size {
r.slab = make([]byte, 1024)
}
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() (int64, int64) {
length := r.ReadLong()
if length < 0 {
size := r.ReadLong()
return -length, size
}
return length, 0
}