This repository was archived by the owner on May 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
59 lines (51 loc) · 1.42 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
package main
import (
"io"
"os"
"runtime"
"text/template"
_ "github.com/stretchr/testify/assert"
_ "go.octolab.org/toolkit/cli/cobra"
)
const (
success = 0
failure = 1
)
func main() { application{Args: os.Args, Stderr: os.Stderr, Stdout: os.Stdout, Shutdown: os.Exit}.Run() }
type application struct {
Args []string
Stderr, Stdout io.Writer
Shutdown func(code int)
}
// Run executes the application logic.
func (app application) Run() {
var command Command
base := &BaseCommand{BinName: app.Args[0]}
commands := Commands{
&CreateCommand{BaseCommand: base,
CmdName: "create", Capacity: runtime.GOMAXPROCS(0)},
&AddCommand{BaseCommand: base,
CmdName: "add"},
&WaitCommand{BaseCommand: base,
CmdName: "wait", Output: app.Stdout, Template: template.Must(template.New("report").Parse(DefaultReport))},
}
help := &HelpCommand{BaseCommand: base,
CmdName: "help", Commit: commit, BuildDate: date, Version: version,
Compiler: runtime.Compiler, Platform: runtime.GOOS + "/" + runtime.GOARCH, GoVersion: runtime.Version(),
Commands: commands, Output: app.Stderr}
commands = append(commands, help)
if command, help.Error = commands.Parse(app.Args[1:]); help.Error != nil {
if help.Do() != nil {
app.Shutdown(failure)
return
}
app.Shutdown(success)
return
}
if help.Error = command.Do(); help.Error != nil {
_ = help.Do()
app.Shutdown(failure)
return
}
app.Shutdown(success)
}