Jens Geyer | b0d3c3f | 2013-09-09 21:10:45 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 20 | package thrift |
| 21 | |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 22 | import ( |
| 23 | "context" |
| 24 | ) |
| 25 | |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 26 | type TSerializer struct { |
Jens Geyer | 7949447 | 2013-12-03 22:57:05 +0100 | [diff] [blame] | 27 | Transport *TMemoryBuffer |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 28 | Protocol TProtocol |
| 29 | } |
| 30 | |
| 31 | type TStruct interface { |
| 32 | Write(p TProtocol) error |
| 33 | Read(p TProtocol) error |
| 34 | } |
| 35 | |
| 36 | func NewTSerializer() *TSerializer { |
Jens Geyer | 7949447 | 2013-12-03 22:57:05 +0100 | [diff] [blame] | 37 | transport := NewTMemoryBufferLen(1024) |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 38 | protocol := NewTBinaryProtocolFactoryDefault().GetProtocol(transport) |
| 39 | |
| 40 | return &TSerializer{ |
| 41 | transport, |
| 42 | protocol} |
| 43 | } |
| 44 | |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 45 | func (t *TSerializer) WriteString(ctx context.Context, msg TStruct) (s string, err error) { |
Jens Geyer | 7949447 | 2013-12-03 22:57:05 +0100 | [diff] [blame] | 46 | t.Transport.Reset() |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 47 | |
| 48 | if err = msg.Write(t.Protocol); err != nil { |
| 49 | return |
| 50 | } |
| 51 | |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 52 | if err = t.Protocol.Flush(ctx); err != nil { |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 53 | return |
| 54 | } |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 55 | if err = t.Transport.Flush(ctx); err != nil { |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 56 | return |
| 57 | } |
| 58 | |
Jens Geyer | 7949447 | 2013-12-03 22:57:05 +0100 | [diff] [blame] | 59 | return t.Transport.String(), nil |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 60 | } |
| 61 | |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 62 | func (t *TSerializer) Write(ctx context.Context, msg TStruct) (b []byte, err error) { |
Jens Geyer | 7949447 | 2013-12-03 22:57:05 +0100 | [diff] [blame] | 63 | t.Transport.Reset() |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 64 | |
| 65 | if err = msg.Write(t.Protocol); err != nil { |
| 66 | return |
| 67 | } |
| 68 | |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 69 | if err = t.Protocol.Flush(ctx); err != nil { |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 70 | return |
| 71 | } |
| 72 | |
John Boiles | 5785279 | 2018-01-05 14:37:05 -0800 | [diff] [blame] | 73 | if err = t.Transport.Flush(ctx); err != nil { |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 74 | return |
| 75 | } |
| 76 | |
Jens Geyer | 7949447 | 2013-12-03 22:57:05 +0100 | [diff] [blame] | 77 | b = append(b, t.Transport.Bytes()...) |
Jens Geyer | 7a09483 | 2013-09-08 00:36:22 +0200 | [diff] [blame] | 78 | return |
| 79 | } |