lume/cmd/help.go

70 lines
1.2 KiB
Go
Raw Normal View History

2020-08-08 03:11:33 +00:00
package lumecmd
import (
"fmt"
2021-02-03 00:34:37 +00:00
"sort"
2020-08-08 03:11:33 +00:00
)
2021-02-17 05:24:32 +00:00
func NewCmdHelp() Command {
return Command{
2021-03-04 05:31:27 +00:00
Name: "help",
Func: HelpCmd,
2021-02-17 05:24:32 +00:00
Use: "<command>",
Short: "Show help for a command",
}
}
2021-03-17 00:23:50 +00:00
func HelpCmd(ctx Context) (int, error) {
if len(ctx.Args) == 0 {
2020-08-08 03:11:33 +00:00
printHelp(commandRegistry)
2021-03-17 00:23:50 +00:00
} else if len(ctx.Args) >= 1 {
printCmdHelp(ctx.Args[0])
2020-08-08 03:11:33 +00:00
}
return ExitSuccess, nil
2020-08-08 03:11:33 +00:00
}
func printHelp(commands map[string]Command) {
var maxLen, cmdLen int
2021-02-03 00:34:37 +00:00
var keys []string
2020-08-08 03:11:33 +00:00
for _, c := range commands {
2021-02-03 00:34:37 +00:00
keys = append(keys, c.Name)
2020-08-08 03:11:33 +00:00
cmdLen = len(c.Name)
if cmdLen > maxLen {
maxLen = cmdLen
}
}
fmt.Printf("usage:\n lume <command> [<args...>]")
fmt.Println()
fmt.Println("\ncommands:")
2021-02-03 00:34:37 +00:00
sort.Strings(keys)
for _, k := range keys {
c := commands[k]
2020-08-08 03:11:33 +00:00
fmt.Printf(" %-*s %s\n", maxLen, c.Name, c.Short)
}
}
2021-01-25 02:48:38 +00:00
func printCmdHelp(name string) error {
subCmd, ok := commandRegistry[name]
if !ok {
return fmt.Errorf("unknown commnnd: %s\n", name)
}
if subCmd.Use != "" {
fmt.Printf("usage:\n lume %s %s\n", subCmd.Name, subCmd.Use)
2021-03-04 05:31:27 +00:00
} else {
fmt.Printf("usage:\n lume %s\n", subCmd.Name)
2021-01-25 02:48:38 +00:00
}
2021-03-04 05:31:27 +00:00
if subCmd.Flags != nil {
fmt.Println()
fmt.Print("flags:\n")
subCmd.Flags.PrintDefaults()
}
2021-01-25 02:48:38 +00:00
return nil
}