-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
61 lines (46 loc) · 1.07 KB
/
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
57
58
59
60
61
package main
import (
"context"
"io"
"os"
"os/signal"
"runtime/debug"
"syscall"
"github.com/outblocks/outblocks-cli/cmd"
"github.com/outblocks/outblocks-cli/pkg/actions"
"google.golang.org/grpc/grpclog"
)
func main() {
// Disable grpc client logging.
grpclog.SetLoggerV2(grpclog.NewLoggerV2(io.Discard, io.Discard, io.Discard))
exec := cmd.NewExecutor()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Handle SIGINT and SIGTERM.
ch := make(chan os.Signal, 1)
signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM)
go func() {
<-ch
exec.Log().Warnln("Signal received. Canceling execution...")
cancel()
}()
defer func() {
if r := recover(); r != nil {
exec.Log().Errorf("Critical Error! %q\n%s", r, debug.Stack())
os.Exit(1)
}
}()
err := exec.Execute(ctx)
if err != nil {
if e, ok := err.(*actions.ErrExit); ok {
if e.Message != "" {
exec.Log().Errorln(e.Message)
}
os.Exit(e.StatusCode) //nolint
}
if ctx.Err() != context.Canceled {
exec.Log().Errorln("Error occurred:", err)
}
os.Exit(1)
}
}