forked from openebs-archive/jiva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
128 lines (112 loc) · 2.81 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
/*
Copyright © 2020 The OpenEBS Authors
This file was originally authored by Rancher Labs
under Apache License 2018.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"log"
"os"
"runtime"
"runtime/debug"
"runtime/pprof"
"github.com/docker/docker/pkg/reexec"
"github.com/openebs/jiva/app"
"github.com/openebs/sparse-tools/cli/sfold"
"github.com/openebs/sparse-tools/cli/ssync"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
)
func main() {
defer cleanup()
reexec.Register("ssync", ssync.Main)
reexec.Register("sfold", sfold.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)
}
pprof.StartCPUProfile(f)
defer pprof.StopCPUProfile()
}
a := cli.NewApp()
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.BoolFlag{
Name: "debug",
},
}
a.Commands = []cli.Command{
app.ControllerCmd(),
app.ReplicaCmd(),
app.SyncAgentCmd(),
app.AddReplicaCmd(),
app.LsReplicaCmd(),
app.RmReplicaCmd(),
app.SnapshotCmd(),
app.LogCmd(),
app.SyncInfoCmd(),
app.BackupCmd(),
app.Journal(),
}
a.CommandNotFound = cmdNotFound
a.OnUsageError = onUsageError
if err := a.Run(os.Args); err != nil {
logrus.Fatal("Error when executing command: ", err)
}
}