forked from longhorn/longhorn-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
159 lines (142 loc) · 3.36 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
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
package main
import (
"fmt"
"log"
"os"
"path"
"runtime"
"runtime/debug"
"runtime/pprof"
"github.com/moby/moby/pkg/reexec"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
"github.com/longhorn/sparse-tools/cli/ssync"
"github.com/longhorn/longhorn-engine/app/cmd"
"github.com/longhorn/longhorn-engine/pkg/meta"
)
// following variables will be filled by `-ldflags "-X ..."`
var (
Version string
GitCommit string
BuildDate string
)
func main() {
defer cleanup()
reexec.Register("ssync", ssync.Main)
if !reexec.Init() {
longhornCli()
}
}
// ResponseLogAndError would log the error before call ResponseError()
func ResponseLogAndError(v interface{}) {
if e, ok := v.(*logrus.Entry); ok {
logrus.Errorln(e.Message)
fmt.Println(e.Message)
} else {
e, isErr := v.(error)
_, isRuntimeErr := e.(runtime.Error)
if isErr && !isRuntimeErr {
logrus.Errorln(fmt.Sprint(e))
fmt.Println(fmt.Sprint(e))
} else {
logrus.Errorln("Caught FATAL error: ", v)
debug.PrintStack()
fmt.Println("Caught FATAL error: ", v)
}
}
}
func cleanup() {
if r := recover(); r != nil {
ResponseLogAndError(r)
os.Exit(1)
}
}
func cmdNotFound(c *cli.Context, command string) {
panic(fmt.Errorf("unrecognized command: %s", command))
}
func onUsageError(c *cli.Context, err error, isSubcommand bool) error {
panic(fmt.Errorf("usage error, please check your command"))
}
func longhornCli() {
pprofFile := os.Getenv("PPROFILE")
if pprofFile != "" {
f, err := os.Create(pprofFile)
if err != nil {
log.Fatal(err)
}
if err = pprof.StartCPUProfile(f); err != nil {
logrus.Fatal(err)
}
defer pprof.StopCPUProfile()
}
a := cli.NewApp()
a.Version = Version
meta.Version = Version
meta.GitCommit = GitCommit
meta.BuildDate = BuildDate
logrus.SetReportCaller(true)
logrus.SetFormatter(&logrus.TextFormatter{
CallerPrettyfier: func(f *runtime.Frame) (function string, file string) {
fileName := fmt.Sprintf("%s:%d", path.Base(f.File), f.Line)
funcName := path.Base(f.Function)
return funcName, fileName
},
FullTimestamp: true,
})
a.Before = func(c *cli.Context) error {
if c.GlobalBool("debug") {
logrus.SetLevel(logrus.DebugLevel)
}
return nil
}
a.Flags = []cli.Flag{
cli.StringFlag{
Name: "url",
Value: "http://localhost:9501",
},
cli.StringFlag{
Name: "volume-name",
Required: false,
Usage: "Name of the volume (for validation purposes)",
},
cli.StringFlag{
Name: "engine-instance-name",
Required: false,
Usage: "Name of the engine instance (for validation purposes)",
},
cli.BoolFlag{
Name: "debug",
},
}
a.Commands = []cli.Command{
cmd.ControllerCmd(),
cmd.ReplicaCmd(),
cmd.SyncAgentCmd(),
cmd.SyncAgentServerResetCmd(),
cmd.StartWithReplicasCmd(),
cmd.AddReplicaCmd(),
cmd.VerifyRebuildReplicaCmd(),
cmd.LsReplicaCmd(),
cmd.RmReplicaCmd(),
cmd.UpdateReplicaCmd(),
cmd.RebuildStatusCmd(),
cmd.SnapshotCmd(),
cmd.SnapshotHashCmd(),
cmd.SnapshotHashCancelCmd(),
cmd.SnapshotHashStatusCmd(),
cmd.BackupCmd(),
cmd.ExpandCmd(),
cmd.UnmapMarkSnapChainRemovedCmd(),
cmd.Journal(),
cmd.InfoCmd(),
cmd.FrontendCmd(),
cmd.SystemBackupCmd(),
cmd.ProfilerCmd(),
VersionCmd(),
}
a.CommandNotFound = cmdNotFound
a.OnUsageError = onUsageError
if err := a.Run(os.Args); err != nil {
logrus.WithError(err).Fatal("Error when executing command")
}
}