-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.go
297 lines (265 loc) · 8.22 KB
/
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package thriftutils
import (
"context"
"log"
"runtime/debug"
"sync"
"sync/atomic"
"github.com/apache/thrift/lib/go/thrift"
)
type Server struct {
closed int32
wg sync.WaitGroup
mu sync.Mutex
processorFactory thrift.TProcessorFactory
serverTransport thrift.TServerTransport
inputTransportFactory thrift.TTransportFactory
outputTransportFactory thrift.TTransportFactory
inputProtocolFactory thrift.TProtocolFactory
outputProtocolFactory thrift.TProtocolFactory
// Headers to auto forward in THeaderProtocol
forwardHeaders []string
connections map[thrift.TTransport]struct{}
}
func NewServer2(processor thrift.TProcessor, serverTransport thrift.TServerTransport) *Server {
return NewServerFactory2(thrift.NewTProcessorFactory(processor), serverTransport)
}
func NewServer4(processor thrift.TProcessor, serverTransport thrift.TServerTransport, transportFactory thrift.TTransportFactory, protocolFactory thrift.TProtocolFactory) *Server {
return NewServerFactory4(
thrift.NewTProcessorFactory(processor),
serverTransport,
transportFactory,
protocolFactory,
)
}
func NewServer6(processor thrift.TProcessor, serverTransport thrift.TServerTransport, inputTransportFactory thrift.TTransportFactory, outputTransportFactory thrift.TTransportFactory, inputProtocolFactory thrift.TProtocolFactory, outputProtocolFactory thrift.TProtocolFactory) *Server {
return NewServerFactory6(
thrift.NewTProcessorFactory(processor),
serverTransport,
inputTransportFactory,
outputTransportFactory,
inputProtocolFactory,
outputProtocolFactory,
)
}
func NewServerFactory2(processorFactory thrift.TProcessorFactory, serverTransport thrift.TServerTransport) *Server {
return NewServerFactory6(
processorFactory,
serverTransport,
thrift.NewTTransportFactory(),
thrift.NewTTransportFactory(),
thrift.NewTBinaryProtocolFactoryDefault(),
thrift.NewTBinaryProtocolFactoryDefault(),
)
}
func NewServerFactory4(processorFactory thrift.TProcessorFactory, serverTransport thrift.TServerTransport, transportFactory thrift.TTransportFactory, protocolFactory thrift.TProtocolFactory) *Server {
return NewServerFactory6(
processorFactory,
serverTransport,
transportFactory,
transportFactory,
protocolFactory,
protocolFactory,
)
}
func NewServerFactory6(processorFactory thrift.TProcessorFactory, serverTransport thrift.TServerTransport, inputTransportFactory thrift.TTransportFactory, outputTransportFactory thrift.TTransportFactory, inputProtocolFactory thrift.TProtocolFactory, outputProtocolFactory thrift.TProtocolFactory) *Server {
return &Server{
processorFactory: processorFactory,
serverTransport: serverTransport,
inputTransportFactory: inputTransportFactory,
outputTransportFactory: outputTransportFactory,
inputProtocolFactory: inputProtocolFactory,
outputProtocolFactory: outputProtocolFactory,
connections: map[thrift.TTransport]struct{}{},
}
}
func (p *Server) ProcessorFactory() thrift.TProcessorFactory {
return p.processorFactory
}
func (p *Server) ServerTransport() thrift.TServerTransport {
return p.serverTransport
}
func (p *Server) InputTransportFactory() thrift.TTransportFactory {
return p.inputTransportFactory
}
func (p *Server) OutputTransportFactory() thrift.TTransportFactory {
return p.outputTransportFactory
}
func (p *Server) InputProtocolFactory() thrift.TProtocolFactory {
return p.inputProtocolFactory
}
func (p *Server) OutputProtocolFactory() thrift.TProtocolFactory {
return p.outputProtocolFactory
}
func (p *Server) Listen() error {
return p.serverTransport.Listen()
}
// SetForwardHeaders sets the list of header keys that will be auto forwarded
// while using THeaderProtocol.
//
// "forward" means that when the server is also a client to other upstream
// thrift servers, the context object user gets in the processor functions will
// have both read and write headers set, with write headers being forwarded.
// Users can always override the write headers by calling SetWriteHeaderList
// before calling thrift client functions.
func (p *Server) SetForwardHeaders(headers []string) {
size := len(headers)
if size == 0 {
p.forwardHeaders = nil
return
}
keys := make([]string, size)
copy(keys, headers)
p.forwardHeaders = keys
}
func (p *Server) innerAccept() (int32, error) {
client, err := p.serverTransport.Accept()
p.mu.Lock()
defer p.mu.Unlock()
closed := atomic.LoadInt32(&p.closed)
if closed != 0 {
if client != nil {
client.Close()
}
return closed, nil
}
if err != nil {
return 0, err
}
if client != nil {
p.wg.Add(1)
p.connections[client] = struct{}{}
go func() {
defer func() {
p.mu.Lock()
defer p.mu.Unlock()
delete(p.connections, client)
p.wg.Done()
}()
if err := p.processRequests(client); err != nil {
log.Println("error processing request:", err)
}
}()
}
return 0, nil
}
func (p *Server) AcceptLoop() error {
for {
closed, err := p.innerAccept()
if err != nil {
return err
}
if closed != 0 {
return nil
}
}
}
func (p *Server) Serve() error {
err := p.Listen()
if err != nil {
return err
}
p.AcceptLoop()
return nil
}
func (p *Server) Stop() error {
p.mu.Lock()
if atomic.LoadInt32(&p.closed) != 0 {
p.mu.Unlock()
return nil
}
atomic.StoreInt32(&p.closed, 1)
p.serverTransport.Interrupt()
for conn := range p.connections {
conn.Close()
delete(p.connections, conn)
}
p.mu.Unlock()
p.wg.Wait()
return nil
}
func (p *Server) processRequests(client thrift.TTransport) error {
processor := p.processorFactory.GetProcessor(client)
inputTransport, err := p.inputTransportFactory.GetTransport(client)
if err != nil {
return err
}
inputProtocol := p.inputProtocolFactory.GetProtocol(inputTransport)
var outputTransport thrift.TTransport
var outputProtocol thrift.TProtocol
// for THeaderProtocol, we must use the same protocol instance for
// input and output so that the response is in the same dialect that
// the server detected the request was in.
headerProtocol, ok := inputProtocol.(*thrift.THeaderProtocol)
if ok {
outputProtocol = inputProtocol
} else {
oTrans, err := p.outputTransportFactory.GetTransport(client)
if err != nil {
return err
}
outputTransport = oTrans
outputProtocol = p.outputProtocolFactory.GetProtocol(outputTransport)
}
defer func() {
if e := recover(); e != nil {
log.Printf("panic in processor: %s: %s", e, debug.Stack())
}
}()
if inputTransport != nil {
defer inputTransport.Close()
}
if outputTransport != nil {
defer outputTransport.Close()
}
for {
if atomic.LoadInt32(&p.closed) != 0 {
return nil
}
ctx := context.Background()
if headerProtocol != nil {
// We need to call ReadFrame here, otherwise we won't
// get any headers on the AddReadTHeaderToContext call.
//
// ReadFrame is safe to be called multiple times so it
// won't break when it's called again later when we
// actually start to read the message.
if err := headerProtocol.ReadFrame(); err != nil {
return err
}
ctx = thrift.AddReadTHeaderToContext(ctx, headerProtocol.GetReadHeaders())
ctx = thrift.SetWriteHeaderList(ctx, p.forwardHeaders)
}
ok, err := processor.Process(ctx, inputProtocol, outputProtocol)
if err, ok := err.(thrift.TTransportException); ok && err.TypeId() == thrift.END_OF_FILE {
return nil
} else if err != nil {
return err
}
if err, ok := err.(thrift.TApplicationException); ok && err.TypeId() == thrift.UNKNOWN_METHOD {
continue
}
if !ok {
break
}
}
return nil
}