forked from mec07/rununtil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rununtil.go
212 lines (177 loc) · 6.83 KB
/
rununtil.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
/*Package rununtil has been created to run a provided function until it has been signalled to stop.
Usage
The main usage of rununtil is to run your main app indefinitely until a SIGINT or SIGTERM signal has been received.
The `AwaitKillSignal` is a blocking function which waits until a kill signal has been received.
It takes in `RunnerFunc`s which are nonblocking functions which set off go routines (e.g. to run an HTTP server or a gRPC server) and return a `ShutdownFunc`.
The `ShutdownFunc`s are executed when a kill signal has been received to allow for graceful shutdown of the go routines set off by the `RunnerFunc`s.
For example:
func Runner() rununtil.ShutdownFunc {
r := chi.NewRouter()
r.Get("/healthz", healthzHandler)
httpServer := &http.Server{Addr: ":8080", Handler: r}
go runHTTPServer(httpServer)
return rununtil.ShutdownFunc(func() {
if err := httpServer.Shutdown(context.Background()); err != nil {
log.Error().Err(err).Msg("error occurred while shutting down http server")
}
})
}
func runHTTPServer(srv *http.Server) {
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
log.Fatal().Stack().Err(err).Msg("ListenAndServe")
}
}
func main() {
rununtil.AwaitKillSignal(Runner)
}
The `AwaitKillSignal` function blocks until either a kill signal has been received or `CancelAll` has been triggered.
A nice pattern is to create a function that takes in the various depencies required, for example, a logger (but could be anything, e.g. configs, database, etc.), and returns a runner function:
func NewRunner(log zerolog.Logger) rununtil.RunnerFunc {
return rununtil.RunnerFunc(func() rununtil.ShutdownFunc {
r := chi.NewRouter()
r.Get("/healthz", healthzHandler)
httpServer := &http.Server{Addr: ":8080", Handler: r}
go runHTTPServer(httpServer, log)
return rununtil.ShutdownFunc(func() {
if err := httpServer.Shutdown(context.Background()); err != nil {
log.Error().Err(err).Msg("error occurred while shutting down http server")
}
})
})
}
func runHTTPServer(srv *http.Server, log zerolog.Logger) {
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
log.Fatal().Stack().Err(err).Msg("ListenAndServe")
}
}
func main() {
logger, err := setupLogger()
if err != nil {
return
}
rununtil.AwaitKillSignal(NewRunner(logger))
}
It is of course possible to specify which signals you would like to use to kill your application using the `AwaitKillSignals` function, for example:
rununtil.AwaitKillSignals([]os.Signal{syscall.SIGKILL, syscall.SIGHUP, syscall.SIGINT}, NewRunner(logger))
For testing purposes you may want to run your main function, which is using `rununtil.AwaitKillSignal`, and then kill it by simulating sending a kill signal when you're done with your tests. To aid with this you can:
go main()
... do your tests ...
rununtil.CancelAll()
The `CancelAll` function results in the same behaviour as sending a real kill signal to your program would, i.e.~graceful shutdown is initiated.
The old functions `KillSignal`, `Signals` and `Killed` are still here (for backwards compatibility), but they have been deprecated.
Please use `AwaitKillSignal` instead of `KillSignal`, `AwaitKillSignals` instead of `Signals`, and `CancelAll` instead of `Killed` (now you can just run in a go routine main and then execute `CancelAll` to finish the `AwaitKillSignal`).
*/
package rununtil
import (
"context"
"fmt"
"os"
"os/signal"
"sync"
"syscall"
"github.com/google/uuid"
"github.com/pkg/errors"
)
type canceller struct {
signals map[string]chan struct{}
mux sync.Mutex
}
func (canc *canceller) addChannel(key string, c chan struct{}) {
canc.mux.Lock()
defer canc.mux.Unlock()
canc.signals[key] = c
}
func (canc *canceller) cancelAll() {
canc.mux.Lock()
defer canc.mux.Unlock()
for key := range canc.signals {
close(canc.signals[key])
delete(canc.signals, key)
}
}
var globalCanceller canceller
func init() {
globalCanceller.mux.Lock()
globalCanceller.signals = make(map[string]chan struct{})
globalCanceller.mux.Unlock()
}
// ShutdownFunc is a function that should be returned by a RunnerFunc which
// gracefully shuts down whatever is being run.
type ShutdownFunc func()
// RunnerFunc is a nonblocking function that sets off the worker go routines and
// returns a function which can shutdown those worker go routines.
type RunnerFunc func() ShutdownFunc
// AwaitKillSignal runs the provided RunnerFuncs until it receives a kill
// signal, SIGINT or SIGTERM, at which point it executes the graceful shutdown
// functions.
func AwaitKillSignal(runnerFuncs ...RunnerFunc) {
AwaitKillSignals([]os.Signal{syscall.SIGINT, syscall.SIGTERM}, runnerFuncs...)
}
// AwaitKillSignals runs the provided RunnerFuncs until the specified
// signals have been recieved, at which point it executes the graceful shutdown
// functions.
func AwaitKillSignals(signals []os.Signal, runnerFuncs ...RunnerFunc) {
c := make(chan os.Signal, 1)
signal.Notify(c, signals...)
finish := make(chan struct{})
uuid := uuid.New()
globalCanceller.addChannel(uuid.String(), finish)
for _, runner := range runnerFuncs {
shutdown := runner()
defer shutdown()
}
// Wait for a kill signal
select {
case <-c:
break
case <-finish:
break
}
}
// CancelAll will stop all the awaits in the same way that a kill
// signal would stop them. To use:
// go main()
// ... do your tests ...
// rununtil.CancelAll()
func CancelAll() {
globalCanceller.cancelAll()
}
// KillSignal runs the provided runner function until it receives a kill signal,
// SIGINT or SIGTERM, at which point it executes the graceful shutdown function.
// Deprecated. Please use AwaitKillSignal.
func KillSignal(runner RunnerFunc) {
AwaitKillSignal(runner)
}
// Signals runs the provided runner function until the specified signals have
// been recieved.
// Deprecated. Please use AwaitKillSignals.
func Signals(runner RunnerFunc, signals ...os.Signal) {
AwaitKillSignals(signals, runner)
}
// Killed is used for testing a function that is using rununtil.KillSignal.
// It runs the function provided and sends a SIGINT signal to kill it when
// the returned context.CancelFunc is executed. A sample usage of this could be:
// kill := rununtil.Killed(main)
// ... do some stuff, e.g. send some requests to the webserver ...
// kill()
//
// where main is a function that is using rununtil.KillSignal.
// Deprecated. Please just run your main function and use
// rununtil.CancelAll.
func Killed(main func()) context.CancelFunc {
ctx, cancel := context.WithCancel(context.Background())
go runMain(ctx, main)
return cancel
}
func runMain(ctx context.Context, main func()) {
p, err := os.FindProcess(os.Getpid())
if err != nil {
fmt.Printf("ERROR: %+v\n", errors.Wrap(err, "trying to get PID"))
}
go killMainWhenDone(ctx, p)
main()
}
func killMainWhenDone(ctx context.Context, p *os.Process) {
<-ctx.Done()
CancelAll()
}