-
Notifications
You must be signed in to change notification settings - Fork 2
/
forker.go
167 lines (134 loc) · 3.15 KB
/
forker.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
package forker
import (
"github.com/labstack/echo/v4"
"google.golang.org/grpc"
"net"
"net/http"
"os"
"runtime"
)
var _ Forker = (*Fork)(nil)
type Fork struct {
echo *echo.Echo
grpc *grpc.Server
serveFunc func(ln net.Listener) error
serveTLSFunc func(ln net.Listener, certFile, keyFile string) error
recoverChild int
ln net.Listener
files []*os.File
childsPid []int
Network Network // Network is net type tcp4, tcp, tcp6, udp, udp4, udp6
ReusePort bool // ReusePort use for windows support child process base on system call
}
// New create forker for listen and serve http server
func New(httpServer *http.Server, opts ...Option) Forker {
forker := &Fork{
serveFunc: httpServer.Serve,
serveTLSFunc: httpServer.ServeTLS,
recoverChild: runtime.GOMAXPROCS(0) / 2,
}
for _, opt := range opts {
opt(forker)
}
if forker.Network == 0 {
forker.Network = _defaultNetwork
}
return forker
}
// NewEchoForker create for listen and serve echo
func NewEchoForker(opts ...Option) EchoForker {
forker := &Fork{
echo: echo.New(),
recoverChild: runtime.GOMAXPROCS(0) / 2,
}
for _, opt := range opts {
opt(forker)
}
if forker.Network == 0 {
forker.Network = _defaultNetwork
}
return forker
}
// NewGrpcForker create for listen and serve grpc server
func NewGrpcForker(grpcServerOpts []grpc.ServerOption, opts ...Option) GrpcForker {
forker := &Fork{
recoverChild: runtime.GOMAXPROCS(0) / 2,
}
for _, opt := range opts {
opt(forker)
}
grpcOpts := make([]grpc.ServerOption, 0)
if len(grpcServerOpts) != 0 {
grpcOpts = append(grpcOpts, grpcServerOpts...)
}
forker.grpc = grpc.NewServer(grpcOpts...)
if forker.Network == 0 {
forker.Network = _defaultNetwork
}
return forker
}
// ServeGrpc serve grpc server
func (f *Fork) ServeGrpc(address string) error {
if isChild() {
ln, err := f.listen(address)
if err != nil {
return err
}
f.ln = ln
return f.grpc.Serve(ln)
}
return f.forker(address)
}
// GetGrpcServer return grpc server object
func (f *Fork) GetGrpcServer() *grpc.Server {
return f.grpc
}
// StartEcho listener echo
func (f *Fork) StartEcho(address string) error {
if isChild() {
ln, err := f.listen(address)
if err != nil {
return err
}
f.echo.Listener = ln
f.ln = ln
return f.echo.Start(address)
}
return f.forker(address)
}
// GetEcho return echo object
func (f *Fork) GetEcho() *echo.Echo {
return f.echo
}
// ListenAndServe listen and serve http server
func (f *Fork) ListenAndServe(address string) error {
if isChild() {
ln, err := f.listen(address)
if err != nil {
return err
}
f.ln = ln
return f.serveFunc(ln)
}
return f.forker(address)
}
// ListenAndServeTLS listen and serve http server with tls support
func (f *Fork) ListenAndServeTLS(address, certFile, keyFile string) error {
if isChild() {
ln, err := f.listen(address)
if err != nil {
return err
}
f.ln = ln
return f.serveTLSFunc(ln, certFile, keyFile)
}
return f.forker(address)
}
// NumOfChild number of child process
func (f *Fork) NumOfChild() int {
return len(f.childsPid)
}
// ChildPids list child process PID
func (f *Fork) ChildPids() []int {
return f.childsPid
}