blob: 45c880d32f8fd444e41662f06697cacff72683e1 [file] [log] [blame]
khenaidooc6c7bda2020-06-17 17:20:18 -04001/*
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"
khenaidood948f772021-08-11 17:49:24 -040024 "context"
khenaidooc6c7bda2020-06-17 17:20:18 -040025 "encoding/binary"
26 "errors"
27 "fmt"
28 "io"
29 "math"
30)
31
32type TBinaryProtocol struct {
33 trans TRichTransport
34 origTransport TTransport
khenaidood948f772021-08-11 17:49:24 -040035 cfg *TConfiguration
khenaidooc6c7bda2020-06-17 17:20:18 -040036 buffer [64]byte
37}
38
39type TBinaryProtocolFactory struct {
khenaidood948f772021-08-11 17:49:24 -040040 cfg *TConfiguration
khenaidooc6c7bda2020-06-17 17:20:18 -040041}
42
khenaidood948f772021-08-11 17:49:24 -040043// Deprecated: Use NewTBinaryProtocolConf instead.
khenaidooc6c7bda2020-06-17 17:20:18 -040044func NewTBinaryProtocolTransport(t TTransport) *TBinaryProtocol {
khenaidood948f772021-08-11 17:49:24 -040045 return NewTBinaryProtocolConf(t, &TConfiguration{
46 noPropagation: true,
47 })
khenaidooc6c7bda2020-06-17 17:20:18 -040048}
49
khenaidood948f772021-08-11 17:49:24 -040050// Deprecated: Use NewTBinaryProtocolConf instead.
khenaidooc6c7bda2020-06-17 17:20:18 -040051func NewTBinaryProtocol(t TTransport, strictRead, strictWrite bool) *TBinaryProtocol {
khenaidood948f772021-08-11 17:49:24 -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 }
khenaidooc6c7bda2020-06-17 17:20:18 -040066 if et, ok := t.(TRichTransport); ok {
67 p.trans = et
68 } else {
69 p.trans = NewTRichTransport(t)
70 }
khenaidooc6c7bda2020-06-17 17:20:18 -040071 return p
72}
73
khenaidood948f772021-08-11 17:49:24 -040074// Deprecated: Use NewTBinaryProtocolFactoryConf instead.
khenaidooc6c7bda2020-06-17 17:20:18 -040075func NewTBinaryProtocolFactoryDefault() *TBinaryProtocolFactory {
khenaidood948f772021-08-11 17:49:24 -040076 return NewTBinaryProtocolFactoryConf(&TConfiguration{
77 noPropagation: true,
78 })
khenaidooc6c7bda2020-06-17 17:20:18 -040079}
80
khenaidood948f772021-08-11 17:49:24 -040081// Deprecated: Use NewTBinaryProtocolFactoryConf instead.
khenaidooc6c7bda2020-06-17 17:20:18 -040082func NewTBinaryProtocolFactory(strictRead, strictWrite bool) *TBinaryProtocolFactory {
khenaidood948f772021-08-11 17:49:24 -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 }
khenaidooc6c7bda2020-06-17 17:20:18 -040095}
96
97func (p *TBinaryProtocolFactory) GetProtocol(t TTransport) TProtocol {
khenaidood948f772021-08-11 17:49:24 -040098 return NewTBinaryProtocolConf(t, p.cfg)
99}
100
101func (p *TBinaryProtocolFactory) SetTConfiguration(conf *TConfiguration) {
102 p.cfg = conf
khenaidooc6c7bda2020-06-17 17:20:18 -0400103}
104
105/**
106 * Writing Methods
107 */
108
khenaidood948f772021-08-11 17:49:24 -0400109func (p *TBinaryProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, seqId int32) error {
110 if p.cfg.GetTBinaryStrictWrite() {
khenaidooc6c7bda2020-06-17 17:20:18 -0400111 version := uint32(VERSION_1) | uint32(typeId)
khenaidood948f772021-08-11 17:49:24 -0400112 e := p.WriteI32(ctx, int32(version))
khenaidooc6c7bda2020-06-17 17:20:18 -0400113 if e != nil {
114 return e
115 }
khenaidood948f772021-08-11 17:49:24 -0400116 e = p.WriteString(ctx, name)
khenaidooc6c7bda2020-06-17 17:20:18 -0400117 if e != nil {
118 return e
119 }
khenaidood948f772021-08-11 17:49:24 -0400120 e = p.WriteI32(ctx, seqId)
khenaidooc6c7bda2020-06-17 17:20:18 -0400121 return e
122 } else {
khenaidood948f772021-08-11 17:49:24 -0400123 e := p.WriteString(ctx, name)
khenaidooc6c7bda2020-06-17 17:20:18 -0400124 if e != nil {
125 return e
126 }
khenaidood948f772021-08-11 17:49:24 -0400127 e = p.WriteByte(ctx, int8(typeId))
khenaidooc6c7bda2020-06-17 17:20:18 -0400128 if e != nil {
129 return e
130 }
khenaidood948f772021-08-11 17:49:24 -0400131 e = p.WriteI32(ctx, seqId)
khenaidooc6c7bda2020-06-17 17:20:18 -0400132 return e
133 }
134 return nil
135}
136
khenaidood948f772021-08-11 17:49:24 -0400137func (p *TBinaryProtocol) WriteMessageEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400138 return nil
139}
140
khenaidood948f772021-08-11 17:49:24 -0400141func (p *TBinaryProtocol) WriteStructBegin(ctx context.Context, name string) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400142 return nil
143}
144
khenaidood948f772021-08-11 17:49:24 -0400145func (p *TBinaryProtocol) WriteStructEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400146 return nil
147}
148
khenaidood948f772021-08-11 17:49:24 -0400149func (p *TBinaryProtocol) WriteFieldBegin(ctx context.Context, name string, typeId TType, id int16) error {
150 e := p.WriteByte(ctx, int8(typeId))
khenaidooc6c7bda2020-06-17 17:20:18 -0400151 if e != nil {
152 return e
153 }
khenaidood948f772021-08-11 17:49:24 -0400154 e = p.WriteI16(ctx, id)
khenaidooc6c7bda2020-06-17 17:20:18 -0400155 return e
156}
157
khenaidood948f772021-08-11 17:49:24 -0400158func (p *TBinaryProtocol) WriteFieldEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400159 return nil
160}
161
khenaidood948f772021-08-11 17:49:24 -0400162func (p *TBinaryProtocol) WriteFieldStop(ctx context.Context) error {
163 e := p.WriteByte(ctx, STOP)
khenaidooc6c7bda2020-06-17 17:20:18 -0400164 return e
165}
166
khenaidood948f772021-08-11 17:49:24 -0400167func (p *TBinaryProtocol) WriteMapBegin(ctx context.Context, keyType TType, valueType TType, size int) error {
168 e := p.WriteByte(ctx, int8(keyType))
khenaidooc6c7bda2020-06-17 17:20:18 -0400169 if e != nil {
170 return e
171 }
khenaidood948f772021-08-11 17:49:24 -0400172 e = p.WriteByte(ctx, int8(valueType))
khenaidooc6c7bda2020-06-17 17:20:18 -0400173 if e != nil {
174 return e
175 }
khenaidood948f772021-08-11 17:49:24 -0400176 e = p.WriteI32(ctx, int32(size))
khenaidooc6c7bda2020-06-17 17:20:18 -0400177 return e
178}
179
khenaidood948f772021-08-11 17:49:24 -0400180func (p *TBinaryProtocol) WriteMapEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400181 return nil
182}
183
khenaidood948f772021-08-11 17:49:24 -0400184func (p *TBinaryProtocol) WriteListBegin(ctx context.Context, elemType TType, size int) error {
185 e := p.WriteByte(ctx, int8(elemType))
khenaidooc6c7bda2020-06-17 17:20:18 -0400186 if e != nil {
187 return e
188 }
khenaidood948f772021-08-11 17:49:24 -0400189 e = p.WriteI32(ctx, int32(size))
khenaidooc6c7bda2020-06-17 17:20:18 -0400190 return e
191}
192
khenaidood948f772021-08-11 17:49:24 -0400193func (p *TBinaryProtocol) WriteListEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400194 return nil
195}
196
khenaidood948f772021-08-11 17:49:24 -0400197func (p *TBinaryProtocol) WriteSetBegin(ctx context.Context, elemType TType, size int) error {
198 e := p.WriteByte(ctx, int8(elemType))
khenaidooc6c7bda2020-06-17 17:20:18 -0400199 if e != nil {
200 return e
201 }
khenaidood948f772021-08-11 17:49:24 -0400202 e = p.WriteI32(ctx, int32(size))
khenaidooc6c7bda2020-06-17 17:20:18 -0400203 return e
204}
205
khenaidood948f772021-08-11 17:49:24 -0400206func (p *TBinaryProtocol) WriteSetEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400207 return nil
208}
209
khenaidood948f772021-08-11 17:49:24 -0400210func (p *TBinaryProtocol) WriteBool(ctx context.Context, value bool) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400211 if value {
khenaidood948f772021-08-11 17:49:24 -0400212 return p.WriteByte(ctx, 1)
khenaidooc6c7bda2020-06-17 17:20:18 -0400213 }
khenaidood948f772021-08-11 17:49:24 -0400214 return p.WriteByte(ctx, 0)
khenaidooc6c7bda2020-06-17 17:20:18 -0400215}
216
khenaidood948f772021-08-11 17:49:24 -0400217func (p *TBinaryProtocol) WriteByte(ctx context.Context, value int8) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400218 e := p.trans.WriteByte(byte(value))
219 return NewTProtocolException(e)
220}
221
khenaidood948f772021-08-11 17:49:24 -0400222func (p *TBinaryProtocol) WriteI16(ctx context.Context, value int16) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400223 v := p.buffer[0:2]
224 binary.BigEndian.PutUint16(v, uint16(value))
khenaidood948f772021-08-11 17:49:24 -0400225 _, e := p.trans.Write(v)
khenaidooc6c7bda2020-06-17 17:20:18 -0400226 return NewTProtocolException(e)
227}
228
khenaidood948f772021-08-11 17:49:24 -0400229func (p *TBinaryProtocol) WriteI32(ctx context.Context, value int32) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400230 v := p.buffer[0:4]
231 binary.BigEndian.PutUint32(v, uint32(value))
khenaidood948f772021-08-11 17:49:24 -0400232 _, e := p.trans.Write(v)
khenaidooc6c7bda2020-06-17 17:20:18 -0400233 return NewTProtocolException(e)
234}
235
khenaidood948f772021-08-11 17:49:24 -0400236func (p *TBinaryProtocol) WriteI64(ctx context.Context, value int64) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400237 v := p.buffer[0:8]
238 binary.BigEndian.PutUint64(v, uint64(value))
khenaidood948f772021-08-11 17:49:24 -0400239 _, err := p.trans.Write(v)
khenaidooc6c7bda2020-06-17 17:20:18 -0400240 return NewTProtocolException(err)
241}
242
khenaidood948f772021-08-11 17:49:24 -0400243func (p *TBinaryProtocol) WriteDouble(ctx context.Context, value float64) error {
244 return p.WriteI64(ctx, int64(math.Float64bits(value)))
khenaidooc6c7bda2020-06-17 17:20:18 -0400245}
246
khenaidood948f772021-08-11 17:49:24 -0400247func (p *TBinaryProtocol) WriteString(ctx context.Context, value string) error {
248 e := p.WriteI32(ctx, int32(len(value)))
khenaidooc6c7bda2020-06-17 17:20:18 -0400249 if e != nil {
250 return e
251 }
252 _, err := p.trans.WriteString(value)
253 return NewTProtocolException(err)
254}
255
khenaidood948f772021-08-11 17:49:24 -0400256func (p *TBinaryProtocol) WriteBinary(ctx context.Context, value []byte) error {
257 e := p.WriteI32(ctx, int32(len(value)))
khenaidooc6c7bda2020-06-17 17:20:18 -0400258 if e != nil {
259 return e
260 }
khenaidood948f772021-08-11 17:49:24 -0400261 _, err := p.trans.Write(value)
khenaidooc6c7bda2020-06-17 17:20:18 -0400262 return NewTProtocolException(err)
263}
264
265/**
266 * Reading methods
267 */
268
khenaidood948f772021-08-11 17:49:24 -0400269func (p *TBinaryProtocol) ReadMessageBegin(ctx context.Context) (name string, typeId TMessageType, seqId int32, err error) {
270 size, e := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400271 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 }
khenaidood948f772021-08-11 17:49:24 -0400280 name, e = p.ReadString(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400281 if e != nil {
282 return name, typeId, seqId, NewTProtocolException(e)
283 }
khenaidood948f772021-08-11 17:49:24 -0400284 seqId, e = p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400285 if e != nil {
286 return name, typeId, seqId, NewTProtocolException(e)
287 }
288 return name, typeId, seqId, nil
289 }
khenaidood948f772021-08-11 17:49:24 -0400290 if p.cfg.GetTBinaryStrictRead() {
khenaidooc6c7bda2020-06-17 17:20:18 -0400291 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 }
khenaidood948f772021-08-11 17:49:24 -0400297 b, e3 := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400298 if e3 != nil {
299 return name, typeId, seqId, e3
300 }
301 typeId = TMessageType(b)
khenaidood948f772021-08-11 17:49:24 -0400302 seqId, e4 := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400303 if e4 != nil {
304 return name, typeId, seqId, e4
305 }
306 return name, typeId, seqId, nil
307}
308
khenaidood948f772021-08-11 17:49:24 -0400309func (p *TBinaryProtocol) ReadMessageEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400310 return nil
311}
312
khenaidood948f772021-08-11 17:49:24 -0400313func (p *TBinaryProtocol) ReadStructBegin(ctx context.Context) (name string, err error) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400314 return
315}
316
khenaidood948f772021-08-11 17:49:24 -0400317func (p *TBinaryProtocol) ReadStructEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400318 return nil
319}
320
khenaidood948f772021-08-11 17:49:24 -0400321func (p *TBinaryProtocol) ReadFieldBegin(ctx context.Context) (name string, typeId TType, seqId int16, err error) {
322 t, err := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400323 typeId = TType(t)
324 if err != nil {
325 return name, typeId, seqId, err
326 }
327 if t != STOP {
khenaidood948f772021-08-11 17:49:24 -0400328 seqId, err = p.ReadI16(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400329 }
330 return name, typeId, seqId, err
331}
332
khenaidood948f772021-08-11 17:49:24 -0400333func (p *TBinaryProtocol) ReadFieldEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400334 return nil
335}
336
337var invalidDataLength = NewTProtocolExceptionWithType(INVALID_DATA, errors.New("Invalid data length"))
338
khenaidood948f772021-08-11 17:49:24 -0400339func (p *TBinaryProtocol) ReadMapBegin(ctx context.Context) (kType, vType TType, size int, err error) {
340 k, e := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400341 if e != nil {
342 err = NewTProtocolException(e)
343 return
344 }
345 kType = TType(k)
khenaidood948f772021-08-11 17:49:24 -0400346 v, e := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400347 if e != nil {
348 err = NewTProtocolException(e)
349 return
350 }
351 vType = TType(v)
khenaidood948f772021-08-11 17:49:24 -0400352 size32, e := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400353 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
khenaidood948f772021-08-11 17:49:24 -0400365func (p *TBinaryProtocol) ReadMapEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400366 return nil
367}
368
khenaidood948f772021-08-11 17:49:24 -0400369func (p *TBinaryProtocol) ReadListBegin(ctx context.Context) (elemType TType, size int, err error) {
370 b, e := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400371 if e != nil {
372 err = NewTProtocolException(e)
373 return
374 }
375 elemType = TType(b)
khenaidood948f772021-08-11 17:49:24 -0400376 size32, e := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400377 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
khenaidood948f772021-08-11 17:49:24 -0400390func (p *TBinaryProtocol) ReadListEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400391 return nil
392}
393
khenaidood948f772021-08-11 17:49:24 -0400394func (p *TBinaryProtocol) ReadSetBegin(ctx context.Context) (elemType TType, size int, err error) {
395 b, e := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400396 if e != nil {
397 err = NewTProtocolException(e)
398 return
399 }
400 elemType = TType(b)
khenaidood948f772021-08-11 17:49:24 -0400401 size32, e := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400402 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
khenaidood948f772021-08-11 17:49:24 -0400414func (p *TBinaryProtocol) ReadSetEnd(ctx context.Context) error {
khenaidooc6c7bda2020-06-17 17:20:18 -0400415 return nil
416}
417
khenaidood948f772021-08-11 17:49:24 -0400418func (p *TBinaryProtocol) ReadBool(ctx context.Context) (bool, error) {
419 b, e := p.ReadByte(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400420 v := true
421 if b != 1 {
422 v = false
423 }
424 return v, e
425}
426
khenaidood948f772021-08-11 17:49:24 -0400427func (p *TBinaryProtocol) ReadByte(ctx context.Context) (int8, error) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400428 v, err := p.trans.ReadByte()
429 return int8(v), err
430}
431
khenaidood948f772021-08-11 17:49:24 -0400432func (p *TBinaryProtocol) ReadI16(ctx context.Context) (value int16, err error) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400433 buf := p.buffer[0:2]
khenaidood948f772021-08-11 17:49:24 -0400434 err = p.readAll(ctx, buf)
khenaidooc6c7bda2020-06-17 17:20:18 -0400435 value = int16(binary.BigEndian.Uint16(buf))
436 return value, err
437}
438
khenaidood948f772021-08-11 17:49:24 -0400439func (p *TBinaryProtocol) ReadI32(ctx context.Context) (value int32, err error) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400440 buf := p.buffer[0:4]
khenaidood948f772021-08-11 17:49:24 -0400441 err = p.readAll(ctx, buf)
khenaidooc6c7bda2020-06-17 17:20:18 -0400442 value = int32(binary.BigEndian.Uint32(buf))
443 return value, err
444}
445
khenaidood948f772021-08-11 17:49:24 -0400446func (p *TBinaryProtocol) ReadI64(ctx context.Context) (value int64, err error) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400447 buf := p.buffer[0:8]
khenaidood948f772021-08-11 17:49:24 -0400448 err = p.readAll(ctx, buf)
khenaidooc6c7bda2020-06-17 17:20:18 -0400449 value = int64(binary.BigEndian.Uint64(buf))
450 return value, err
451}
452
khenaidood948f772021-08-11 17:49:24 -0400453func (p *TBinaryProtocol) ReadDouble(ctx context.Context) (value float64, err error) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400454 buf := p.buffer[0:8]
khenaidood948f772021-08-11 17:49:24 -0400455 err = p.readAll(ctx, buf)
khenaidooc6c7bda2020-06-17 17:20:18 -0400456 value = math.Float64frombits(binary.BigEndian.Uint64(buf))
457 return value, err
458}
459
khenaidood948f772021-08-11 17:49:24 -0400460func (p *TBinaryProtocol) ReadString(ctx context.Context) (value string, err error) {
461 size, e := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400462 if e != nil {
463 return "", e
464 }
khenaidood948f772021-08-11 17:49:24 -0400465 err = checkSizeForProtocol(size, p.cfg)
466 if err != nil {
467 return
468 }
khenaidooc6c7bda2020-06-17 17:20:18 -0400469 if size < 0 {
470 err = invalidDataLength
471 return
472 }
khenaidood948f772021-08-11 17:49:24 -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 }
khenaidooc6c7bda2020-06-17 17:20:18 -0400482
483 return p.readStringBody(size)
484}
485
khenaidood948f772021-08-11 17:49:24 -0400486func (p *TBinaryProtocol) ReadBinary(ctx context.Context) ([]byte, error) {
487 size, e := p.ReadI32(ctx)
khenaidooc6c7bda2020-06-17 17:20:18 -0400488 if e != nil {
489 return nil, e
490 }
khenaidood948f772021-08-11 17:49:24 -0400491 if err := checkSizeForProtocol(size, p.cfg); err != nil {
492 return nil, err
khenaidooc6c7bda2020-06-17 17:20:18 -0400493 }
494
khenaidood948f772021-08-11 17:49:24 -0400495 buf, err := safeReadBytes(size, p.trans)
khenaidooc6c7bda2020-06-17 17:20:18 -0400496 return buf, NewTProtocolException(err)
497}
498
khenaidood948f772021-08-11 17:49:24 -0400499func (p *TBinaryProtocol) Flush(ctx context.Context) (err error) {
500 return NewTProtocolException(p.trans.Flush(ctx))
khenaidooc6c7bda2020-06-17 17:20:18 -0400501}
502
khenaidood948f772021-08-11 17:49:24 -0400503func (p *TBinaryProtocol) Skip(ctx context.Context, fieldType TType) (err error) {
504 return SkipDefaultDepth(ctx, p, fieldType)
khenaidooc6c7bda2020-06-17 17:20:18 -0400505}
506
507func (p *TBinaryProtocol) Transport() TTransport {
508 return p.origTransport
509}
510
khenaidood948f772021-08-11 17:49:24 -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 }
khenaidooc6c7bda2020-06-17 17:20:18 -0400524 return NewTProtocolException(err)
525}
526
khenaidooc6c7bda2020-06-17 17:20:18 -0400527func (p *TBinaryProtocol) readStringBody(size int32) (value string, err error) {
khenaidood948f772021-08-11 17:49:24 -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) {
khenaidooc6c7bda2020-06-17 17:20:18 -0400548 if size < 0 {
khenaidood948f772021-08-11 17:49:24 -0400549 return nil, nil
khenaidooc6c7bda2020-06-17 17:20:18 -0400550 }
551
khenaidood948f772021-08-11 17:49:24 -0400552 buf := new(bytes.Buffer)
553 _, err := io.CopyN(buf, trans, int64(size))
554 return buf.Bytes(), err
khenaidooc6c7bda2020-06-17 17:20:18 -0400555}