forked from gookit/goutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.go
194 lines (159 loc) · 3.53 KB
/
app.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package cflag
import (
"flag"
"fmt"
"io"
"os"
"path"
"sort"
"github.com/gookit/color"
"github.com/gookit/goutil"
"github.com/gookit/goutil/cliutil"
"github.com/gookit/goutil/mathutil"
"github.com/gookit/goutil/strutil"
)
// App struct
type App struct {
cmds map[string]*Cmd
names []string
Name string
Desc string
// NameWidth max width for command name
NameWidth int
HelpWriter io.Writer
// Version for app
Version string
// AfterHelpBuild hook
AfterHelpBuild func(buf *strutil.Buffer)
}
// NewApp instance
func NewApp(fns ...func(app *App)) *App {
app := &App{
cmds: make(map[string]*Cmd),
// with default version
Version: "0.0.1",
// NameWidth default value
NameWidth: 12,
HelpWriter: os.Stdout,
}
for _, fn := range fns {
fn(app)
}
return app
}
// Add command(s) to app
func (a *App) Add(cmds ...*Cmd) {
for _, cmd := range cmds {
a.addCmd(cmd)
}
}
func (a *App) addCmd(c *Cmd) {
ln := len(c.Name)
if ln == 0 {
panic("command name cannot be empty")
}
if _, ok := a.cmds[c.Name]; ok {
goutil.Panicf("command name %s has been exists", c.Name)
}
a.names = append(a.names, c.Name)
a.cmds[c.Name] = c
a.NameWidth = mathutil.MaxInt(a.NameWidth, ln)
// attach handle func
if c.Func != nil {
c.CFlags.Func = func(_ *CFlags) error {
return c.Func(c)
}
}
if c.OnAdd != nil {
c.OnAdd(c)
}
}
// Run app by os.Args
func (a *App) Run() {
err := a.RunWithArgs(os.Args[1:])
if err != nil {
cliutil.Errorln("ERROR:", err)
}
}
// RunWithArgs run app by input args
func (a *App) RunWithArgs(args []string) error {
a.init()
if len(args) == 0 || args[0] == "" {
return a.showHelp()
}
name := args[0]
if name == "help" || name == "--help" || name == "-h" {
return a.showHelp()
}
if name[0] == '-' {
return fmt.Errorf("provide undefined flag option %q", name)
}
cmd, ok := a.findCmd(name)
if !ok {
return fmt.Errorf("input not exists command %q", name)
}
return cmd.Parse(args[1:])
}
func (a *App) init() {
if a.Name == "" {
a.Name = path.Base(os.Args[0])
}
}
func (a *App) findCmd(name string) (*Cmd, bool) {
cmd, ok := a.cmds[name]
return cmd, ok
}
func (a *App) showHelp() error {
bin := a.Name
buf := strutil.NewBuffer()
buf.Printf("<cyan>%s</> - %s", bin, a.Desc)
if a.Version != "" {
buf.Printf("(Version: <cyan>%s</>)", a.Version)
}
buf.Printf("\n\n<comment>Usage:</> %s <green>COMMAND</> [--Options...] [...Arguments]\n", bin)
buf.WriteStr1Nl("<comment>Options:</>")
buf.WriteStr1Nl(" <green>-h, --help</> Display application help")
buf.WriteStr1Nl("\n<comment>Commands:</>")
sort.Strings(a.names)
for _, name := range a.names {
c := a.cmds[name]
name := strutil.PadRight(name, " ", a.NameWidth)
buf.Printf(" <green>%s</> %s\n", name, strutil.UpperFirst(c.Desc))
}
name := strutil.PadRight("help", " ", a.NameWidth)
buf.Printf(" <green>%s</> Display application help\n", name)
buf.Printf("\nUse \"<cyan>%s COMMAND --help</>\" for about a command\n", bin)
if a.AfterHelpBuild != nil {
a.AfterHelpBuild(buf)
}
if a.HelpWriter == nil {
a.HelpWriter = os.Stdout
}
color.Fprint(a.HelpWriter, buf.ResetAndGet())
return nil
}
// Cmd struct
type Cmd struct {
*CFlags
Name string
Func func(c *Cmd) error
OnAdd func(c *Cmd)
}
// NewCmd instance
func NewCmd(name, desc string) *Cmd {
fs := NewEmpty(func(c *CFlags) {
c.Desc = desc
c.FlagSet = flag.NewFlagSet(name, flag.ContinueOnError)
})
return &Cmd{
Name: name,
CFlags: fs,
}
}
// Config the cmd
func (c *Cmd) Config(fn func(c *Cmd)) *Cmd {
if fn != nil {
fn(c)
}
return c
}