-
Notifications
You must be signed in to change notification settings - Fork 1
/
command.go
375 lines (336 loc) · 7.67 KB
/
command.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package commander
import (
"fmt"
"os"
"path"
"regexp"
"strings"
)
// _Command Command line command implementation
type _Command struct {
actor
usage string // api set usage
root bool // root command
clone bool // clone command for new help message line
desc string // description
annotation map[string][]string // annotation, like 'try', 'examples', etc.
arguments _Arguments // parse arguments from usage
commands _Commands // api set subcommands
options _Options // api set options
last interface{} // the last defined object
doc string // define help message
}
func newCommand(root bool) *_Command {
return &_Command{
root: root,
}
}
func (c *_Command) init() *_Command {
if !c.Valid() {
var name string
if len(os.Args) != 0 {
name = os.Args[0]
} else if dir, err := os.Getwd(); err == nil {
name = path.Base(dir)
}
if name = defineCommand(name); len(name) == 0 {
panicError("root command should not be empty")
}
c.Usage(name)
}
return c
}
func (c _Command) isRoot() bool {
return c.root && !c.clone
}
func (c *_Command) Usage(usage string, args ...interface{}) Commander {
if len(usage) != 0 {
c.usage = strings.TrimSpace(usage)
c.regexpNames()
c.regexpArguments()
}
if len(args) >= 1 {
c.desc, _ = args[0].(string)
}
if len(args) >= 2 {
c.setAction(args[1])
}
return c
}
func (c *_Command) regexpNames() {
c.names = regexpCommand(c.usage)
}
func (c *_Command) regexpArguments() {
c.arguments.Set(c.usage)
}
func (c _Command) Valid() bool {
return len(c.names) != 0 && len(c.usage) != 0
}
func (c _Command) Name() string {
if len(c.names) == 0 {
return ""
}
name := c.names[0]
if len(c.names) > 1 {
name = fmt.Sprintf("(%s)", strings.Join(c.names, "|"))
}
return name
}
func (c *_Command) Doc(doc string) Commander {
c.doc = doc
return c.init()
}
func (c *_Command) Version(ver string) Commander {
return c.init()
}
func (c _Command) ShowVersion() string {
return ""
}
func (c *_Command) Description(desc string) Commander {
if c.init().last != nil {
switch obj := c.last.(type) {
//case *_Command:
case *_Option:
obj.Description(desc)
return c
}
}
c.desc = desc
return c
}
func (c *_Command) Annotation(title string, contents []string) Commander {
if c.annotation == nil {
c.annotation = make(map[string][]string)
}
c.annotation[title] = contents
return c.init()
}
func (c *_Command) addCommand(cmd *_Command) bool {
if c.init().Valid() && cmd.Valid() {
for _, _cmd := range c.commands {
_cmd.addExcludeKeys(cmd.getIncludeKeys())
}
c.commands = append(c.commands, cmd)
return true
} else {
panicError("command invalid format:", cmd)
}
return false
}
func (c *_Command) Command(usage string, args ...interface{}) (commander Commander) {
if param := firstParameter(usage); isArgument(param) {
commander = c.LineArgument(usage, args...)
goto SetLast
} else if isOption(param) {
commander = c.LineOption(usage, args...)
return
} else if c.clone {
usage = c.usage + " " + usage
} else if c.Valid() {
cmd := newCommand(false)
cmd.Usage(usage, args...)
cmd.addIncludeKeys(cmd.names)
c.addCommand(cmd)
commander = cmd
goto SetLast
}
commander = c.Usage(usage, args...)
SetLast:
c.last = commander
return
}
func (c *_Command) Aliases(aliases []string) Commander {
if c.init().last != nil {
switch obj := c.last.(type) {
//case *_Command:
case *_Option:
obj.Aliases(aliases)
return c
}
}
name := c.Name()
c.names = append(c.names, aliases...)
c.usage = replaceCommand(c.usage, name, c.Name())
return c
}
func (c *_Command) addOption(line bool, usage string, args ...interface{}) (opt *_Option) {
opt = newOption(usage, args...)
opt.line = line
opt.break_off = line
if opt.Valid() {
c.init().options = append(c.options, opt)
}
c.last = opt
return opt
}
func (c *_Command) Option(usage string, args ...interface{}) Commander {
if opt := c.addOption(false, usage, args...); !opt.Valid() {
panicError("option invalid format:", opt)
}
return c
}
func (c *_Command) Line(usage string, args ...interface{}) *_Command {
cmd := newCommand(c.root)
cmd.Usage(usage, args...)
cmd.clone = true
cmd.ignore = true
return cmd
}
func (c *_Command) LineArgument(usage string, args ...interface{}) Commander {
usage = c.Name() + " " + usage
cmd := c.Line(usage, args...)
if cmd.arguments.IsEmpty() {
return cmd
}
cmd.ignore = false
cmd.addIncludeKeys(cmd.arguments.Get())
c.addCommand(cmd)
return cmd
}
func (c *_Command) LineOption(usage string, args ...interface{}) Commander {
cmd := c.Line(c.usage, args...)
opt := cmd.addOption(true, usage, args...)
if cmd.options.IsEmpty() {
return cmd
}
cmd.addIncludeKeys(opt.Names())
c.addCommand(cmd)
return cmd
}
func (c *_Command) Action(action interface{}, keys ...[]string) Commander {
if c.init().last != nil {
switch obj := c.last.(type) {
//case *_Command:
case *_Option:
if c.clone || c.actor.hasAction() {
obj.actor.Action(action, keys...)
return c
}
}
}
c.actor.Action(action, keys...)
return c
}
func (c _Command) UsagesString() (r []string) {
if !c.Valid() {
return
}
str := c.usage
if len(c.options) != 0 {
uStrs := c.options.UsagesString(c.arguments.IsEmpty())
for _, uStr := range uStrs {
str += " " + uStr
}
}
name := c.Name()
if !(c.root || c.clone) || str != name {
r = append(r, str)
}
name += " "
for _, cmd := range c.commands {
uStrs := cmd.UsagesString()
for _, uStr := range uStrs {
if strings.HasPrefix(uStr, name) {
r = append(r, uStr)
} else {
r = append(r, name+uStr)
}
}
}
return
}
func (c _Command) OptionsString() (r map[string]string) {
if !c.Valid() {
return
}
r = c.options.OptionsString()
opts := c.commands.OptionsString()
for k, v := range opts {
r[k] = v
}
return
}
func (c _Command) CommandsString(prefix string) (r []string) {
if !c.Valid() {
return
}
name := regexp.MustCompile(`[()]`).ReplaceAllString(c.Name(), "")
if c.root {
name = prefix
} else {
if len(prefix) != 0 {
name = prefix + " " + name
}
if len(c.desc) != 0 {
r = append(r, Format.Description(name, c.desc))
}
}
r = append(r, c.commands.CommandsString(name)...)
return
}
// HelpMessage get string of help message that generated according to the docopt format
func (c _Command) HelpMessage() string {
if len(c.doc) != 0 {
return c.doc
}
var hm _HelpMessage
// Description
if len(c.desc) != 0 {
hm.Description(c.desc)
}
// Usages
if strs := c.UsagesString(); len(strs) != 0 {
hm.Title("Usage")
for _, str := range strs {
hm.Subtitle(str)
}
}
// Options
if opts := c.OptionsString(); len(opts) != 0 {
strs := sortStringMap(opts)
hm.Line().Title("Options")
for _, str := range strs {
hm.Subtitle(str)
}
}
// Commands
if strs := c.CommandsString(""); len(strs) != 0 {
hm.Line().Title("Commands")
for _, str := range strs {
hm.Subtitle(str)
}
}
// Annotation
if c.annotation != nil {
for title, contents := range c.annotation {
hm.Line().Title(title)
for _, content := range contents {
hm.Subtitle(content)
}
}
}
return hm.String()
}
func (c _Command) ShowHelpMessage() string {
s := c.HelpMessage()
fmt.Println(s)
return s
}
func (c _Command) Parse(args ...[]string) (Context, error) {
return nil, nil
}
func (c _Command) run(context Context) _Result {
if c.root || c.allow(context) {
if r := c.commands.run(context); r != nil {
return r
}
if r := c.options.run(context); r != nil && r.Break() {
return r
}
return c.actor.run(context, c.isRoot())
}
return nil
}
func (c *_Command) ErrorHandling(f func(error)) Commander {
return c
}