blob: 45c880d32f8fd444e41662f06697cacff72683e1 [file] [log] [blame]
mpagenkoaf801632020-07-03 10:00:42 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20package thrift
21
22import (
23 "bytes"
khenaidoo7d3c5582021-08-11 18:09:44 -040024 "context"
mpagenkoaf801632020-07-03 10:00:42 +000025 "encoding/binary"
26 "errors"
27 "fmt"
28 "io"
29 "math"
30)
31
32type TBinaryProtocol struct {
33 trans TRichTransport
34 origTransport TTransport
khenaidoo7d3c5582021-08-11 18:09:44 -040035 cfg *TConfiguration
mpagenkoaf801632020-07-03 10:00:42 +000036 buffer [64]byte
37}
38
39type TBinaryProtocolFactory struct {
khenaidoo7d3c5582021-08-11 18:09:44 -040040 cfg *TConfiguration
mpagenkoaf801632020-07-03 10:00:42 +000041}
42
khenaidoo7d3c5582021-08-11 18:09:44 -040043// Deprecated: Use NewTBinaryProtocolConf instead.
mpagenkoaf801632020-07-03 10:00:42 +000044func NewTBinaryProtocolTransport(t TTransport) *TBinaryProtocol {
khenaidoo7d3c5582021-08-11 18:09:44 -040045 return NewTBinaryProtocolConf(t, &TConfiguration{
46 noPropagation: true,
47 })
mpagenkoaf801632020-07-03 10:00:42 +000048}
49
khenaidoo7d3c5582021-08-11 18:09:44 -040050// Deprecated: Use NewTBinaryProtocolConf instead.
mpagenkoaf801632020-07-03 10:00:42 +000051func NewTBinaryProtocol(t TTransport, strictRead, strictWrite bool) *TBinaryProtocol {
khenaidoo7d3c5582021-08-11 18:09:44 -040052 return NewTBinaryProtocolConf(t, &TConfiguration{
53 TBinaryStrictRead: &strictRead,
54 TBinaryStrictWrite: &strictWrite,
55
56 noPropagation: true,
57 })
58}
59
60func NewTBinaryProtocolConf(t TTransport, conf *TConfiguration) *TBinaryProtocol {
61 PropagateTConfiguration(t, conf)
62 p := &TBinaryProtocol{
63 origTransport: t,
64 cfg: conf,
65 }
mpagenkoaf801632020-07-03 10:00:42 +000066 if et, ok := t.(TRichTransport); ok {
67 p.trans = et
68 } else {
69 p.trans = NewTRichTransport(t)
70 }
mpagenkoaf801632020-07-03 10:00:42 +000071 return p
72}
73
khenaidoo7d3c5582021-08-11 18:09:44 -040074// Deprecated: Use NewTBinaryProtocolFactoryConf instead.
mpagenkoaf801632020-07-03 10:00:42 +000075func NewTBinaryProtocolFactoryDefault() *TBinaryProtocolFactory {
khenaidoo7d3c5582021-08-11 18:09:44 -040076 return NewTBinaryProtocolFactoryConf(&TConfiguration{
77 noPropagation: true,
78 })
mpagenkoaf801632020-07-03 10:00:42 +000079}
80
khenaidoo7d3c5582021-08-11 18:09:44 -040081// Deprecated: Use NewTBinaryProtocolFactoryConf instead.
mpagenkoaf801632020-07-03 10:00:42 +000082func NewTBinaryProtocolFactory(strictRead, strictWrite bool) *TBinaryProtocolFactory {
khenaidoo7d3c5582021-08-11 18:09:44 -040083 return NewTBinaryProtocolFactoryConf(&TConfiguration{
84 TBinaryStrictRead: &strictRead,
85 TBinaryStrictWrite: &strictWrite,
86
87 noPropagation: true,
88 })
89}
90
91func NewTBinaryProtocolFactoryConf(conf *TConfiguration) *TBinaryProtocolFactory {
92 return &TBinaryProtocolFactory{
93 cfg: conf,
94 }
mpagenkoaf801632020-07-03 10:00:42 +000095}
96
97func (p *TBinaryProtocolFactory) GetProtocol(t TTransport) TProtocol {
khenaidoo7d3c5582021-08-11 18:09:44 -040098 return NewTBinaryProtocolConf(t, p.cfg)
99}
100
101func (p *TBinaryProtocolFactory) SetTConfiguration(conf *TConfiguration) {
102 p.cfg = conf
mpagenkoaf801632020-07-03 10:00:42 +0000103}
104
105/**
106 * Writing Methods
107 */
108
khenaidoo7d3c5582021-08-11 18:09:44 -0400109func (p *TBinaryProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, seqId int32) error {
110 if p.cfg.GetTBinaryStrictWrite() {
mpagenkoaf801632020-07-03 10:00:42 +0000111 version := uint32(VERSION_1) | uint32(typeId)
khenaidoo7d3c5582021-08-11 18:09:44 -0400112 e := p.WriteI32(ctx, int32(version))
mpagenkoaf801632020-07-03 10:00:42 +0000113 if e != nil {
114 return e
115 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400116 e = p.WriteString(ctx, name)
mpagenkoaf801632020-07-03 10:00:42 +0000117 if e != nil {
118 return e
119 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400120 e = p.WriteI32(ctx, seqId)
mpagenkoaf801632020-07-03 10:00:42 +0000121 return e
122 } else {
khenaidoo7d3c5582021-08-11 18:09:44 -0400123 e := p.WriteString(ctx, name)
mpagenkoaf801632020-07-03 10:00:42 +0000124 if e != nil {
125 return e
126 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400127 e = p.WriteByte(ctx, int8(typeId))
mpagenkoaf801632020-07-03 10:00:42 +0000128 if e != nil {
129 return e
130 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400131 e = p.WriteI32(ctx, seqId)
mpagenkoaf801632020-07-03 10:00:42 +0000132 return e
133 }
134 return nil
135}
136
khenaidoo7d3c5582021-08-11 18:09:44 -0400137func (p *TBinaryProtocol) WriteMessageEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000138 return nil
139}
140
khenaidoo7d3c5582021-08-11 18:09:44 -0400141func (p *TBinaryProtocol) WriteStructBegin(ctx context.Context, name string) error {
mpagenkoaf801632020-07-03 10:00:42 +0000142 return nil
143}
144
khenaidoo7d3c5582021-08-11 18:09:44 -0400145func (p *TBinaryProtocol) WriteStructEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000146 return nil
147}
148
khenaidoo7d3c5582021-08-11 18:09:44 -0400149func (p *TBinaryProtocol) WriteFieldBegin(ctx context.Context, name string, typeId TType, id int16) error {
150 e := p.WriteByte(ctx, int8(typeId))
mpagenkoaf801632020-07-03 10:00:42 +0000151 if e != nil {
152 return e
153 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400154 e = p.WriteI16(ctx, id)
mpagenkoaf801632020-07-03 10:00:42 +0000155 return e
156}
157
khenaidoo7d3c5582021-08-11 18:09:44 -0400158func (p *TBinaryProtocol) WriteFieldEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000159 return nil
160}
161
khenaidoo7d3c5582021-08-11 18:09:44 -0400162func (p *TBinaryProtocol) WriteFieldStop(ctx context.Context) error {
163 e := p.WriteByte(ctx, STOP)
mpagenkoaf801632020-07-03 10:00:42 +0000164 return e
165}
166
khenaidoo7d3c5582021-08-11 18:09:44 -0400167func (p *TBinaryProtocol) WriteMapBegin(ctx context.Context, keyType TType, valueType TType, size int) error {
168 e := p.WriteByte(ctx, int8(keyType))
mpagenkoaf801632020-07-03 10:00:42 +0000169 if e != nil {
170 return e
171 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400172 e = p.WriteByte(ctx, int8(valueType))
mpagenkoaf801632020-07-03 10:00:42 +0000173 if e != nil {
174 return e
175 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400176 e = p.WriteI32(ctx, int32(size))
mpagenkoaf801632020-07-03 10:00:42 +0000177 return e
178}
179
khenaidoo7d3c5582021-08-11 18:09:44 -0400180func (p *TBinaryProtocol) WriteMapEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000181 return nil
182}
183
khenaidoo7d3c5582021-08-11 18:09:44 -0400184func (p *TBinaryProtocol) WriteListBegin(ctx context.Context, elemType TType, size int) error {
185 e := p.WriteByte(ctx, int8(elemType))
mpagenkoaf801632020-07-03 10:00:42 +0000186 if e != nil {
187 return e
188 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400189 e = p.WriteI32(ctx, int32(size))
mpagenkoaf801632020-07-03 10:00:42 +0000190 return e
191}
192
khenaidoo7d3c5582021-08-11 18:09:44 -0400193func (p *TBinaryProtocol) WriteListEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000194 return nil
195}
196
khenaidoo7d3c5582021-08-11 18:09:44 -0400197func (p *TBinaryProtocol) WriteSetBegin(ctx context.Context, elemType TType, size int) error {
198 e := p.WriteByte(ctx, int8(elemType))
mpagenkoaf801632020-07-03 10:00:42 +0000199 if e != nil {
200 return e
201 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400202 e = p.WriteI32(ctx, int32(size))
mpagenkoaf801632020-07-03 10:00:42 +0000203 return e
204}
205
khenaidoo7d3c5582021-08-11 18:09:44 -0400206func (p *TBinaryProtocol) WriteSetEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000207 return nil
208}
209
khenaidoo7d3c5582021-08-11 18:09:44 -0400210func (p *TBinaryProtocol) WriteBool(ctx context.Context, value bool) error {
mpagenkoaf801632020-07-03 10:00:42 +0000211 if value {
khenaidoo7d3c5582021-08-11 18:09:44 -0400212 return p.WriteByte(ctx, 1)
mpagenkoaf801632020-07-03 10:00:42 +0000213 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400214 return p.WriteByte(ctx, 0)
mpagenkoaf801632020-07-03 10:00:42 +0000215}
216
khenaidoo7d3c5582021-08-11 18:09:44 -0400217func (p *TBinaryProtocol) WriteByte(ctx context.Context, value int8) error {
mpagenkoaf801632020-07-03 10:00:42 +0000218 e := p.trans.WriteByte(byte(value))
219 return NewTProtocolException(e)
220}
221
khenaidoo7d3c5582021-08-11 18:09:44 -0400222func (p *TBinaryProtocol) WriteI16(ctx context.Context, value int16) error {
mpagenkoaf801632020-07-03 10:00:42 +0000223 v := p.buffer[0:2]
224 binary.BigEndian.PutUint16(v, uint16(value))
khenaidoo7d3c5582021-08-11 18:09:44 -0400225 _, e := p.trans.Write(v)
mpagenkoaf801632020-07-03 10:00:42 +0000226 return NewTProtocolException(e)
227}
228
khenaidoo7d3c5582021-08-11 18:09:44 -0400229func (p *TBinaryProtocol) WriteI32(ctx context.Context, value int32) error {
mpagenkoaf801632020-07-03 10:00:42 +0000230 v := p.buffer[0:4]
231 binary.BigEndian.PutUint32(v, uint32(value))
khenaidoo7d3c5582021-08-11 18:09:44 -0400232 _, e := p.trans.Write(v)
mpagenkoaf801632020-07-03 10:00:42 +0000233 return NewTProtocolException(e)
234}
235
khenaidoo7d3c5582021-08-11 18:09:44 -0400236func (p *TBinaryProtocol) WriteI64(ctx context.Context, value int64) error {
mpagenkoaf801632020-07-03 10:00:42 +0000237 v := p.buffer[0:8]
238 binary.BigEndian.PutUint64(v, uint64(value))
khenaidoo7d3c5582021-08-11 18:09:44 -0400239 _, err := p.trans.Write(v)
mpagenkoaf801632020-07-03 10:00:42 +0000240 return NewTProtocolException(err)
241}
242
khenaidoo7d3c5582021-08-11 18:09:44 -0400243func (p *TBinaryProtocol) WriteDouble(ctx context.Context, value float64) error {
244 return p.WriteI64(ctx, int64(math.Float64bits(value)))
mpagenkoaf801632020-07-03 10:00:42 +0000245}
246
khenaidoo7d3c5582021-08-11 18:09:44 -0400247func (p *TBinaryProtocol) WriteString(ctx context.Context, value string) error {
248 e := p.WriteI32(ctx, int32(len(value)))
mpagenkoaf801632020-07-03 10:00:42 +0000249 if e != nil {
250 return e
251 }
252 _, err := p.trans.WriteString(value)
253 return NewTProtocolException(err)
254}
255
khenaidoo7d3c5582021-08-11 18:09:44 -0400256func (p *TBinaryProtocol) WriteBinary(ctx context.Context, value []byte) error {
257 e := p.WriteI32(ctx, int32(len(value)))
mpagenkoaf801632020-07-03 10:00:42 +0000258 if e != nil {
259 return e
260 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400261 _, err := p.trans.Write(value)
mpagenkoaf801632020-07-03 10:00:42 +0000262 return NewTProtocolException(err)
263}
264
265/**
266 * Reading methods
267 */
268
khenaidoo7d3c5582021-08-11 18:09:44 -0400269func (p *TBinaryProtocol) ReadMessageBegin(ctx context.Context) (name string, typeId TMessageType, seqId int32, err error) {
270 size, e := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000271 if e != nil {
272 return "", typeId, 0, NewTProtocolException(e)
273 }
274 if size < 0 {
275 typeId = TMessageType(size & 0x0ff)
276 version := int64(int64(size) & VERSION_MASK)
277 if version != VERSION_1 {
278 return name, typeId, seqId, NewTProtocolExceptionWithType(BAD_VERSION, fmt.Errorf("Bad version in ReadMessageBegin"))
279 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400280 name, e = p.ReadString(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000281 if e != nil {
282 return name, typeId, seqId, NewTProtocolException(e)
283 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400284 seqId, e = p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000285 if e != nil {
286 return name, typeId, seqId, NewTProtocolException(e)
287 }
288 return name, typeId, seqId, nil
289 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400290 if p.cfg.GetTBinaryStrictRead() {
mpagenkoaf801632020-07-03 10:00:42 +0000291 return name, typeId, seqId, NewTProtocolExceptionWithType(BAD_VERSION, fmt.Errorf("Missing version in ReadMessageBegin"))
292 }
293 name, e2 := p.readStringBody(size)
294 if e2 != nil {
295 return name, typeId, seqId, e2
296 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400297 b, e3 := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000298 if e3 != nil {
299 return name, typeId, seqId, e3
300 }
301 typeId = TMessageType(b)
khenaidoo7d3c5582021-08-11 18:09:44 -0400302 seqId, e4 := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000303 if e4 != nil {
304 return name, typeId, seqId, e4
305 }
306 return name, typeId, seqId, nil
307}
308
khenaidoo7d3c5582021-08-11 18:09:44 -0400309func (p *TBinaryProtocol) ReadMessageEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000310 return nil
311}
312
khenaidoo7d3c5582021-08-11 18:09:44 -0400313func (p *TBinaryProtocol) ReadStructBegin(ctx context.Context) (name string, err error) {
mpagenkoaf801632020-07-03 10:00:42 +0000314 return
315}
316
khenaidoo7d3c5582021-08-11 18:09:44 -0400317func (p *TBinaryProtocol) ReadStructEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000318 return nil
319}
320
khenaidoo7d3c5582021-08-11 18:09:44 -0400321func (p *TBinaryProtocol) ReadFieldBegin(ctx context.Context) (name string, typeId TType, seqId int16, err error) {
322 t, err := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000323 typeId = TType(t)
324 if err != nil {
325 return name, typeId, seqId, err
326 }
327 if t != STOP {
khenaidoo7d3c5582021-08-11 18:09:44 -0400328 seqId, err = p.ReadI16(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000329 }
330 return name, typeId, seqId, err
331}
332
khenaidoo7d3c5582021-08-11 18:09:44 -0400333func (p *TBinaryProtocol) ReadFieldEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000334 return nil
335}
336
337var invalidDataLength = NewTProtocolExceptionWithType(INVALID_DATA, errors.New("Invalid data length"))
338
khenaidoo7d3c5582021-08-11 18:09:44 -0400339func (p *TBinaryProtocol) ReadMapBegin(ctx context.Context) (kType, vType TType, size int, err error) {
340 k, e := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000341 if e != nil {
342 err = NewTProtocolException(e)
343 return
344 }
345 kType = TType(k)
khenaidoo7d3c5582021-08-11 18:09:44 -0400346 v, e := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000347 if e != nil {
348 err = NewTProtocolException(e)
349 return
350 }
351 vType = TType(v)
khenaidoo7d3c5582021-08-11 18:09:44 -0400352 size32, e := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000353 if e != nil {
354 err = NewTProtocolException(e)
355 return
356 }
357 if size32 < 0 {
358 err = invalidDataLength
359 return
360 }
361 size = int(size32)
362 return kType, vType, size, nil
363}
364
khenaidoo7d3c5582021-08-11 18:09:44 -0400365func (p *TBinaryProtocol) ReadMapEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000366 return nil
367}
368
khenaidoo7d3c5582021-08-11 18:09:44 -0400369func (p *TBinaryProtocol) ReadListBegin(ctx context.Context) (elemType TType, size int, err error) {
370 b, e := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000371 if e != nil {
372 err = NewTProtocolException(e)
373 return
374 }
375 elemType = TType(b)
khenaidoo7d3c5582021-08-11 18:09:44 -0400376 size32, e := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000377 if e != nil {
378 err = NewTProtocolException(e)
379 return
380 }
381 if size32 < 0 {
382 err = invalidDataLength
383 return
384 }
385 size = int(size32)
386
387 return
388}
389
khenaidoo7d3c5582021-08-11 18:09:44 -0400390func (p *TBinaryProtocol) ReadListEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000391 return nil
392}
393
khenaidoo7d3c5582021-08-11 18:09:44 -0400394func (p *TBinaryProtocol) ReadSetBegin(ctx context.Context) (elemType TType, size int, err error) {
395 b, e := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000396 if e != nil {
397 err = NewTProtocolException(e)
398 return
399 }
400 elemType = TType(b)
khenaidoo7d3c5582021-08-11 18:09:44 -0400401 size32, e := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000402 if e != nil {
403 err = NewTProtocolException(e)
404 return
405 }
406 if size32 < 0 {
407 err = invalidDataLength
408 return
409 }
410 size = int(size32)
411 return elemType, size, nil
412}
413
khenaidoo7d3c5582021-08-11 18:09:44 -0400414func (p *TBinaryProtocol) ReadSetEnd(ctx context.Context) error {
mpagenkoaf801632020-07-03 10:00:42 +0000415 return nil
416}
417
khenaidoo7d3c5582021-08-11 18:09:44 -0400418func (p *TBinaryProtocol) ReadBool(ctx context.Context) (bool, error) {
419 b, e := p.ReadByte(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000420 v := true
421 if b != 1 {
422 v = false
423 }
424 return v, e
425}
426
khenaidoo7d3c5582021-08-11 18:09:44 -0400427func (p *TBinaryProtocol) ReadByte(ctx context.Context) (int8, error) {
mpagenkoaf801632020-07-03 10:00:42 +0000428 v, err := p.trans.ReadByte()
429 return int8(v), err
430}
431
khenaidoo7d3c5582021-08-11 18:09:44 -0400432func (p *TBinaryProtocol) ReadI16(ctx context.Context) (value int16, err error) {
mpagenkoaf801632020-07-03 10:00:42 +0000433 buf := p.buffer[0:2]
khenaidoo7d3c5582021-08-11 18:09:44 -0400434 err = p.readAll(ctx, buf)
mpagenkoaf801632020-07-03 10:00:42 +0000435 value = int16(binary.BigEndian.Uint16(buf))
436 return value, err
437}
438
khenaidoo7d3c5582021-08-11 18:09:44 -0400439func (p *TBinaryProtocol) ReadI32(ctx context.Context) (value int32, err error) {
mpagenkoaf801632020-07-03 10:00:42 +0000440 buf := p.buffer[0:4]
khenaidoo7d3c5582021-08-11 18:09:44 -0400441 err = p.readAll(ctx, buf)
mpagenkoaf801632020-07-03 10:00:42 +0000442 value = int32(binary.BigEndian.Uint32(buf))
443 return value, err
444}
445
khenaidoo7d3c5582021-08-11 18:09:44 -0400446func (p *TBinaryProtocol) ReadI64(ctx context.Context) (value int64, err error) {
mpagenkoaf801632020-07-03 10:00:42 +0000447 buf := p.buffer[0:8]
khenaidoo7d3c5582021-08-11 18:09:44 -0400448 err = p.readAll(ctx, buf)
mpagenkoaf801632020-07-03 10:00:42 +0000449 value = int64(binary.BigEndian.Uint64(buf))
450 return value, err
451}
452
khenaidoo7d3c5582021-08-11 18:09:44 -0400453func (p *TBinaryProtocol) ReadDouble(ctx context.Context) (value float64, err error) {
mpagenkoaf801632020-07-03 10:00:42 +0000454 buf := p.buffer[0:8]
khenaidoo7d3c5582021-08-11 18:09:44 -0400455 err = p.readAll(ctx, buf)
mpagenkoaf801632020-07-03 10:00:42 +0000456 value = math.Float64frombits(binary.BigEndian.Uint64(buf))
457 return value, err
458}
459
khenaidoo7d3c5582021-08-11 18:09:44 -0400460func (p *TBinaryProtocol) ReadString(ctx context.Context) (value string, err error) {
461 size, e := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000462 if e != nil {
463 return "", e
464 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400465 err = checkSizeForProtocol(size, p.cfg)
466 if err != nil {
467 return
468 }
mpagenkoaf801632020-07-03 10:00:42 +0000469 if size < 0 {
470 err = invalidDataLength
471 return
472 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400473 if size == 0 {
474 return "", nil
475 }
476 if size < int32(len(p.buffer)) {
477 // Avoid allocation on small reads
478 buf := p.buffer[:size]
479 read, e := io.ReadFull(p.trans, buf)
480 return string(buf[:read]), NewTProtocolException(e)
481 }
mpagenkoaf801632020-07-03 10:00:42 +0000482
483 return p.readStringBody(size)
484}
485
khenaidoo7d3c5582021-08-11 18:09:44 -0400486func (p *TBinaryProtocol) ReadBinary(ctx context.Context) ([]byte, error) {
487 size, e := p.ReadI32(ctx)
mpagenkoaf801632020-07-03 10:00:42 +0000488 if e != nil {
489 return nil, e
490 }
khenaidoo7d3c5582021-08-11 18:09:44 -0400491 if err := checkSizeForProtocol(size, p.cfg); err != nil {
492 return nil, err
mpagenkoaf801632020-07-03 10:00:42 +0000493 }
494
khenaidoo7d3c5582021-08-11 18:09:44 -0400495 buf, err := safeReadBytes(size, p.trans)
mpagenkoaf801632020-07-03 10:00:42 +0000496 return buf, NewTProtocolException(err)
497}
498
khenaidoo7d3c5582021-08-11 18:09:44 -0400499func (p *TBinaryProtocol) Flush(ctx context.Context) (err error) {
500 return NewTProtocolException(p.trans.Flush(ctx))
mpagenkoaf801632020-07-03 10:00:42 +0000501}
502
khenaidoo7d3c5582021-08-11 18:09:44 -0400503func (p *TBinaryProtocol) Skip(ctx context.Context, fieldType TType) (err error) {
504 return SkipDefaultDepth(ctx, p, fieldType)
mpagenkoaf801632020-07-03 10:00:42 +0000505}
506
507func (p *TBinaryProtocol) Transport() TTransport {
508 return p.origTransport
509}
510
khenaidoo7d3c5582021-08-11 18:09:44 -0400511func (p *TBinaryProtocol) readAll(ctx context.Context, buf []byte) (err error) {
512 var read int
513 _, deadlineSet := ctx.Deadline()
514 for {
515 read, err = io.ReadFull(p.trans, buf)
516 if deadlineSet && read == 0 && isTimeoutError(err) && ctx.Err() == nil {
517 // This is I/O timeout without anything read,
518 // and we still have time left, keep retrying.
519 continue
520 }
521 // For anything else, don't retry
522 break
523 }
mpagenkoaf801632020-07-03 10:00:42 +0000524 return NewTProtocolException(err)
525}
526
mpagenkoaf801632020-07-03 10:00:42 +0000527func (p *TBinaryProtocol) readStringBody(size int32) (value string, err error) {
khenaidoo7d3c5582021-08-11 18:09:44 -0400528 buf, err := safeReadBytes(size, p.trans)
529 return string(buf), NewTProtocolException(err)
530}
531
532func (p *TBinaryProtocol) SetTConfiguration(conf *TConfiguration) {
533 PropagateTConfiguration(p.trans, conf)
534 PropagateTConfiguration(p.origTransport, conf)
535 p.cfg = conf
536}
537
538var (
539 _ TConfigurationSetter = (*TBinaryProtocolFactory)(nil)
540 _ TConfigurationSetter = (*TBinaryProtocol)(nil)
541)
542
543// This function is shared between TBinaryProtocol and TCompactProtocol.
544//
545// It tries to read size bytes from trans, in a way that prevents large
546// allocations when size is insanely large (mostly caused by malformed message).
547func safeReadBytes(size int32, trans io.Reader) ([]byte, error) {
mpagenkoaf801632020-07-03 10:00:42 +0000548 if size < 0 {
khenaidoo7d3c5582021-08-11 18:09:44 -0400549 return nil, nil
mpagenkoaf801632020-07-03 10:00:42 +0000550 }
551
khenaidoo7d3c5582021-08-11 18:09:44 -0400552 buf := new(bytes.Buffer)
553 _, err := io.CopyN(buf, trans, int64(size))
554 return buf.Bytes(), err
mpagenkoaf801632020-07-03 10:00:42 +0000555}