Files
urfave-cli/help.go
T

369 lines
8.9 KiB
Go
Raw Normal View History

2013-07-14 16:30:58 -07:00
package cli
2015-05-03 17:43:52 -07:00
import (
"fmt"
"io"
"os"
2015-05-03 17:43:52 -07:00
"strings"
"text/tabwriter"
"text/template"
2019-09-13 04:56:14 +05:30
"unicode/utf8"
2015-05-03 17:43:52 -07:00
)
2013-07-14 17:37:43 -07:00
2016-05-22 15:20:52 -04:00
var helpCommand = &Command{
2015-08-03 16:51:11 -07:00
Name: "help",
Aliases: []string{"h"},
Usage: "Shows a list of commands or help for one command",
ArgsUsage: "[command]",
Action: func(c *Context) error {
args := c.Args()
2013-11-24 14:40:21 +01:00
if args.Present() {
return ShowCommandHelp(c, args.First())
}
2019-09-13 04:56:14 +05:30
_ = ShowAppHelp(c)
return nil
},
}
2016-05-22 15:20:52 -04:00
var helpSubcommand = &Command{
2015-08-03 16:51:11 -07:00
Name: "help",
Aliases: []string{"h"},
Usage: "Shows a list of commands or help for one command",
ArgsUsage: "[command]",
Action: func(c *Context) error {
args := c.Args()
if args.Present() {
return ShowCommandHelp(c, args.First())
}
return ShowSubcommandHelp(c)
},
}
2015-05-03 17:43:52 -07:00
// Prints help for the App or Command
type helpPrinter func(w io.Writer, templ string, data interface{})
2016-11-25 01:07:42 -08:00
// Prints help for the App or Command with custom template function.
type helpPrinterCustom func(w io.Writer, templ string, data interface{}, customFunc map[string]interface{})
// HelpPrinter is a function that writes the help output. If not set explicitly,
// this calls HelpPrinterCustom using only the default template functions.
//
// If custom logic for printing help is required, this function can be
// overridden. If the ExtraInfo field is defined on an App, this function
// should not be modified, as HelpPrinterCustom will be used directly in order
// to capture the extra information.
2015-05-03 17:43:52 -07:00
var HelpPrinter helpPrinter = printHelp
// HelpPrinterCustom is a function that writes the help output. It is used as
// the default implementation of HelpPrinter, and may be called directly if
// the ExtraInfo field is set on an App.
2016-11-25 01:07:42 -08:00
var HelpPrinterCustom helpPrinterCustom = printHelpCustom
// VersionPrinter prints the version for the App
2014-06-17 21:37:55 -07:00
var VersionPrinter = printVersion
2016-11-25 00:16:48 -08:00
// ShowAppHelpAndExit - Prints the list of subcommands for the app and exits with exit code.
func ShowAppHelpAndExit(c *Context, exitCode int) {
2019-09-13 04:56:14 +05:30
_ = ShowAppHelp(c)
2016-11-25 00:16:48 -08:00
os.Exit(exitCode)
}
// ShowAppHelp is an action that displays the help.
func ShowAppHelp(c *Context) error {
template := c.App.CustomAppHelpTemplate
if template == "" {
template = AppHelpTemplate
2017-02-15 01:44:04 -08:00
}
if c.App.ExtraInfo == nil {
HelpPrinter(c.App.Writer, template, c.App)
return nil
2017-02-15 01:44:04 -08:00
}
2017-02-15 01:44:04 -08:00
customAppData := func() map[string]interface{} {
return map[string]interface{}{
"ExtraInfo": c.App.ExtraInfo,
}
2016-11-25 00:16:48 -08:00
}
HelpPrinterCustom(c.App.Writer, template, c.App, customAppData())
return nil
}
2013-07-14 17:37:43 -07:00
// DefaultAppComplete prints the list of subcommands as the default app completion method
func DefaultAppComplete(c *Context) {
2019-09-13 04:56:14 +05:30
DefaultCompleteWithFlags(nil)(c)
}
2019-09-15 14:52:46 +05:30
func printCommandSuggestions(commands []*Command, writer io.Writer) {
2019-09-13 04:56:14 +05:30
for _, command := range commands {
if command.Hidden {
continue
}
2019-09-13 04:56:14 +05:30
if os.Getenv("_CLI_ZSH_AUTOCOMPLETE_HACK") == "1" {
for _, name := range command.Names() {
_, _ = fmt.Fprintf(writer, "%s:%s\n", name, command.Usage)
}
} else {
for _, name := range command.Names() {
_, _ = fmt.Fprintf(writer, "%s\n", name)
}
}
}
}
func cliArgContains(flagName string) bool {
for _, name := range strings.Split(flagName, ",") {
name = strings.TrimSpace(name)
count := utf8.RuneCountInString(name)
if count > 2 {
count = 2
}
flag := fmt.Sprintf("%s%s", strings.Repeat("-", count), name)
for _, a := range os.Args {
if a == flag {
return true
}
}
}
return false
}
func printFlagSuggestions(lastArg string, flags []Flag, writer io.Writer) {
cur := strings.TrimPrefix(lastArg, "-")
cur = strings.TrimPrefix(cur, "-")
for _, flag := range flags {
2019-09-15 14:52:46 +05:30
if bflag, ok := flag.(*BoolFlag); ok && bflag.Hidden {
2019-09-13 04:56:14 +05:30
continue
}
for _, name := range flag.Names() {
2019-09-13 04:56:14 +05:30
name = strings.TrimSpace(name)
// this will get total count utf8 letters in flag name
count := utf8.RuneCountInString(name)
if count > 2 {
count = 2 // resuse this count to generate single - or -- in flag completion
}
// if flag name has more than one utf8 letter and last argument in cli has -- prefix then
// skip flag completion for short flags example -v or -x
if strings.HasPrefix(lastArg, "--") && count == 1 {
continue
}
// match if last argument matches this flag and it is not repeated
2019-09-15 14:52:46 +05:30
if strings.HasPrefix(name, cur) && cur != name && !cliArgContains(name) {
2019-09-13 04:56:14 +05:30
flagCompletion := fmt.Sprintf("%s%s", strings.Repeat("-", count), name)
_, _ = fmt.Fprintln(writer, flagCompletion)
}
}
}
}
func DefaultCompleteWithFlags(cmd *Command) func(c *Context) {
return func(c *Context) {
if len(os.Args) > 2 {
lastArg := os.Args[len(os.Args)-2]
if strings.HasPrefix(lastArg, "-") {
printFlagSuggestions(lastArg, c.App.Flags, c.App.Writer)
if cmd != nil {
printFlagSuggestions(lastArg, cmd.Flags, c.App.Writer)
}
return
}
}
if cmd != nil {
printCommandSuggestions(cmd.Subcommands, c.App.Writer)
} else {
printCommandSuggestions(c.App.Commands, c.App.Writer)
}
}
}
2016-11-25 00:16:48 -08:00
// ShowCommandHelpAndExit - exits with code after showing help
func ShowCommandHelpAndExit(c *Context, command string, code int) {
2019-09-13 04:56:14 +05:30
_ = ShowCommandHelp(c, command)
2016-11-25 00:16:48 -08:00
os.Exit(code)
}
// ShowCommandHelp prints help for the given command
func ShowCommandHelp(ctx *Context, command string) error {
// show the subcommand help for a command with subcommands
if command == "" {
HelpPrinter(ctx.App.Writer, SubcommandHelpTemplate, ctx.App)
return nil
}
2015-05-03 17:43:52 -07:00
for _, c := range ctx.App.Commands {
2013-07-24 07:35:45 -07:00
if c.HasName(command) {
2019-10-16 07:24:21 -04:00
templ := c.CustomHelpTemplate
if templ == "" {
templ = CommandHelpTemplate
2016-11-25 00:16:48 -08:00
}
2019-10-16 07:24:21 -04:00
HelpPrinter(ctx.App.Writer, templ, c)
return nil
}
}
2013-07-14 17:37:43 -07:00
if ctx.App.CommandNotFound == nil {
2016-05-25 12:05:14 -04:00
return Exit(fmt.Sprintf("No help topic for '%v'", command), 3)
2014-03-30 20:40:46 -07:00
}
ctx.App.CommandNotFound(ctx, command)
return nil
}
2013-07-14 17:37:43 -07:00
// ShowSubcommandHelp prints help for the given subcommand
func ShowSubcommandHelp(c *Context) error {
2016-05-22 15:20:52 -04:00
if c == nil {
return nil
}
if c.Command != nil {
return ShowCommandHelp(c, c.Command.Name)
}
return ShowCommandHelp(c, "")
}
// ShowVersion prints the version number of the App
2013-07-24 07:35:45 -07:00
func ShowVersion(c *Context) {
2014-06-17 21:37:55 -07:00
VersionPrinter(c)
}
func printVersion(c *Context) {
2019-09-13 04:56:14 +05:30
_, _ = fmt.Fprintf(c.App.Writer, "%v version %v\n", c.App.Name, c.App.Version)
2013-07-24 07:35:45 -07:00
}
// ShowCompletions prints the lists of commands within a given context
2014-04-10 12:14:13 -05:00
func ShowCompletions(c *Context) {
a := c.App
2019-09-13 04:56:14 +05:30
if a != nil && a.BashComplete != nil {
a.BashComplete(c)
2014-04-10 12:14:13 -05:00
}
}
// ShowCommandCompletions prints the custom completions for a given command
2014-04-10 12:14:13 -05:00
func ShowCommandCompletions(ctx *Context, command string) {
c := ctx.App.Command(command)
2019-09-15 14:52:46 +05:30
if c != nil {
if c.BashComplete != nil {
c.BashComplete(ctx)
} else {
DefaultCompleteWithFlags(c)(ctx)
}
2014-04-10 12:14:13 -05:00
}
2019-09-16 11:27:14 +05:30
2014-04-10 12:14:13 -05:00
}
// printHelpCustom is the default implementation of HelpPrinterCustom.
//
// The customFuncs map will be combined with a default template.FuncMap to
// allow using arbitrary functions in template rendering.
func printHelpCustom(out io.Writer, templ string, data interface{}, customFuncs map[string]interface{}) {
2015-05-03 17:43:52 -07:00
funcMap := template.FuncMap{
"join": strings.Join,
}
for key, value := range customFuncs {
2019-09-13 04:56:14 +05:30
funcMap[key] = value
2016-11-25 01:07:42 -08:00
}
2015-05-03 17:43:52 -07:00
w := tabwriter.NewWriter(out, 1, 8, 2, ' ', 0)
2015-05-03 17:43:52 -07:00
t := template.Must(template.New("help").Funcs(funcMap).Parse(templ))
2016-05-25 12:05:14 -04:00
2015-05-03 17:43:52 -07:00
err := t.Execute(w, data)
if err != nil {
2019-09-13 04:56:14 +05:30
// If the writer is closed, t.Execute will fail, and there's nothing
// we can do to recover.
if os.Getenv("CLI_TEMPLATE_ERROR_DEBUG") != "" {
_, _ = fmt.Fprintf(ErrWriter, "CLI TEMPLATE ERROR: %#v\n", err)
}
2016-01-20 14:51:55 -07:00
return
2015-05-03 17:43:52 -07:00
}
2019-09-13 04:56:14 +05:30
_ = w.Flush()
2015-05-03 17:43:52 -07:00
}
2016-11-25 01:07:42 -08:00
func printHelp(out io.Writer, templ string, data interface{}) {
2019-01-27 10:38:23 -05:00
HelpPrinterCustom(out, templ, data, nil)
2016-11-25 01:07:42 -08:00
}
2013-11-01 06:45:19 -07:00
func checkVersion(c *Context) bool {
found := false
for _, name := range VersionFlag.Names() {
if c.Bool(name) {
found = true
}
2013-07-24 07:35:45 -07:00
}
return found
2013-07-24 07:35:45 -07:00
}
2013-11-01 06:45:19 -07:00
func checkHelp(c *Context) bool {
found := false
for _, name := range HelpFlag.Names() {
if c.Bool(name) {
found = true
}
2013-07-24 07:35:45 -07:00
}
return found
2013-07-20 08:44:09 -07:00
}
2013-08-13 21:40:39 -07:00
2013-11-01 06:45:19 -07:00
func checkCommandHelp(c *Context, name string) bool {
2013-08-13 21:40:39 -07:00
if c.Bool("h") || c.Bool("help") {
2019-09-13 04:56:14 +05:30
_ = ShowCommandHelp(c, name)
2013-11-01 06:45:19 -07:00
return true
2013-08-13 21:40:39 -07:00
}
2013-11-01 06:45:19 -07:00
return false
2013-08-13 21:40:39 -07:00
}
2014-04-10 12:14:13 -05:00
func checkSubcommandHelp(c *Context) bool {
2016-05-16 10:18:15 -04:00
if c.Bool("h") || c.Bool("help") {
2019-09-13 04:56:14 +05:30
_ = ShowSubcommandHelp(c)
return true
}
return false
}
2016-11-14 09:35:22 -07:00
func checkShellCompleteFlag(a *App, arguments []string) (bool, []string) {
2019-09-15 14:52:46 +05:30
if !a.EnableBashCompletion {
2016-11-04 14:56:28 -06:00
return false, arguments
}
pos := len(arguments) - 1
lastArg := arguments[pos]
2019-09-15 14:52:46 +05:30
if lastArg != "--generate-bash-completion" {
2016-11-04 14:56:28 -06:00
return false, arguments
}
return true, arguments[:pos]
}
2014-04-10 12:14:13 -05:00
func checkCompletions(c *Context) bool {
if !c.shellComplete {
return false
2016-11-04 14:56:28 -06:00
}
if args := c.Args(); args.Present() {
name := args.First()
if cmd := c.App.Command(name); cmd != nil {
// let the command handle the completion
return false
}
}
ShowCompletions(c)
return true
2014-04-10 12:14:13 -05:00
}
func checkCommandCompletions(c *Context, name string) bool {
if !c.shellComplete {
return false
2014-04-10 12:14:13 -05:00
}
ShowCommandCompletions(c, name)
return true
2014-04-10 12:14:13 -05:00
}