forked from mkideal/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command.go
590 lines (516 loc) · 13.3 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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
package cli
import (
"bytes"
"fmt"
"io"
"net/http"
"os"
"regexp"
"runtime"
"sort"
"strings"
"sync"
"github.com/labstack/gommon/color"
"github.com/mattn/go-colorable"
)
var commandNameRegexp = regexp.MustCompile("^[a-zA-Z_0-9][a-zA-Z_\\-0-9]*$")
// IsValidCommandName validates name of command
func IsValidCommandName(commandName string) bool {
return commandNameRegexp.MatchString(commandName)
}
type (
// CommandFunc ...
CommandFunc func(*Context) error
// ArgvFunc ...
ArgvFunc func() interface{}
// NumCheckFunc represents function type which used to check num of args
NumCheckFunc func(n int) bool
// UsageFunc represents custom function of usage
UsageFunc func() string
)
// ExactN returns a NumCheckFunc which checks if a number is equal to num
func ExactN(num int) NumCheckFunc { return func(n int) bool { return n == num } }
// AtLeast returns a NumCheckFunc which checks if a number is greater than or equal to num
func AtLeast(num int) NumCheckFunc { return func(n int) bool { return n >= num } }
// AtMost returns a NumCheckFunc which checks if a number is less than or equal to num
func AtMost(num int) NumCheckFunc { return func(n int) bool { return n <= num } }
type (
// Command is the top-level instance in command-line app
Command struct {
Name string // Command name
Aliases []string // Command aliases name
Desc string // Command abstract
Text string // Command detail description
Hidden bool // should hide command in help menus
// CanSubRoute indicates whether to allow incomplete subcommand routing
// e.g.
//
// ./app cmd1 cmd2
//
// Suppose cmd2 not found in sub-commands of cmd1. Command cmd1 would be
// executed if cmd1.CanSubRoute is true, an error returned otherwise.
CanSubRoute bool
// NoHook indicates whether skip hooked functions
NoHook bool
// Global indicates whether it's argv object should be used to sub-command
Global bool
// functions
Fn CommandFunc // Command handler
UsageFn UsageFunc // Custom usage function
Argv ArgvFunc // Command argument factory function
NumArg NumCheckFunc // NumArg check number of args
NumOption NumCheckFunc // NumOption check num of options
HTTPRouters []string
HTTPMethods []string
// hooks for current command
OnBefore func(*Context) error
OnAfter func(*Context) error
// hooks for all commands if current command is root command
OnRootPrepareError func(error) error
OnRootBefore func(*Context) error
OnRootAfter func(*Context) error
routersMap map[string]string
parent *Command
children []*Command
isServer bool
locker sync.Mutex // protect following data
usage string
usageStyle UsageStyle
}
// CommandTree represents a tree of commands
CommandTree struct {
command *Command
forest []*CommandTree
}
)
// Register registers a child command
func (cmd *Command) Register(child *Command) *Command {
if child == nil {
panic("command `" + cmd.Name + "` try register a nil command")
}
if !IsValidCommandName(child.Name) {
panic("illegal command name `" + cmd.Name + "`")
}
if cmd.children == nil {
cmd.children = []*Command{}
}
if child.parent != nil {
panic("command `" + child.Name + "` has been child of `" + child.parent.Name + "`")
}
if cmd.findChild(child.Name) != nil {
panic("repeat register child `" + child.Name + "` for command `" + cmd.Name + "`")
}
if child.Aliases != nil {
for _, alias := range child.Aliases {
if cmd.findChild(alias) != nil {
panic("repeat register child `" + alias + "` for command `" + cmd.Name + "`")
}
}
}
cmd.children = append(cmd.children, child)
child.parent = cmd
return child
}
// RegisterFunc registers handler as child command
func (cmd *Command) RegisterFunc(name string, fn CommandFunc, argvFn ArgvFunc) *Command {
return cmd.Register(&Command{Name: name, Fn: fn, Argv: argvFn})
}
// RegisterTree registers a command tree
func (cmd *Command) RegisterTree(forest ...*CommandTree) {
for _, tree := range forest {
cmd.Register(tree.command)
if tree.forest != nil && len(tree.forest) > 0 {
tree.command.RegisterTree(tree.forest...)
}
}
}
// Parent returns command's parent
func (cmd *Command) Parent() *Command {
return cmd.parent
}
// IsServer returns command whether if run as server
func (cmd *Command) IsServer() bool {
return cmd.isServer
}
// IsClient returns command whether if run as client
func (cmd *Command) IsClient() bool {
return !cmd.IsServer()
}
// SetIsServer sets command running mode(server or not)
func (cmd *Command) SetIsServer(yes bool) {
cmd.Root().isServer = yes
}
// Run runs the command with args
func (cmd *Command) Run(args []string) error {
return cmd.RunWith(args, nil, nil)
}
// RunWith runs the command with args and writer,httpMethods
func (cmd *Command) RunWith(args []string, writer io.Writer, resp http.ResponseWriter, httpMethods ...string) error {
fds := []uintptr{}
if writer == nil {
writer = colorable.NewColorableStdout()
fds = append(fds, os.Stdout.Fd())
}
clr := color.Color{}
colorSwitch(&clr, writer, fds...)
if runtime.GOOS == "windows" {
clr.Disable()
}
var ctx *Context
var suggestion string
ctx, suggestion, err := cmd.prepare(clr, args, writer, resp, httpMethods...)
if err == ExitError {
return nil
}
if err != nil {
if cmd.OnRootPrepareError != nil {
err = cmd.OnRootPrepareError(err)
}
if err != nil {
return wrapErr(err, suggestion, clr)
}
return nil
}
if ctx.command.NoHook {
return ctx.command.Fn(ctx)
}
funcs := []func(*Context) error{
ctx.command.OnBefore,
cmd.OnRootBefore,
ctx.command.Fn,
cmd.OnRootAfter,
ctx.command.OnAfter,
}
for _, f := range funcs {
if f != nil {
if err := f(ctx); err != nil {
if err == ExitError {
return nil
}
return err
}
}
}
return nil
}
func isEmptyArgvList(argvList []interface{}) bool {
if argvList == nil {
return true
}
for _, argv := range argvList {
if argv != nil {
return false
}
}
return true
}
func (cmd *Command) argvList() []interface{} {
argvList := make([]interface{}, 0, 1)
if cmd.Argv != nil {
argvList = append(argvList, cmd.Argv())
} else {
argvList = append(argvList, nil)
}
next := cmd.parent
for next != nil {
if next.Argv != nil && next.Global {
argvList = append(argvList, next.Argv())
} else {
argvList = append(argvList, nil)
}
next = next.parent
}
return argvList
}
func (cmd *Command) prepare(clr color.Color, args []string, writer io.Writer, resp http.ResponseWriter, httpMethods ...string) (ctx *Context, suggestion string, err error) {
// split args
router := []string{}
for _, arg := range args {
if strings.HasPrefix(arg, dashOne) {
break
}
router = append(router, arg)
}
path := strings.Join(router, " ")
child, end := cmd.SubRoute(router)
// if route fail
if !child.CanSubRoute && end != len(router) {
suggestions := cmd.Suggestions(path)
buff := bytes.NewBufferString("")
if suggestions != nil && len(suggestions) > 0 {
if len(suggestions) == 1 {
fmt.Fprintf(buff, "\nDid you mean %s?", clr.Bold(suggestions[0]))
} else {
fmt.Fprintf(buff, "\n\nDid you mean one of these?\n")
for _, sug := range suggestions {
fmt.Fprintf(buff, " %s\n", sug)
}
}
}
suggestion = buff.String()
err = throwCommandNotFound(clr.Red(path))
return
}
methodAllowed := false
if len(httpMethods) == 0 ||
child.HTTPMethods == nil ||
len(child.HTTPMethods) == 0 {
methodAllowed = true
} else {
method := httpMethods[0]
for _, m := range child.HTTPMethods {
if method == m {
methodAllowed = true
break
}
}
}
if !methodAllowed {
err = throwMethodNotAllowed(clr.Yellow(httpMethods[0]))
return
}
// create argvList
argvList := child.argvList()
// create Context
path = child.Path()
ctx, err = newContext(path, router[:end], args[end:], argvList, clr)
ctx.command = child
ctx.writer = writer
if !ctx.flagSet.hasForce {
if !child.checkNumOption(ctx.NOpt()) || !ctx.command.checkNumArg(ctx.NArg()) {
ctx.WriteUsage()
err = ExitError
return
}
}
if err != nil {
return
}
ctx.HTTPResponse = resp
// auto help
for _, argv := range argvList {
if argv != nil {
if helper, ok := argv.(AutoHelper); ok && helper.AutoHelp() {
ctx.WriteUsage()
err = ExitError
return
}
}
}
if len(router) == 0 && cmd.Fn == nil {
err = throwCommandNotFound(clr.Yellow(cmd.Name))
return
}
if !ctx.flagSet.hasForce {
for _, argv := range argvList {
// validate argv if argv implements interface Validator
if argv != nil {
if validator, ok := argv.(Validator); ok {
err = validator.Validate(ctx)
if err != nil {
return
}
}
}
}
}
return
}
func (cmd *Command) checkNumArg(num int) bool {
return cmd.NumArg == nil || cmd.NumArg(num)
}
func (cmd *Command) checkNumOption(num int) bool {
return cmd.NumOption == nil || cmd.NumOption(num)
}
// Usage returns the usage string of command
func (cmd *Command) Usage(ctx *Context) string {
if cmd.UsageFn != nil {
return cmd.UsageFn()
}
return cmd.defaultUsageFn(ctx)
}
func (cmd *Command) defaultUsageFn(ctx *Context) string {
var (
style = GetUsageStyle()
clr = *(ctx.Color())
)
// get usage form cache
cmd.locker.Lock()
tmpUsage := cmd.usage
usageStyle := cmd.usageStyle
cmd.locker.Unlock()
if tmpUsage != "" && usageStyle == style {
return tmpUsage
}
buff := bytes.NewBufferString("")
if cmd.Desc != "" {
fmt.Fprintf(buff, "%s\n\n", cmd.Desc)
}
if cmd.Text != "" {
fmt.Fprintf(buff, "%s\n\n", cmd.Text)
}
argvList := cmd.argvList()
isEmpty := isEmptyArgvList(argvList)
if !isEmpty {
fmt.Fprintf(buff, "%s:\n\n%s", clr.Bold("Options"), usage(argvList, clr, style))
}
if len(cmd.children) > 0 {
if !isEmpty {
buff.WriteByte('\n')
}
fmt.Fprintf(buff, "%s:\n\n%v", clr.Bold("Commands"), cmd.ChildrenDescriptions(" ", " "))
}
tmpUsage = buff.String()
cmd.locker.Lock()
cmd.usage = tmpUsage
cmd.usageStyle = style
cmd.locker.Unlock()
return tmpUsage
}
// Path returns space-separated command full name
func (cmd *Command) Path() string {
return cmd.pathWithSep(" ")
}
func (cmd *Command) pathWithSep(sep string) string {
var (
path = ""
cur = cmd
)
for cur.parent != nil {
if cur.Name != "" {
if path == "" {
path = cur.Name
} else {
path = cur.Name + sep + path
}
}
cur = cur.parent
}
return path
}
// Root returns command's ancestor
func (cmd *Command) Root() *Command {
ancestor := cmd
for ancestor.parent != nil {
ancestor = ancestor.parent
}
return ancestor
}
// Route finds command full matching router
func (cmd *Command) Route(router []string) *Command {
child, end := cmd.SubRoute(router)
if end != len(router) {
return nil
}
return child
}
// SubRoute finds command partial matching router
func (cmd *Command) SubRoute(router []string) (*Command, int) {
cur := cmd
for i, name := range router {
child := cur.findChild(name)
if child == nil {
return cur, i
}
cur = child
}
return cur, len(router)
}
// findChild finds child command by name
func (cmd *Command) findChild(name string) *Command {
if cmd.nochild() {
return nil
}
for _, child := range cmd.children {
if child.Name == name {
return child
}
if child.Aliases != nil {
for _, alias := range child.Aliases {
if alias == name {
return child
}
}
}
}
return nil
}
// ListChildren returns all names of command children
func (cmd *Command) ListChildren() []string {
if cmd.nochild() {
return []string{}
}
ret := make([]string, 0, len(cmd.children))
for _, child := range cmd.children {
ret = append(ret, child.Name)
}
return ret
}
// ChildrenDescriptions returns all children's brief infos by one string
func (cmd *Command) ChildrenDescriptions(prefix, indent string) string {
if cmd.nochild() {
return ""
}
buff := bytes.NewBufferString("")
length := 0
for _, child := range cmd.children {
if len(child.Name) > length {
length = len(child.Name)
}
}
format := fmt.Sprintf("%s%%-%ds%s%%s%%s\n", prefix, length, indent)
var childrenList []string
for _, child := range cmd.children {
if child.Hidden {
continue
}
aliases := ""
if child.Aliases != nil && len(child.Aliases) > 0 {
aliasesBuff := bytes.NewBufferString("(aliases ")
aliasesBuff.WriteString(strings.Join(child.Aliases, ","))
aliasesBuff.WriteString(")")
aliases = aliasesBuff.String()
}
childStr := fmt.Sprintf(format, child.Name, child.Desc, aliases)
childrenList = append(childrenList, childStr)
}
sort.Strings(childrenList)
for _, line := range childrenList {
fmt.Fprint(buff, line)
}
return buff.String()
}
func (cmd *Command) nochild() bool {
return cmd.children == nil || len(cmd.children) == 0
}
// Suggestions returns all similar commands
func (cmd *Command) Suggestions(path string) []string {
if cmd.parent != nil {
return cmd.Root().Suggestions(path)
}
var (
cmds = []*Command{cmd}
targets = []string{}
)
for len(cmds) > 0 {
if cmds[0].nochild() {
cmds = cmds[1:]
} else {
for _, child := range cmds[0].children {
targets = append(targets, child.Path())
}
cmds = append(cmds[0].children, cmds[1:]...)
}
}
dists := []editDistanceRank{}
for i, size := 0, len(targets); i < size; i++ {
if d, ok := match(path, targets[i]); ok {
dists = append(dists, editDistanceRank{s: targets[i], d: d})
}
}
sort.Sort(editDistanceRankSlice(dists))
for i := 0; i < len(dists); i++ {
targets[i] = dists[i].s
}
return targets[:len(dists)]
}