-
Notifications
You must be signed in to change notification settings - Fork 35
/
main.go
56 lines (43 loc) · 788 Bytes
/
main.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
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
"github.com/kffl/speedbump/lib"
)
func exitWithError(err error) {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
func main() {
cfg, err := parseArgs(os.Args[1:])
if err != nil {
exitWithError(err)
}
s, err := lib.NewSpeedbump(cfg)
if err != nil {
exitWithError(err)
}
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
done := make(chan bool)
go func() {
<-sigs
// signal was caught for the first time
// stop the speedbump instance
go func() {
s.Stop()
done <- true
}()
<-sigs
// signal was caught for the second time
// force the process to exit
os.Exit(1)
}()
err = s.Start()
if err != nil {
exitWithError(err)
}
<-done
}