-
Notifications
You must be signed in to change notification settings - Fork 0
/
transports.go
146 lines (116 loc) · 2.57 KB
/
transports.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
package servers
import (
"context"
"net"
"net/http"
"google.golang.org/grpc"
)
type grpcTransportMananger struct {
addr string
server *grpc.Server
}
func (t *grpcTransportMananger) Start() <-chan error {
errC := make(chan error)
go func() {
nl, err := net.Listen("tcp", t.addr)
if err != nil {
errC <- err
return
}
errC <- t.server.Serve(nl)
}()
return (<-chan error)(errC)
}
func (t *grpcTransportMananger) Stop() error {
t.server.GracefulStop()
return nil
}
// WithGRPCServer will run a gRPC-server when the Server is Run
func WithGRPCServer(addr string, server *grpc.Server) Option {
if server == nil {
panic("must provide both a net listener and GRPC server to WithGRPCServer")
}
return func(o *serverOptions) error {
o.transports = append(o.transports, &grpcTransportMananger{
addr: addr,
server: server,
})
return nil
}
}
type httpTransportMananger struct {
addr string
server *http.Server
}
func (t *httpTransportMananger) Start() <-chan error {
errC := make(chan error)
go func() {
nl, err := net.Listen("tcp", t.addr)
if err != nil {
errC <- err
return
}
errC <- t.server.Serve(nl)
}()
return (<-chan error)(errC)
}
func (t *httpTransportMananger) Stop() error {
return t.server.Shutdown(context.Background())
}
// WithHTTPServer will run a http server when the Server is Run
func WithHTTPServer(addr string, server *http.Server) Option {
if server == nil {
panic("must provide both a net listener and HTTP server to WithHTTPServer")
}
return func(o *serverOptions) error {
o.transports = append(o.transports, &httpTransportMananger{
addr: addr,
server: server,
})
return nil
}
}
type (
customMananger struct {
impl customManangerImpl
}
customManangerImpl interface {
Run() error
Shutdown() error
}
CustomManagerFuncs struct {
RunFunc func() error
ShutdownFunc func() error
}
)
func (f *CustomManagerFuncs) Run() error {
return f.RunFunc()
}
func (f *CustomManagerFuncs) Shutdown() error {
if f.ShutdownFunc == nil {
return nil
}
return f.ShutdownFunc()
}
func (t *customMananger) Start() <-chan error {
errC := make(chan error)
go func() {
errC <- t.impl.Run()
}()
return (<-chan error)(errC)
}
func (t *customMananger) Stop() error {
return t.impl.Shutdown()
}
// WithCustom will run a custom.
func WithCustom(impl customManangerImpl) Option {
if impl == nil {
panic("must provide a customTransportManangerImpl to WithCustom")
}
return func(o *serverOptions) error {
o.transports = append(o.transports, &customMananger{
impl: impl,
})
return nil
}
}