2013-07-15 02:16:30 +00:00
|
|
|
package cli
|
|
|
|
|
2013-12-07 15:10:04 +00:00
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2017-03-31 07:24:15 +00:00
|
|
|
"io/ioutil"
|
2016-05-01 12:36:17 +00:00
|
|
|
"reflect"
|
2016-02-09 16:36:13 +00:00
|
|
|
"runtime"
|
2013-12-07 15:10:04 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2016-09-12 03:32:43 +00:00
|
|
|
"syscall"
|
2013-12-07 15:10:04 +00:00
|
|
|
)
|
2013-07-15 02:16:30 +00:00
|
|
|
|
2016-05-02 23:42:08 +00:00
|
|
|
const defaultPlaceholder = "value"
|
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// BashCompletionFlag enables bash-completion for all commands and subcommands
|
2017-05-06 03:07:18 +00:00
|
|
|
var BashCompletionFlag Flag = BoolFlag{
|
2016-05-01 12:36:17 +00:00
|
|
|
Name: "generate-bash-completion",
|
|
|
|
Hidden: true,
|
2014-07-11 22:13:10 +00:00
|
|
|
}
|
2014-04-12 13:32:53 +00:00
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// VersionFlag prints the version for the application
|
2017-05-06 03:07:18 +00:00
|
|
|
var VersionFlag Flag = BoolFlag{
|
2014-07-11 22:13:10 +00:00
|
|
|
Name: "version, v",
|
|
|
|
Usage: "print the version",
|
|
|
|
}
|
2014-04-29 14:21:19 +00:00
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// HelpFlag prints the help for all commands and subcommands
|
2014-12-02 04:20:21 +00:00
|
|
|
// Set to the zero value (BoolFlag{}) to disable flag -- keeps subcommand
|
|
|
|
// unless HideHelp is set to true)
|
2017-05-06 03:07:18 +00:00
|
|
|
var HelpFlag Flag = BoolFlag{
|
2014-07-11 22:13:10 +00:00
|
|
|
Name: "help, h",
|
|
|
|
Usage: "show help",
|
|
|
|
}
|
2014-04-29 14:21:19 +00:00
|
|
|
|
2016-05-09 14:12:59 +00:00
|
|
|
// FlagStringer converts a flag definition to a string. This is used by help
|
|
|
|
// to display a flag.
|
2016-05-02 17:07:57 +00:00
|
|
|
var FlagStringer FlagStringFunc = stringifyFlag
|
2016-05-02 17:05:21 +00:00
|
|
|
|
2017-08-26 11:42:25 +00:00
|
|
|
// FlagNamePrefixer converts a full flag name and its placeholder into the help
|
|
|
|
// message flag prefix. This is used by the default FlagStringer.
|
|
|
|
var FlagNamePrefixer FlagNamePrefixFunc = prefixedNames
|
|
|
|
|
|
|
|
// FlagEnvHinter annotates flag help message with the environment variable
|
|
|
|
// details. This is used by the default FlagStringer.
|
|
|
|
var FlagEnvHinter FlagEnvHintFunc = withEnvHint
|
|
|
|
|
2017-04-10 14:45:51 +00:00
|
|
|
// FlagFileHinter annotates flag help message with the environment variable
|
|
|
|
// details. This is used by the default FlagStringer.
|
|
|
|
var FlagFileHinter FlagFileHintFunc = withFileHint
|
|
|
|
|
2016-10-13 14:54:57 +00:00
|
|
|
// FlagsByName is a slice of Flag.
|
|
|
|
type FlagsByName []Flag
|
|
|
|
|
|
|
|
func (f FlagsByName) Len() int {
|
|
|
|
return len(f)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f FlagsByName) Less(i, j int) bool {
|
2017-10-28 07:00:11 +00:00
|
|
|
return lexicographicLess(f[i].GetName(), f[j].GetName())
|
2016-10-13 14:54:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f FlagsByName) Swap(i, j int) {
|
|
|
|
f[i], f[j] = f[j], f[i]
|
|
|
|
}
|
|
|
|
|
2013-11-01 14:31:37 +00:00
|
|
|
// Flag is a common interface related to parsing flags in cli.
|
2016-02-09 16:36:13 +00:00
|
|
|
// For more advanced flag parsing techniques, it is recommended that
|
2013-11-01 14:31:37 +00:00
|
|
|
// this interface be implemented.
|
2013-07-15 02:16:30 +00:00
|
|
|
type Flag interface {
|
2013-07-19 00:39:42 +00:00
|
|
|
fmt.Stringer
|
2013-11-01 14:31:37 +00:00
|
|
|
// Apply Flag settings to the given flag set
|
2013-07-19 00:39:42 +00:00
|
|
|
Apply(*flag.FlagSet)
|
2015-12-15 17:29:03 +00:00
|
|
|
GetName() string
|
2013-07-19 00:39:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 07:25:13 +00:00
|
|
|
// RequiredFlag is an interface that allows us to mark flags as required
|
|
|
|
// it allows flags required flags to be backwards compatible with the Flag interface
|
2019-07-12 04:53:10 +00:00
|
|
|
type RequiredFlag interface {
|
|
|
|
Flag
|
|
|
|
|
|
|
|
IsRequired() bool
|
|
|
|
}
|
|
|
|
|
2019-08-03 10:41:50 +00:00
|
|
|
// DocGenerationFlag is an interface that allows documentation generation for the flag
|
|
|
|
type DocGenerationFlag interface {
|
|
|
|
Flag
|
|
|
|
|
2019-09-28 18:03:00 +00:00
|
|
|
// TakesValue returns true if the flag takes a value, otherwise false
|
2019-08-03 10:41:50 +00:00
|
|
|
TakesValue() bool
|
|
|
|
|
|
|
|
// GetUsage returns the usage string for the flag
|
|
|
|
GetUsage() string
|
|
|
|
|
|
|
|
// GetValue returns the flags value as string representation and an empty
|
|
|
|
// string if the flag takes no value at all.
|
|
|
|
GetValue() string
|
|
|
|
}
|
|
|
|
|
2016-09-17 23:54:29 +00:00
|
|
|
// errorableFlag is an interface that allows us to return errors during apply
|
|
|
|
// it allows flags defined in this library to return errors in a fashion backwards compatible
|
|
|
|
// TODO remove in v2 and modify the existing Flag interface to return errors
|
|
|
|
type errorableFlag interface {
|
|
|
|
Flag
|
|
|
|
|
2016-11-14 00:15:05 +00:00
|
|
|
ApplyWithError(*flag.FlagSet) error
|
2016-09-17 23:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func flagSet(name string, flags []Flag) (*flag.FlagSet, error) {
|
2013-07-24 14:35:45 +00:00
|
|
|
set := flag.NewFlagSet(name, flag.ContinueOnError)
|
2013-09-24 01:41:31 +00:00
|
|
|
|
2013-07-19 00:39:42 +00:00
|
|
|
for _, f := range flags {
|
2016-09-17 23:54:29 +00:00
|
|
|
//TODO remove in v2 when errorableFlag is removed
|
2016-11-17 19:48:03 +00:00
|
|
|
if ef, ok := f.(errorableFlag); ok {
|
2016-11-14 00:15:05 +00:00
|
|
|
if err := ef.ApplyWithError(set); err != nil {
|
2016-09-17 23:54:29 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
f.Apply(set)
|
|
|
|
}
|
2013-07-19 00:39:42 +00:00
|
|
|
}
|
2019-08-05 10:16:30 +00:00
|
|
|
set.SetOutput(ioutil.Discard)
|
2016-09-17 23:54:29 +00:00
|
|
|
return set, nil
|
2013-07-15 02:16:30 +00:00
|
|
|
}
|
|
|
|
|
2013-11-20 08:05:18 +00:00
|
|
|
func eachName(longName string, fn func(string)) {
|
|
|
|
parts := strings.Split(longName, ",")
|
|
|
|
for _, name := range parts {
|
|
|
|
name = strings.Trim(name, " ")
|
|
|
|
fn(name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-01 12:36:17 +00:00
|
|
|
func visibleFlags(fl []Flag) []Flag {
|
2019-08-07 14:44:50 +00:00
|
|
|
var visible []Flag
|
|
|
|
for _, f := range fl {
|
|
|
|
field := flagValue(f).FieldByName("Hidden")
|
2017-05-06 03:07:18 +00:00
|
|
|
if !field.IsValid() || !field.Bool() {
|
2019-08-07 14:44:50 +00:00
|
|
|
visible = append(visible, f)
|
2016-05-01 12:36:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return visible
|
2013-12-03 13:42:09 +00:00
|
|
|
}
|
|
|
|
|
2013-09-09 18:51:46 +00:00
|
|
|
func prefixFor(name string) (prefix string) {
|
|
|
|
if len(name) == 1 {
|
|
|
|
prefix = "-"
|
|
|
|
} else {
|
|
|
|
prefix = "--"
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2013-11-20 08:05:18 +00:00
|
|
|
|
2016-04-22 03:02:06 +00:00
|
|
|
// Returns the placeholder, if any, and the unquoted usage string.
|
|
|
|
func unquoteUsage(usage string) (string, string) {
|
|
|
|
for i := 0; i < len(usage); i++ {
|
|
|
|
if usage[i] == '`' {
|
|
|
|
for j := i + 1; j < len(usage); j++ {
|
|
|
|
if usage[j] == '`' {
|
|
|
|
name := usage[i+1 : j]
|
|
|
|
usage = usage[:i] + name + usage[j+1:]
|
|
|
|
return name, usage
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", usage
|
|
|
|
}
|
|
|
|
|
|
|
|
func prefixedNames(fullName, placeholder string) string {
|
|
|
|
var prefixed string
|
2013-11-20 08:05:18 +00:00
|
|
|
parts := strings.Split(fullName, ",")
|
|
|
|
for i, name := range parts {
|
|
|
|
name = strings.Trim(name, " ")
|
|
|
|
prefixed += prefixFor(name) + name
|
2016-04-22 03:02:06 +00:00
|
|
|
if placeholder != "" {
|
|
|
|
prefixed += " " + placeholder
|
|
|
|
}
|
2013-11-21 01:25:13 +00:00
|
|
|
if i < len(parts)-1 {
|
2013-11-20 08:05:18 +00:00
|
|
|
prefixed += ", "
|
|
|
|
}
|
|
|
|
}
|
2016-04-22 03:02:06 +00:00
|
|
|
return prefixed
|
2013-11-20 08:05:18 +00:00
|
|
|
}
|
2014-07-11 17:29:56 +00:00
|
|
|
|
|
|
|
func withEnvHint(envVar, str string) string {
|
|
|
|
envText := ""
|
|
|
|
if envVar != "" {
|
2016-01-22 14:08:27 +00:00
|
|
|
prefix := "$"
|
|
|
|
suffix := ""
|
|
|
|
sep := ", $"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
prefix = "%"
|
|
|
|
suffix = "%"
|
|
|
|
sep = "%, %"
|
|
|
|
}
|
2018-01-26 20:14:34 +00:00
|
|
|
envText = " [" + prefix + strings.Join(strings.Split(envVar, ","), sep) + suffix + "]"
|
2014-07-11 17:29:56 +00:00
|
|
|
}
|
|
|
|
return str + envText
|
|
|
|
}
|
2014-12-02 19:02:56 +00:00
|
|
|
|
2017-04-10 14:45:51 +00:00
|
|
|
func withFileHint(filePath, str string) string {
|
|
|
|
fileText := ""
|
|
|
|
if filePath != "" {
|
|
|
|
fileText = fmt.Sprintf(" [%s]", filePath)
|
|
|
|
}
|
|
|
|
return str + fileText
|
|
|
|
}
|
|
|
|
|
2016-06-08 14:34:44 +00:00
|
|
|
func flagValue(f Flag) reflect.Value {
|
2016-05-02 17:05:21 +00:00
|
|
|
fv := reflect.ValueOf(f)
|
2016-06-08 14:34:44 +00:00
|
|
|
for fv.Kind() == reflect.Ptr {
|
|
|
|
fv = reflect.Indirect(fv)
|
|
|
|
}
|
|
|
|
return fv
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyFlag(f Flag) string {
|
|
|
|
fv := flagValue(f)
|
2016-05-02 23:42:08 +00:00
|
|
|
|
|
|
|
switch f.(type) {
|
|
|
|
case IntSliceFlag:
|
2017-04-10 14:45:51 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
stringifyIntSliceFlag(f.(IntSliceFlag)),
|
|
|
|
),
|
|
|
|
)
|
2016-06-12 04:54:33 +00:00
|
|
|
case Int64SliceFlag:
|
2017-04-10 14:45:51 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
stringifyInt64SliceFlag(f.(Int64SliceFlag)),
|
|
|
|
),
|
|
|
|
)
|
2016-05-02 23:42:08 +00:00
|
|
|
case StringSliceFlag:
|
2017-04-10 14:45:51 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
stringifyStringSliceFlag(f.(StringSliceFlag)),
|
|
|
|
),
|
|
|
|
)
|
2016-05-02 23:42:08 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 17:05:21 +00:00
|
|
|
placeholder, usage := unquoteUsage(fv.FieldByName("Usage").String())
|
|
|
|
|
2016-05-02 23:58:16 +00:00
|
|
|
needsPlaceholder := false
|
2016-05-02 17:05:21 +00:00
|
|
|
defaultValueString := ""
|
2016-05-02 23:42:08 +00:00
|
|
|
|
2017-05-06 03:07:18 +00:00
|
|
|
if val := fv.FieldByName("Value"); val.IsValid() {
|
2016-05-02 23:42:08 +00:00
|
|
|
needsPlaceholder = true
|
2016-05-02 23:58:16 +00:00
|
|
|
defaultValueString = fmt.Sprintf(" (default: %v)", val.Interface())
|
|
|
|
|
2016-05-02 23:42:08 +00:00
|
|
|
if val.Kind() == reflect.String && val.String() != "" {
|
2016-05-02 23:58:16 +00:00
|
|
|
defaultValueString = fmt.Sprintf(" (default: %q)", val.String())
|
2016-05-02 23:42:08 +00:00
|
|
|
}
|
2016-05-02 17:05:21 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 23:58:16 +00:00
|
|
|
if defaultValueString == " (default: )" {
|
|
|
|
defaultValueString = ""
|
2016-05-02 17:05:21 +00:00
|
|
|
}
|
|
|
|
|
2016-05-02 23:42:08 +00:00
|
|
|
if needsPlaceholder && placeholder == "" {
|
|
|
|
placeholder = defaultPlaceholder
|
2016-05-02 17:05:21 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 20:14:34 +00:00
|
|
|
usageWithDefault := strings.TrimSpace(usage + defaultValueString)
|
2016-05-02 23:42:08 +00:00
|
|
|
|
2017-04-10 14:45:51 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
2018-01-26 20:14:34 +00:00
|
|
|
FlagNamePrefixer(fv.FieldByName("Name").String(), placeholder)+"\t"+usageWithDefault,
|
2017-04-10 14:45:51 +00:00
|
|
|
),
|
|
|
|
)
|
2016-05-02 23:42:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyIntSliceFlag(f IntSliceFlag) string {
|
2019-08-07 14:44:50 +00:00
|
|
|
var defaultVals []string
|
2016-06-12 04:54:33 +00:00
|
|
|
if f.Value != nil && len(f.Value.Value()) > 0 {
|
|
|
|
for _, i := range f.Value.Value() {
|
2018-01-26 20:14:34 +00:00
|
|
|
defaultVals = append(defaultVals, strconv.Itoa(i))
|
2016-06-12 04:54:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stringifySliceFlag(f.Usage, f.Name, defaultVals)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyInt64SliceFlag(f Int64SliceFlag) string {
|
2019-08-07 14:44:50 +00:00
|
|
|
var defaultVals []string
|
2016-05-02 23:42:08 +00:00
|
|
|
if f.Value != nil && len(f.Value.Value()) > 0 {
|
|
|
|
for _, i := range f.Value.Value() {
|
2018-01-26 20:14:34 +00:00
|
|
|
defaultVals = append(defaultVals, strconv.FormatInt(i, 10))
|
2016-05-02 23:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stringifySliceFlag(f.Usage, f.Name, defaultVals)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyStringSliceFlag(f StringSliceFlag) string {
|
2019-08-07 14:44:50 +00:00
|
|
|
var defaultVals []string
|
2016-05-02 23:42:08 +00:00
|
|
|
if f.Value != nil && len(f.Value.Value()) > 0 {
|
|
|
|
for _, s := range f.Value.Value() {
|
|
|
|
if len(s) > 0 {
|
2018-01-26 20:14:34 +00:00
|
|
|
defaultVals = append(defaultVals, strconv.Quote(s))
|
2016-05-02 23:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stringifySliceFlag(f.Usage, f.Name, defaultVals)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifySliceFlag(usage, name string, defaultVals []string) string {
|
|
|
|
placeholder, usage := unquoteUsage(usage)
|
|
|
|
if placeholder == "" {
|
|
|
|
placeholder = defaultPlaceholder
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultVal := ""
|
|
|
|
if len(defaultVals) > 0 {
|
|
|
|
defaultVal = fmt.Sprintf(" (default: %s)", strings.Join(defaultVals, ", "))
|
|
|
|
}
|
|
|
|
|
2018-01-26 20:14:34 +00:00
|
|
|
usageWithDefault := strings.TrimSpace(usage + defaultVal)
|
|
|
|
return FlagNamePrefixer(name, placeholder) + "\t" + usageWithDefault
|
2016-05-02 17:05:21 +00:00
|
|
|
}
|
2017-03-31 07:24:15 +00:00
|
|
|
|
|
|
|
func flagFromFileEnv(filePath, envName string) (val string, ok bool) {
|
|
|
|
for _, envVar := range strings.Split(envName, ",") {
|
|
|
|
envVar = strings.TrimSpace(envVar)
|
|
|
|
if envVal, ok := syscall.Getenv(envVar); ok {
|
|
|
|
return envVal, true
|
|
|
|
}
|
|
|
|
}
|
2017-10-26 18:08:03 +00:00
|
|
|
for _, fileVar := range strings.Split(filePath, ",") {
|
|
|
|
if data, err := ioutil.ReadFile(fileVar); err == nil {
|
|
|
|
return string(data), true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", false
|
2017-03-31 07:24:15 +00:00
|
|
|
}
|