blob: 1ff4d37545a24e7e2716e91e7a6d25d007087606 [file] [log] [blame]
Jens Geyerb0d3c3f2013-09-09 21:10:45 +02001/*
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 Geyer7a094832013-09-08 00:36:22 +020020package thrift
21
John Boiles57852792018-01-05 14:37:05 -080022import (
23 "context"
24)
25
Jens Geyer7a094832013-09-08 00:36:22 +020026type TSerializer struct {
Jens Geyer79494472013-12-03 22:57:05 +010027 Transport *TMemoryBuffer
Jens Geyer7a094832013-09-08 00:36:22 +020028 Protocol TProtocol
29}
30
31type TStruct interface {
32 Write(p TProtocol) error
33 Read(p TProtocol) error
34}
35
36func NewTSerializer() *TSerializer {
Jens Geyer79494472013-12-03 22:57:05 +010037 transport := NewTMemoryBufferLen(1024)
Jens Geyer7a094832013-09-08 00:36:22 +020038 protocol := NewTBinaryProtocolFactoryDefault().GetProtocol(transport)
39
40 return &TSerializer{
41 transport,
42 protocol}
43}
44
John Boiles57852792018-01-05 14:37:05 -080045func (t *TSerializer) WriteString(ctx context.Context, msg TStruct) (s string, err error) {
Jens Geyer79494472013-12-03 22:57:05 +010046 t.Transport.Reset()
Jens Geyer7a094832013-09-08 00:36:22 +020047
48 if err = msg.Write(t.Protocol); err != nil {
49 return
50 }
51
John Boiles57852792018-01-05 14:37:05 -080052 if err = t.Protocol.Flush(ctx); err != nil {
Jens Geyer7a094832013-09-08 00:36:22 +020053 return
54 }
John Boiles57852792018-01-05 14:37:05 -080055 if err = t.Transport.Flush(ctx); err != nil {
Jens Geyer7a094832013-09-08 00:36:22 +020056 return
57 }
58
Jens Geyer79494472013-12-03 22:57:05 +010059 return t.Transport.String(), nil
Jens Geyer7a094832013-09-08 00:36:22 +020060}
61
John Boiles57852792018-01-05 14:37:05 -080062func (t *TSerializer) Write(ctx context.Context, msg TStruct) (b []byte, err error) {
Jens Geyer79494472013-12-03 22:57:05 +010063 t.Transport.Reset()
Jens Geyer7a094832013-09-08 00:36:22 +020064
65 if err = msg.Write(t.Protocol); err != nil {
66 return
67 }
68
John Boiles57852792018-01-05 14:37:05 -080069 if err = t.Protocol.Flush(ctx); err != nil {
Jens Geyer7a094832013-09-08 00:36:22 +020070 return
71 }
72
John Boiles57852792018-01-05 14:37:05 -080073 if err = t.Transport.Flush(ctx); err != nil {
Jens Geyer7a094832013-09-08 00:36:22 +020074 return
75 }
76
Jens Geyer79494472013-12-03 22:57:05 +010077 b = append(b, t.Transport.Bytes()...)
Jens Geyer7a094832013-09-08 00:36:22 +020078 return
79}