2016-11-03 22:16:01 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
2020-10-16 05:06:27 +00:00
|
|
|
"io/ioutil"
|
2016-11-03 22:16:01 +00:00
|
|
|
"reflect"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2019-05-03 12:49:14 +00:00
|
|
|
"syscall"
|
2016-11-03 22:16:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const defaultPlaceholder = "value"
|
|
|
|
|
|
|
|
// BashCompletionFlag enables bash-completion for all commands and subcommands
|
2019-05-03 12:49:14 +00:00
|
|
|
var BashCompletionFlag Flag = BoolFlag{
|
2016-11-03 22:16:01 +00:00
|
|
|
Name: "generate-bash-completion",
|
|
|
|
Hidden: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
// VersionFlag prints the version for the application
|
2019-05-03 12:49:14 +00:00
|
|
|
var VersionFlag Flag = BoolFlag{
|
2016-11-03 22:16:01 +00:00
|
|
|
Name: "version, v",
|
|
|
|
Usage: "print the version",
|
|
|
|
}
|
|
|
|
|
|
|
|
// HelpFlag prints the help for all commands and subcommands
|
|
|
|
// Set to the zero value (BoolFlag{}) to disable flag -- keeps subcommand
|
|
|
|
// unless HideHelp is set to true)
|
2019-05-03 12:49:14 +00:00
|
|
|
var HelpFlag Flag = BoolFlag{
|
2016-11-03 22:16:01 +00:00
|
|
|
Name: "help, h",
|
|
|
|
Usage: "show help",
|
|
|
|
}
|
|
|
|
|
|
|
|
// FlagStringer converts a flag definition to a string. This is used by help
|
|
|
|
// to display a flag.
|
|
|
|
var FlagStringer FlagStringFunc = stringifyFlag
|
|
|
|
|
2020-10-16 05:06:27 +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
|
|
|
|
|
|
|
|
// FlagFileHinter annotates flag help message with the environment variable
|
|
|
|
// details. This is used by the default FlagStringer.
|
|
|
|
var FlagFileHinter FlagFileHintFunc = withFileHint
|
|
|
|
|
2016-11-03 22:16:01 +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 {
|
2020-10-16 05:06:27 +00:00
|
|
|
return lexicographicLess(f[i].GetName(), f[j].GetName())
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f FlagsByName) Swap(i, j int) {
|
|
|
|
f[i], f[j] = f[j], f[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flag is a common interface related to parsing flags in cli.
|
|
|
|
// For more advanced flag parsing techniques, it is recommended that
|
|
|
|
// this interface be implemented.
|
|
|
|
type Flag interface {
|
|
|
|
fmt.Stringer
|
|
|
|
// Apply Flag settings to the given flag set
|
|
|
|
Apply(*flag.FlagSet)
|
|
|
|
GetName() string
|
|
|
|
}
|
|
|
|
|
2020-10-16 05:06:27 +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
|
|
|
|
type RequiredFlag interface {
|
|
|
|
Flag
|
|
|
|
|
|
|
|
IsRequired() bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// DocGenerationFlag is an interface that allows documentation generation for the flag
|
|
|
|
type DocGenerationFlag interface {
|
|
|
|
Flag
|
|
|
|
|
|
|
|
// TakesValue returns true if the flag takes a value, otherwise false
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-05-03 12:49:14 +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
|
|
|
|
|
|
|
|
ApplyWithError(*flag.FlagSet) error
|
|
|
|
}
|
|
|
|
|
|
|
|
func flagSet(name string, flags []Flag) (*flag.FlagSet, error) {
|
2016-11-03 22:16:01 +00:00
|
|
|
set := flag.NewFlagSet(name, flag.ContinueOnError)
|
|
|
|
|
|
|
|
for _, f := range flags {
|
2019-05-03 12:49:14 +00:00
|
|
|
//TODO remove in v2 when errorableFlag is removed
|
|
|
|
if ef, ok := f.(errorableFlag); ok {
|
|
|
|
if err := ef.ApplyWithError(set); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
f.Apply(set)
|
|
|
|
}
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
2020-10-16 05:06:27 +00:00
|
|
|
set.SetOutput(ioutil.Discard)
|
2019-05-03 12:49:14 +00:00
|
|
|
return set, nil
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func eachName(longName string, fn func(string)) {
|
|
|
|
parts := strings.Split(longName, ",")
|
|
|
|
for _, name := range parts {
|
|
|
|
name = strings.Trim(name, " ")
|
|
|
|
fn(name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func visibleFlags(fl []Flag) []Flag {
|
2020-10-16 05:06:27 +00:00
|
|
|
var visible []Flag
|
|
|
|
for _, f := range fl {
|
|
|
|
field := flagValue(f).FieldByName("Hidden")
|
2019-05-03 12:49:14 +00:00
|
|
|
if !field.IsValid() || !field.Bool() {
|
2020-10-16 05:06:27 +00:00
|
|
|
visible = append(visible, f)
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return visible
|
|
|
|
}
|
|
|
|
|
|
|
|
func prefixFor(name string) (prefix string) {
|
|
|
|
if len(name) == 1 {
|
|
|
|
prefix = "-"
|
|
|
|
} else {
|
|
|
|
prefix = "--"
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
parts := strings.Split(fullName, ",")
|
|
|
|
for i, name := range parts {
|
|
|
|
name = strings.Trim(name, " ")
|
|
|
|
prefixed += prefixFor(name) + name
|
|
|
|
if placeholder != "" {
|
|
|
|
prefixed += " " + placeholder
|
|
|
|
}
|
|
|
|
if i < len(parts)-1 {
|
|
|
|
prefixed += ", "
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return prefixed
|
|
|
|
}
|
|
|
|
|
|
|
|
func withEnvHint(envVar, str string) string {
|
|
|
|
envText := ""
|
|
|
|
if envVar != "" {
|
|
|
|
prefix := "$"
|
|
|
|
suffix := ""
|
|
|
|
sep := ", $"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
prefix = "%"
|
|
|
|
suffix = "%"
|
|
|
|
sep = "%, %"
|
|
|
|
}
|
2020-10-16 05:06:27 +00:00
|
|
|
envText = " [" + prefix + strings.Join(strings.Split(envVar, ","), sep) + suffix + "]"
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
return str + envText
|
|
|
|
}
|
|
|
|
|
2020-10-16 05:06:27 +00:00
|
|
|
func withFileHint(filePath, str string) string {
|
|
|
|
fileText := ""
|
|
|
|
if filePath != "" {
|
|
|
|
fileText = fmt.Sprintf(" [%s]", filePath)
|
|
|
|
}
|
|
|
|
return str + fileText
|
|
|
|
}
|
|
|
|
|
2016-11-03 22:16:01 +00:00
|
|
|
func flagValue(f Flag) reflect.Value {
|
|
|
|
fv := reflect.ValueOf(f)
|
|
|
|
for fv.Kind() == reflect.Ptr {
|
|
|
|
fv = reflect.Indirect(fv)
|
|
|
|
}
|
|
|
|
return fv
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyFlag(f Flag) string {
|
|
|
|
fv := flagValue(f)
|
|
|
|
|
|
|
|
switch f.(type) {
|
|
|
|
case IntSliceFlag:
|
2020-10-16 05:06:27 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
stringifyIntSliceFlag(f.(IntSliceFlag)),
|
|
|
|
),
|
|
|
|
)
|
2016-11-03 22:16:01 +00:00
|
|
|
case Int64SliceFlag:
|
2020-10-16 05:06:27 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
stringifyInt64SliceFlag(f.(Int64SliceFlag)),
|
|
|
|
),
|
|
|
|
)
|
2016-11-03 22:16:01 +00:00
|
|
|
case StringSliceFlag:
|
2020-10-16 05:06:27 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
stringifyStringSliceFlag(f.(StringSliceFlag)),
|
|
|
|
),
|
|
|
|
)
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
placeholder, usage := unquoteUsage(fv.FieldByName("Usage").String())
|
|
|
|
|
|
|
|
needsPlaceholder := false
|
|
|
|
defaultValueString := ""
|
|
|
|
|
2019-05-03 12:49:14 +00:00
|
|
|
if val := fv.FieldByName("Value"); val.IsValid() {
|
2016-11-03 22:16:01 +00:00
|
|
|
needsPlaceholder = true
|
|
|
|
defaultValueString = fmt.Sprintf(" (default: %v)", val.Interface())
|
|
|
|
|
|
|
|
if val.Kind() == reflect.String && val.String() != "" {
|
|
|
|
defaultValueString = fmt.Sprintf(" (default: %q)", val.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if defaultValueString == " (default: )" {
|
|
|
|
defaultValueString = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if needsPlaceholder && placeholder == "" {
|
|
|
|
placeholder = defaultPlaceholder
|
|
|
|
}
|
|
|
|
|
2020-10-16 05:06:27 +00:00
|
|
|
usageWithDefault := strings.TrimSpace(usage + defaultValueString)
|
2016-11-03 22:16:01 +00:00
|
|
|
|
2020-10-16 05:06:27 +00:00
|
|
|
return FlagFileHinter(
|
|
|
|
fv.FieldByName("FilePath").String(),
|
|
|
|
FlagEnvHinter(
|
|
|
|
fv.FieldByName("EnvVar").String(),
|
|
|
|
FlagNamePrefixer(fv.FieldByName("Name").String(), placeholder)+"\t"+usageWithDefault,
|
|
|
|
),
|
|
|
|
)
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyIntSliceFlag(f IntSliceFlag) string {
|
2020-10-16 05:06:27 +00:00
|
|
|
var defaultVals []string
|
2016-11-03 22:16:01 +00:00
|
|
|
if f.Value != nil && len(f.Value.Value()) > 0 {
|
|
|
|
for _, i := range f.Value.Value() {
|
2020-10-16 05:06:27 +00:00
|
|
|
defaultVals = append(defaultVals, strconv.Itoa(i))
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stringifySliceFlag(f.Usage, f.Name, defaultVals)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyInt64SliceFlag(f Int64SliceFlag) string {
|
2020-10-16 05:06:27 +00:00
|
|
|
var defaultVals []string
|
2016-11-03 22:16:01 +00:00
|
|
|
if f.Value != nil && len(f.Value.Value()) > 0 {
|
|
|
|
for _, i := range f.Value.Value() {
|
2020-10-16 05:06:27 +00:00
|
|
|
defaultVals = append(defaultVals, strconv.FormatInt(i, 10))
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stringifySliceFlag(f.Usage, f.Name, defaultVals)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringifyStringSliceFlag(f StringSliceFlag) string {
|
2020-10-16 05:06:27 +00:00
|
|
|
var defaultVals []string
|
2016-11-03 22:16:01 +00:00
|
|
|
if f.Value != nil && len(f.Value.Value()) > 0 {
|
|
|
|
for _, s := range f.Value.Value() {
|
|
|
|
if len(s) > 0 {
|
2020-10-16 05:06:27 +00:00
|
|
|
defaultVals = append(defaultVals, strconv.Quote(s))
|
2016-11-03 22:16:01 +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, ", "))
|
|
|
|
}
|
|
|
|
|
2020-10-16 05:06:27 +00:00
|
|
|
usageWithDefault := strings.TrimSpace(usage + defaultVal)
|
|
|
|
return FlagNamePrefixer(name, placeholder) + "\t" + usageWithDefault
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, fileVar := range strings.Split(filePath, ",") {
|
|
|
|
if data, err := ioutil.ReadFile(fileVar); err == nil {
|
|
|
|
return string(data), true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "", false
|
2016-11-03 22:16:01 +00:00
|
|
|
}
|