blob: 45c880d32f8fd444e41662f06697cacff72683e1 [file] [log] [blame]
Rohan Agrawalc32d9932020-06-15 11:01:47 +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"
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000024 "context"
Rohan Agrawalc32d9932020-06-15 11:01:47 +000025 "encoding/binary"
26 "errors"
27 "fmt"
28 "io"
29 "math"
30)
31
32type TBinaryProtocol struct {
33 trans TRichTransport
34 origTransport TTransport
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000035 cfg *TConfiguration
Rohan Agrawalc32d9932020-06-15 11:01:47 +000036 buffer [64]byte
37}
38
39type TBinaryProtocolFactory struct {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000040 cfg *TConfiguration
Rohan Agrawalc32d9932020-06-15 11:01:47 +000041}
42
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000043// Deprecated: Use NewTBinaryProtocolConf instead.
Rohan Agrawalc32d9932020-06-15 11:01:47 +000044func NewTBinaryProtocolTransport(t TTransport) *TBinaryProtocol {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000045 return NewTBinaryProtocolConf(t, &TConfiguration{
46 noPropagation: true,
47 })
Rohan Agrawalc32d9932020-06-15 11:01:47 +000048}
49
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000050// Deprecated: Use NewTBinaryProtocolConf instead.
Rohan Agrawalc32d9932020-06-15 11:01:47 +000051func NewTBinaryProtocol(t TTransport, strictRead, strictWrite bool) *TBinaryProtocol {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000052 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 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +000066 if et, ok := t.(TRichTransport); ok {
67 p.trans = et
68 } else {
69 p.trans = NewTRichTransport(t)
70 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +000071 return p
72}
73
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000074// Deprecated: Use NewTBinaryProtocolFactoryConf instead.
Rohan Agrawalc32d9932020-06-15 11:01:47 +000075func NewTBinaryProtocolFactoryDefault() *TBinaryProtocolFactory {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000076 return NewTBinaryProtocolFactoryConf(&TConfiguration{
77 noPropagation: true,
78 })
Rohan Agrawalc32d9932020-06-15 11:01:47 +000079}
80
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000081// Deprecated: Use NewTBinaryProtocolFactoryConf instead.
Rohan Agrawalc32d9932020-06-15 11:01:47 +000082func NewTBinaryProtocolFactory(strictRead, strictWrite bool) *TBinaryProtocolFactory {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000083 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 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +000095}
96
97func (p *TBinaryProtocolFactory) GetProtocol(t TTransport) TProtocol {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +000098 return NewTBinaryProtocolConf(t, p.cfg)
99}
100
101func (p *TBinaryProtocolFactory) SetTConfiguration(conf *TConfiguration) {
102 p.cfg = conf
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000103}
104
105/**
106 * Writing Methods
107 */
108
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000109func (p *TBinaryProtocol) WriteMessageBegin(ctx context.Context, name string, typeId TMessageType, seqId int32) error {
110 if p.cfg.GetTBinaryStrictWrite() {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000111 version := uint32(VERSION_1) | uint32(typeId)
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000112 e := p.WriteI32(ctx, int32(version))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000113 if e != nil {
114 return e
115 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000116 e = p.WriteString(ctx, name)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000117 if e != nil {
118 return e
119 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000120 e = p.WriteI32(ctx, seqId)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000121 return e
122 } else {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000123 e := p.WriteString(ctx, name)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000124 if e != nil {
125 return e
126 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000127 e = p.WriteByte(ctx, int8(typeId))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000128 if e != nil {
129 return e
130 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000131 e = p.WriteI32(ctx, seqId)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000132 return e
133 }
134 return nil
135}
136
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000137func (p *TBinaryProtocol) WriteMessageEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000138 return nil
139}
140
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000141func (p *TBinaryProtocol) WriteStructBegin(ctx context.Context, name string) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000142 return nil
143}
144
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000145func (p *TBinaryProtocol) WriteStructEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000146 return nil
147}
148
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000149func (p *TBinaryProtocol) WriteFieldBegin(ctx context.Context, name string, typeId TType, id int16) error {
150 e := p.WriteByte(ctx, int8(typeId))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000151 if e != nil {
152 return e
153 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000154 e = p.WriteI16(ctx, id)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000155 return e
156}
157
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000158func (p *TBinaryProtocol) WriteFieldEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000159 return nil
160}
161
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000162func (p *TBinaryProtocol) WriteFieldStop(ctx context.Context) error {
163 e := p.WriteByte(ctx, STOP)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000164 return e
165}
166
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000167func (p *TBinaryProtocol) WriteMapBegin(ctx context.Context, keyType TType, valueType TType, size int) error {
168 e := p.WriteByte(ctx, int8(keyType))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000169 if e != nil {
170 return e
171 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000172 e = p.WriteByte(ctx, int8(valueType))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000173 if e != nil {
174 return e
175 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000176 e = p.WriteI32(ctx, int32(size))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000177 return e
178}
179
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000180func (p *TBinaryProtocol) WriteMapEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000181 return nil
182}
183
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000184func (p *TBinaryProtocol) WriteListBegin(ctx context.Context, elemType TType, size int) error {
185 e := p.WriteByte(ctx, int8(elemType))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000186 if e != nil {
187 return e
188 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000189 e = p.WriteI32(ctx, int32(size))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000190 return e
191}
192
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000193func (p *TBinaryProtocol) WriteListEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000194 return nil
195}
196
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000197func (p *TBinaryProtocol) WriteSetBegin(ctx context.Context, elemType TType, size int) error {
198 e := p.WriteByte(ctx, int8(elemType))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000199 if e != nil {
200 return e
201 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000202 e = p.WriteI32(ctx, int32(size))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000203 return e
204}
205
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000206func (p *TBinaryProtocol) WriteSetEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000207 return nil
208}
209
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000210func (p *TBinaryProtocol) WriteBool(ctx context.Context, value bool) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000211 if value {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000212 return p.WriteByte(ctx, 1)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000213 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000214 return p.WriteByte(ctx, 0)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000215}
216
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000217func (p *TBinaryProtocol) WriteByte(ctx context.Context, value int8) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000218 e := p.trans.WriteByte(byte(value))
219 return NewTProtocolException(e)
220}
221
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000222func (p *TBinaryProtocol) WriteI16(ctx context.Context, value int16) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000223 v := p.buffer[0:2]
224 binary.BigEndian.PutUint16(v, uint16(value))
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000225 _, e := p.trans.Write(v)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000226 return NewTProtocolException(e)
227}
228
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000229func (p *TBinaryProtocol) WriteI32(ctx context.Context, value int32) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000230 v := p.buffer[0:4]
231 binary.BigEndian.PutUint32(v, uint32(value))
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000232 _, e := p.trans.Write(v)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000233 return NewTProtocolException(e)
234}
235
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000236func (p *TBinaryProtocol) WriteI64(ctx context.Context, value int64) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000237 v := p.buffer[0:8]
238 binary.BigEndian.PutUint64(v, uint64(value))
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000239 _, err := p.trans.Write(v)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000240 return NewTProtocolException(err)
241}
242
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000243func (p *TBinaryProtocol) WriteDouble(ctx context.Context, value float64) error {
244 return p.WriteI64(ctx, int64(math.Float64bits(value)))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000245}
246
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000247func (p *TBinaryProtocol) WriteString(ctx context.Context, value string) error {
248 e := p.WriteI32(ctx, int32(len(value)))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000249 if e != nil {
250 return e
251 }
252 _, err := p.trans.WriteString(value)
253 return NewTProtocolException(err)
254}
255
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000256func (p *TBinaryProtocol) WriteBinary(ctx context.Context, value []byte) error {
257 e := p.WriteI32(ctx, int32(len(value)))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000258 if e != nil {
259 return e
260 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000261 _, err := p.trans.Write(value)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000262 return NewTProtocolException(err)
263}
264
265/**
266 * Reading methods
267 */
268
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000269func (p *TBinaryProtocol) ReadMessageBegin(ctx context.Context) (name string, typeId TMessageType, seqId int32, err error) {
270 size, e := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +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 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000280 name, e = p.ReadString(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000281 if e != nil {
282 return name, typeId, seqId, NewTProtocolException(e)
283 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000284 seqId, e = p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000285 if e != nil {
286 return name, typeId, seqId, NewTProtocolException(e)
287 }
288 return name, typeId, seqId, nil
289 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000290 if p.cfg.GetTBinaryStrictRead() {
Rohan Agrawalc32d9932020-06-15 11:01:47 +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 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000297 b, e3 := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000298 if e3 != nil {
299 return name, typeId, seqId, e3
300 }
301 typeId = TMessageType(b)
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000302 seqId, e4 := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000303 if e4 != nil {
304 return name, typeId, seqId, e4
305 }
306 return name, typeId, seqId, nil
307}
308
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000309func (p *TBinaryProtocol) ReadMessageEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000310 return nil
311}
312
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000313func (p *TBinaryProtocol) ReadStructBegin(ctx context.Context) (name string, err error) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000314 return
315}
316
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000317func (p *TBinaryProtocol) ReadStructEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000318 return nil
319}
320
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000321func (p *TBinaryProtocol) ReadFieldBegin(ctx context.Context) (name string, typeId TType, seqId int16, err error) {
322 t, err := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000323 typeId = TType(t)
324 if err != nil {
325 return name, typeId, seqId, err
326 }
327 if t != STOP {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000328 seqId, err = p.ReadI16(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000329 }
330 return name, typeId, seqId, err
331}
332
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000333func (p *TBinaryProtocol) ReadFieldEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000334 return nil
335}
336
337var invalidDataLength = NewTProtocolExceptionWithType(INVALID_DATA, errors.New("Invalid data length"))
338
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000339func (p *TBinaryProtocol) ReadMapBegin(ctx context.Context) (kType, vType TType, size int, err error) {
340 k, e := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000341 if e != nil {
342 err = NewTProtocolException(e)
343 return
344 }
345 kType = TType(k)
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000346 v, e := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000347 if e != nil {
348 err = NewTProtocolException(e)
349 return
350 }
351 vType = TType(v)
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000352 size32, e := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +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
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000365func (p *TBinaryProtocol) ReadMapEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000366 return nil
367}
368
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000369func (p *TBinaryProtocol) ReadListBegin(ctx context.Context) (elemType TType, size int, err error) {
370 b, e := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000371 if e != nil {
372 err = NewTProtocolException(e)
373 return
374 }
375 elemType = TType(b)
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000376 size32, e := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +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
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000390func (p *TBinaryProtocol) ReadListEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000391 return nil
392}
393
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000394func (p *TBinaryProtocol) ReadSetBegin(ctx context.Context) (elemType TType, size int, err error) {
395 b, e := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000396 if e != nil {
397 err = NewTProtocolException(e)
398 return
399 }
400 elemType = TType(b)
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000401 size32, e := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +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
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000414func (p *TBinaryProtocol) ReadSetEnd(ctx context.Context) error {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000415 return nil
416}
417
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000418func (p *TBinaryProtocol) ReadBool(ctx context.Context) (bool, error) {
419 b, e := p.ReadByte(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000420 v := true
421 if b != 1 {
422 v = false
423 }
424 return v, e
425}
426
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000427func (p *TBinaryProtocol) ReadByte(ctx context.Context) (int8, error) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000428 v, err := p.trans.ReadByte()
429 return int8(v), err
430}
431
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000432func (p *TBinaryProtocol) ReadI16(ctx context.Context) (value int16, err error) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000433 buf := p.buffer[0:2]
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000434 err = p.readAll(ctx, buf)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000435 value = int16(binary.BigEndian.Uint16(buf))
436 return value, err
437}
438
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000439func (p *TBinaryProtocol) ReadI32(ctx context.Context) (value int32, err error) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000440 buf := p.buffer[0:4]
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000441 err = p.readAll(ctx, buf)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000442 value = int32(binary.BigEndian.Uint32(buf))
443 return value, err
444}
445
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000446func (p *TBinaryProtocol) ReadI64(ctx context.Context) (value int64, err error) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000447 buf := p.buffer[0:8]
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000448 err = p.readAll(ctx, buf)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000449 value = int64(binary.BigEndian.Uint64(buf))
450 return value, err
451}
452
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000453func (p *TBinaryProtocol) ReadDouble(ctx context.Context) (value float64, err error) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000454 buf := p.buffer[0:8]
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000455 err = p.readAll(ctx, buf)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000456 value = math.Float64frombits(binary.BigEndian.Uint64(buf))
457 return value, err
458}
459
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000460func (p *TBinaryProtocol) ReadString(ctx context.Context) (value string, err error) {
461 size, e := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000462 if e != nil {
463 return "", e
464 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000465 err = checkSizeForProtocol(size, p.cfg)
466 if err != nil {
467 return
468 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000469 if size < 0 {
470 err = invalidDataLength
471 return
472 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000473 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 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000482
483 return p.readStringBody(size)
484}
485
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000486func (p *TBinaryProtocol) ReadBinary(ctx context.Context) ([]byte, error) {
487 size, e := p.ReadI32(ctx)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000488 if e != nil {
489 return nil, e
490 }
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000491 if err := checkSizeForProtocol(size, p.cfg); err != nil {
492 return nil, err
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000493 }
494
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000495 buf, err := safeReadBytes(size, p.trans)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000496 return buf, NewTProtocolException(err)
497}
498
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000499func (p *TBinaryProtocol) Flush(ctx context.Context) (err error) {
500 return NewTProtocolException(p.trans.Flush(ctx))
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000501}
502
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000503func (p *TBinaryProtocol) Skip(ctx context.Context, fieldType TType) (err error) {
504 return SkipDefaultDepth(ctx, p, fieldType)
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000505}
506
507func (p *TBinaryProtocol) Transport() TTransport {
508 return p.origTransport
509}
510
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000511func (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 }
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000524 return NewTProtocolException(err)
525}
526
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000527func (p *TBinaryProtocol) readStringBody(size int32) (value string, err error) {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000528 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) {
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000548 if size < 0 {
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000549 return nil, nil
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000550 }
551
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +0000552 buf := new(bytes.Buffer)
553 _, err := io.CopyN(buf, trans, int64(size))
554 return buf.Bytes(), err
Rohan Agrawalc32d9932020-06-15 11:01:47 +0000555}