forked from yarpc/yarpc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.go
73 lines (60 loc) · 1.84 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
// Code generated by thriftrw-plugin-yarpc
// @generated
package extendemptyserver
import (
"context"
"go.uber.org/thriftrw/wire"
"go.uber.org/yarpc/api/transport"
"go.uber.org/yarpc/encoding/thrift"
"go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc/internal/tests/common"
"go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc/internal/tests/common/emptyserviceserver"
)
// Interface is the server-side interface for the ExtendEmpty service.
type Interface interface {
emptyserviceserver.Interface
Hello(
ctx context.Context,
) error
}
// New prepares an implementation of the ExtendEmpty service for
// registration.
//
// handler := ExtendEmptyHandler{}
// dispatcher.Register(extendemptyserver.New(handler))
func New(impl Interface, opts ...thrift.RegisterOption) []transport.Procedure {
h := handler{impl}
service := thrift.Service{
Name: "ExtendEmpty",
Methods: []thrift.Method{
thrift.Method{
Name: "hello",
HandlerSpec: thrift.HandlerSpec{
Type: transport.Unary,
Unary: thrift.UnaryHandler(h.Hello),
},
Signature: "Hello()",
ThriftModule: common.ThriftModule,
},
},
}
procedures := make([]transport.Procedure, 0, 1)
procedures = append(procedures, emptyserviceserver.New(impl, opts...)...)
procedures = append(procedures, thrift.BuildProcedures(service, opts...)...)
return procedures
}
type handler struct{ impl Interface }
func (h handler) Hello(ctx context.Context, body wire.Value) (thrift.Response, error) {
var args common.ExtendEmpty_Hello_Args
if err := args.FromWire(body); err != nil {
return thrift.Response{}, err
}
err := h.impl.Hello(ctx)
hadError := err != nil
result, err := common.ExtendEmpty_Hello_Helper.WrapResponse(err)
var response thrift.Response
if err == nil {
response.IsApplicationError = hadError
response.Body = result
}
return response, err
}