Post-porting fixes for v3
This commit is contained in:
parent
5db9db6d38
commit
f8faf77e43
@ -174,10 +174,10 @@ func ExampleApp_Run_commandHelp() {
|
|||||||
_ = app.Run(os.Args)
|
_ = app.Run(os.Args)
|
||||||
// Output:
|
// Output:
|
||||||
// NAME:
|
// NAME:
|
||||||
// greet describeit [command options] [arguments...]
|
// greet describeit - use it to see a description
|
||||||
//
|
//
|
||||||
// USAGE:
|
// USAGE:
|
||||||
// greet describeit [arguments...]
|
// greet describeit [command options] [arguments...]
|
||||||
//
|
//
|
||||||
// DESCRIPTION:
|
// DESCRIPTION:
|
||||||
// This is how we describe describeit the function
|
// This is how we describe describeit the function
|
||||||
|
@ -300,9 +300,7 @@ func (c *Command) VisibleFlagCategories() []VisibleFlagCategory {
|
|||||||
if c.flagCategories == nil {
|
if c.flagCategories == nil {
|
||||||
c.flagCategories = newFlagCategories()
|
c.flagCategories = newFlagCategories()
|
||||||
for _, fl := range c.Flags {
|
for _, fl := range c.Flags {
|
||||||
if cf, ok := fl.(CategorizableFlag); ok {
|
c.flagCategories.AddFlag(fl.GetCategory(), fl)
|
||||||
c.flagCategories.AddFlag(cf.GetCategory(), cf)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return c.flagCategories.VisibleCategories()
|
return c.flagCategories.VisibleCategories()
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# NOTE: this file is used by the tool defined in
|
# NOTE: this file is used by the tool defined in
|
||||||
# ./cmd/urfave-cli-genflags/main.go which uses the
|
# ./cmd/urfave-cli-genflags/main.go which uses the
|
||||||
# `Spec` type that maps to this file structure.
|
# `Spec` type that maps to this file structure.
|
||||||
|
|
||||||
flag_types:
|
flag_types:
|
||||||
bool:
|
bool:
|
||||||
no_default_text: true
|
no_default_text: true
|
||||||
|
@ -183,6 +183,15 @@ func (f *Uint64SliceFlag) stringify() string {
|
|||||||
return stringifySliceFlag(f.Usage, f.Names(), defaultVals)
|
return stringifySliceFlag(f.Usage, f.Names(), defaultVals)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RunAction executes flag action if set
|
||||||
|
func (f *Uint64SliceFlag) RunAction(c *Context) error {
|
||||||
|
if f.Action != nil {
|
||||||
|
return f.Action(c, c.Uint64Slice(f.Name))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Uint64Slice looks up the value of a local Uint64SliceFlag, returns
|
// Uint64Slice looks up the value of a local Uint64SliceFlag, returns
|
||||||
// nil if not found
|
// nil if not found
|
||||||
func (cCtx *Context) Uint64Slice(name string) []uint64 {
|
func (cCtx *Context) Uint64Slice(name string) []uint64 {
|
||||||
|
@ -194,6 +194,15 @@ func (f *UintSliceFlag) stringify() string {
|
|||||||
return stringifySliceFlag(f.Usage, f.Names(), defaultVals)
|
return stringifySliceFlag(f.Usage, f.Names(), defaultVals)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RunAction executes flag action if set
|
||||||
|
func (f *UintSliceFlag) RunAction(c *Context) error {
|
||||||
|
if f.Action != nil {
|
||||||
|
return f.Action(c, c.UintSlice(f.Name))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// UintSlice looks up the value of a local UintSliceFlag, returns
|
// UintSlice looks up the value of a local UintSliceFlag, returns
|
||||||
// nil if not found
|
// nil if not found
|
||||||
func (cCtx *Context) UintSlice(name string) []uint {
|
func (cCtx *Context) UintSlice(name string) []uint {
|
||||||
|
@ -5,24 +5,24 @@ line Go applications. cli is designed to be easy to understand and write,
|
|||||||
the most simple cli application can be written as follows:
|
the most simple cli application can be written as follows:
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
(&cli.App{}).Run(os.Args)
|
(&cli.App{}).Run(os.Args)
|
||||||
}
|
}
|
||||||
|
|
||||||
Of course this application does not do much, so let's make this an actual
|
Of course this application does not do much, so let's make this an actual
|
||||||
application:
|
application:
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := &cli.App{
|
app := &cli.App{
|
||||||
Name: "greet",
|
Name: "greet",
|
||||||
Usage: "say a greeting",
|
Usage: "say a greeting",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
fmt.Println("Greetings")
|
fmt.Println("Greetings")
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
app.Run(os.Args)
|
app.Run(os.Args)
|
||||||
}
|
}
|
||||||
|
|
||||||
VARIABLES
|
VARIABLES
|
||||||
|
|
||||||
@ -49,8 +49,8 @@ AUTHOR{{with $length := len .Authors}}{{if ne 1 $length}}S{{end}}{{end}}:
|
|||||||
|
|
||||||
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
||||||
{{.Name}}:{{range .VisibleCommands}}
|
{{.Name}}:{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{range .VisibleCommands}}
|
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{ $cv := offsetCommands .VisibleCommands 5}}{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{end}}{{if .VisibleFlagCategories}}
|
{{$s := join .Names ", "}}{{$s}}{{ $sp := subtract $cv (offset $s 3) }}{{ indent $sp ""}}{{wrap .Usage $cv}}{{end}}{{end}}{{end}}{{end}}{{if .VisibleFlagCategories}}
|
||||||
|
|
||||||
GLOBAL OPTIONS:{{range .VisibleFlagCategories}}
|
GLOBAL OPTIONS:{{range .VisibleFlagCategories}}
|
||||||
{{if .Name}}{{.Name}}
|
{{if .Name}}{{.Name}}
|
||||||
@ -82,12 +82,10 @@ DESCRIPTION:
|
|||||||
|
|
||||||
OPTIONS:{{range .VisibleFlagCategories}}
|
OPTIONS:{{range .VisibleFlagCategories}}
|
||||||
{{if .Name}}{{.Name}}
|
{{if .Name}}{{.Name}}
|
||||||
{{end}}{{range .Flags}}{{.}}
|
{{end}}{{range .Flags}}{{.}}{{end}}{{end}}{{else}}{{if .VisibleFlags}}
|
||||||
{{end}}{{end}}{{else}}{{if .VisibleFlags}}
|
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
{{range .VisibleFlags}}{{.}}
|
{{range .VisibleFlags}}{{.}}{{end}}{{end}}{{end}}
|
||||||
{{end}}{{end}}{{end}}
|
|
||||||
`
|
`
|
||||||
CommandHelpTemplate is the text template for the command help topic. cli.go
|
CommandHelpTemplate is the text template for the command help topic. cli.go
|
||||||
uses text/template to render templates. You can render custom help text by
|
uses text/template to render templates. You can render custom help text by
|
||||||
@ -157,12 +155,11 @@ DESCRIPTION:
|
|||||||
|
|
||||||
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
||||||
{{.Name}}:{{range .VisibleCommands}}
|
{{.Name}}:{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{range .VisibleCommands}}
|
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{ $cv := offsetCommands .VisibleCommands 5}}{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{if .VisibleFlags}}
|
{{$s := join .Names ", "}}{{$s}}{{ $sp := subtract $cv (offset $s 3) }}{{ indent $sp ""}}{{wrap .Usage $cv}}{{end}}{{end}}{{end}}{{if .VisibleFlags}}
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
{{range .VisibleFlags}}{{.}}
|
{{range .VisibleFlags}}{{.}}{{end}}{{end}}
|
||||||
{{end}}{{end}}
|
|
||||||
`
|
`
|
||||||
SubcommandHelpTemplate is the text template for the subcommand help topic.
|
SubcommandHelpTemplate is the text template for the subcommand help topic.
|
||||||
cli.go uses text/template to render templates. You can render custom help
|
cli.go uses text/template to render templates. You can render custom help
|
||||||
@ -300,6 +297,8 @@ type App struct {
|
|||||||
CommandNotFound CommandNotFoundFunc
|
CommandNotFound CommandNotFoundFunc
|
||||||
// Execute this function if a usage error occurs
|
// Execute this function if a usage error occurs
|
||||||
OnUsageError OnUsageErrorFunc
|
OnUsageError OnUsageErrorFunc
|
||||||
|
// Execute this function when an invalid flag is accessed from the context
|
||||||
|
InvalidFlagAccessHandler InvalidFlagAccessFunc
|
||||||
// Compilation date
|
// Compilation date
|
||||||
Compiled time.Time
|
Compiled time.Time
|
||||||
// List of all authors who contributed
|
// List of all authors who contributed
|
||||||
@ -450,6 +449,10 @@ type BoolFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Count *int
|
||||||
|
|
||||||
|
Action func(*Context, bool) error
|
||||||
}
|
}
|
||||||
BoolFlag is a flag with type bool
|
BoolFlag is a flag with type bool
|
||||||
|
|
||||||
@ -487,6 +490,9 @@ func (f *BoolFlag) IsVisible() bool
|
|||||||
func (f *BoolFlag) Names() []string
|
func (f *BoolFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *BoolFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *BoolFlag) String() string
|
func (f *BoolFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -622,7 +628,7 @@ func (cCtx *Context) Bool(name string) bool
|
|||||||
Bool looks up the value of a local BoolFlag, returns false if not found
|
Bool looks up the value of a local BoolFlag, returns false if not found
|
||||||
|
|
||||||
func (cCtx *Context) Count(name string) int
|
func (cCtx *Context) Count(name string) int
|
||||||
NumOccurrences returns the num of occurences of this flag
|
Count returns the num of occurences of this flag
|
||||||
|
|
||||||
func (cCtx *Context) Duration(name string) time.Duration
|
func (cCtx *Context) Duration(name string) time.Duration
|
||||||
Duration looks up the value of a local DurationFlag, returns 0 if not found
|
Duration looks up the value of a local DurationFlag, returns 0 if not found
|
||||||
@ -693,9 +699,23 @@ func (cCtx *Context) Uint(name string) uint
|
|||||||
func (cCtx *Context) Uint64(name string) uint64
|
func (cCtx *Context) Uint64(name string) uint64
|
||||||
Uint64 looks up the value of a local Uint64Flag, returns 0 if not found
|
Uint64 looks up the value of a local Uint64Flag, returns 0 if not found
|
||||||
|
|
||||||
|
func (cCtx *Context) Uint64Slice(name string) []uint64
|
||||||
|
Uint64Slice looks up the value of a local Uint64SliceFlag, returns nil if
|
||||||
|
not found
|
||||||
|
|
||||||
|
func (cCtx *Context) UintSlice(name string) []uint
|
||||||
|
UintSlice looks up the value of a local UintSliceFlag, returns nil if not
|
||||||
|
found
|
||||||
|
|
||||||
func (cCtx *Context) Value(name string) interface{}
|
func (cCtx *Context) Value(name string) interface{}
|
||||||
Value returns the value of the flag corresponding to `name`
|
Value returns the value of the flag corresponding to `name`
|
||||||
|
|
||||||
|
type Countable interface {
|
||||||
|
Count() int
|
||||||
|
}
|
||||||
|
Countable is an interface to enable detection of flag values which support
|
||||||
|
repetitive flags
|
||||||
|
|
||||||
type DurationFlag struct {
|
type DurationFlag struct {
|
||||||
Name string
|
Name string
|
||||||
|
|
||||||
@ -713,6 +733,8 @@ type DurationFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, time.Duration) error
|
||||||
}
|
}
|
||||||
DurationFlag is a flag with type time.Duration
|
DurationFlag is a flag with type time.Duration
|
||||||
|
|
||||||
@ -750,6 +772,9 @@ func (f *DurationFlag) IsVisible() bool
|
|||||||
func (f *DurationFlag) Names() []string
|
func (f *DurationFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *DurationFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *DurationFlag) String() string
|
func (f *DurationFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -823,6 +848,8 @@ type Flag interface {
|
|||||||
// GetValue returns the flags value as string representation and an empty
|
// GetValue returns the flags value as string representation and an empty
|
||||||
// string if the flag takes no value at all.
|
// string if the flag takes no value at all.
|
||||||
GetValue() string
|
GetValue() string
|
||||||
|
|
||||||
|
RunAction(*Context) error
|
||||||
}
|
}
|
||||||
Flag is a common interface related to parsing flags in cli. For more
|
Flag is a common interface related to parsing flags in cli. For more
|
||||||
advanced flag parsing techniques, it is recommended that this interface be
|
advanced flag parsing techniques, it is recommended that this interface be
|
||||||
@ -916,6 +943,8 @@ type Float64Flag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, float64) error
|
||||||
}
|
}
|
||||||
Float64Flag is a flag with type float64
|
Float64Flag is a flag with type float64
|
||||||
|
|
||||||
@ -953,6 +982,9 @@ func (f *Float64Flag) IsVisible() bool
|
|||||||
func (f *Float64Flag) Names() []string
|
func (f *Float64Flag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Float64Flag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *Float64Flag) String() string
|
func (f *Float64Flag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -999,6 +1031,8 @@ type Float64SliceFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []float64) error
|
||||||
}
|
}
|
||||||
Float64SliceFlag is a flag with type *Float64Slice
|
Float64SliceFlag is a flag with type *Float64Slice
|
||||||
|
|
||||||
@ -1038,6 +1072,9 @@ func (f *Float64SliceFlag) IsVisible() bool
|
|||||||
func (f *Float64SliceFlag) Names() []string
|
func (f *Float64SliceFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Float64SliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *Float64SliceFlag) SetDestination(slice []float64)
|
func (f *Float64SliceFlag) SetDestination(slice []float64)
|
||||||
|
|
||||||
func (f *Float64SliceFlag) SetValue(slice []float64)
|
func (f *Float64SliceFlag) SetValue(slice []float64)
|
||||||
@ -1067,16 +1104,18 @@ type GenericFlag struct {
|
|||||||
HasBeenSet bool
|
HasBeenSet bool
|
||||||
|
|
||||||
Value Generic
|
Value Generic
|
||||||
Destination *Generic
|
Destination Generic
|
||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, interface{}) error
|
||||||
}
|
}
|
||||||
GenericFlag is a flag with type Generic
|
GenericFlag is a flag with type Generic
|
||||||
|
|
||||||
func (f GenericFlag) Apply(set *flag.FlagSet) error
|
func (f *GenericFlag) Apply(set *flag.FlagSet) error
|
||||||
Apply takes the flagset and calls Set on the generic flag with the value
|
Apply takes the flagset and calls Set on the generic flag with the value
|
||||||
provided by the user for parsing by the flag
|
provided by the user for parsing by the flag
|
||||||
|
|
||||||
@ -1111,6 +1150,9 @@ func (f *GenericFlag) IsVisible() bool
|
|||||||
func (f *GenericFlag) Names() []string
|
func (f *GenericFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *GenericFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *GenericFlag) String() string
|
func (f *GenericFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -1134,6 +1176,10 @@ type Int64Flag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, int64) error
|
||||||
}
|
}
|
||||||
Int64Flag is a flag with type int64
|
Int64Flag is a flag with type int64
|
||||||
|
|
||||||
@ -1171,6 +1217,9 @@ func (f *Int64Flag) IsVisible() bool
|
|||||||
func (f *Int64Flag) Names() []string
|
func (f *Int64Flag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Int64Flag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *Int64Flag) String() string
|
func (f *Int64Flag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -1217,6 +1266,8 @@ type Int64SliceFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []int64) error
|
||||||
}
|
}
|
||||||
Int64SliceFlag is a flag with type *Int64Slice
|
Int64SliceFlag is a flag with type *Int64Slice
|
||||||
|
|
||||||
@ -1256,6 +1307,9 @@ func (f *Int64SliceFlag) IsVisible() bool
|
|||||||
func (f *Int64SliceFlag) Names() []string
|
func (f *Int64SliceFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Int64SliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *Int64SliceFlag) SetDestination(slice []int64)
|
func (f *Int64SliceFlag) SetDestination(slice []int64)
|
||||||
|
|
||||||
func (f *Int64SliceFlag) SetValue(slice []int64)
|
func (f *Int64SliceFlag) SetValue(slice []int64)
|
||||||
@ -1283,6 +1337,10 @@ type IntFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, int) error
|
||||||
}
|
}
|
||||||
IntFlag is a flag with type int
|
IntFlag is a flag with type int
|
||||||
|
|
||||||
@ -1320,6 +1378,9 @@ func (f *IntFlag) IsVisible() bool
|
|||||||
func (f *IntFlag) Names() []string
|
func (f *IntFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *IntFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *IntFlag) String() string
|
func (f *IntFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -1370,6 +1431,8 @@ type IntSliceFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []int) error
|
||||||
}
|
}
|
||||||
IntSliceFlag is a flag with type *IntSlice
|
IntSliceFlag is a flag with type *IntSlice
|
||||||
|
|
||||||
@ -1409,6 +1472,9 @@ func (f *IntSliceFlag) IsVisible() bool
|
|||||||
func (f *IntSliceFlag) Names() []string
|
func (f *IntSliceFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *IntSliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *IntSliceFlag) SetDestination(slice []int)
|
func (f *IntSliceFlag) SetDestination(slice []int)
|
||||||
|
|
||||||
func (f *IntSliceFlag) SetValue(slice []int)
|
func (f *IntSliceFlag) SetValue(slice []int)
|
||||||
@ -1419,6 +1485,10 @@ func (f *IntSliceFlag) String() string
|
|||||||
func (f *IntSliceFlag) TakesValue() bool
|
func (f *IntSliceFlag) TakesValue() bool
|
||||||
TakesValue returns true if the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
|
type InvalidFlagAccessFunc func(*Context, string)
|
||||||
|
InvalidFlagAccessFunc is executed when an invalid flag is accessed from the
|
||||||
|
context.
|
||||||
|
|
||||||
type MultiError interface {
|
type MultiError interface {
|
||||||
error
|
error
|
||||||
Errors() []error
|
Errors() []error
|
||||||
@ -1468,6 +1538,8 @@ type PathFlag struct {
|
|||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, Path) error
|
||||||
}
|
}
|
||||||
PathFlag is a flag with type Path
|
PathFlag is a flag with type Path
|
||||||
|
|
||||||
@ -1505,6 +1577,9 @@ func (f *PathFlag) IsVisible() bool
|
|||||||
func (f *PathFlag) Names() []string
|
func (f *PathFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *PathFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *PathFlag) String() string
|
func (f *PathFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -1548,6 +1623,8 @@ func (x *SliceFlag[T, S, E]) IsVisible() bool
|
|||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) Names() []string
|
func (x *SliceFlag[T, S, E]) Names() []string
|
||||||
|
|
||||||
|
func (x *SliceFlag[T, S, E]) RunAction(c *Context) error
|
||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) SetDestination(slice S)
|
func (x *SliceFlag[T, S, E]) SetDestination(slice S)
|
||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) SetValue(slice S)
|
func (x *SliceFlag[T, S, E]) SetValue(slice S)
|
||||||
@ -1592,6 +1669,8 @@ type StringFlag struct {
|
|||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, string) error
|
||||||
}
|
}
|
||||||
StringFlag is a flag with type string
|
StringFlag is a flag with type string
|
||||||
|
|
||||||
@ -1629,6 +1708,9 @@ func (f *StringFlag) IsVisible() bool
|
|||||||
func (f *StringFlag) Names() []string
|
func (f *StringFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *StringFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *StringFlag) String() string
|
func (f *StringFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -1677,6 +1759,8 @@ type StringSliceFlag struct {
|
|||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, []string) error
|
||||||
}
|
}
|
||||||
StringSliceFlag is a flag with type *StringSlice
|
StringSliceFlag is a flag with type *StringSlice
|
||||||
|
|
||||||
@ -1716,6 +1800,9 @@ func (f *StringSliceFlag) IsVisible() bool
|
|||||||
func (f *StringSliceFlag) Names() []string
|
func (f *StringSliceFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *StringSliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *StringSliceFlag) SetDestination(slice []string)
|
func (f *StringSliceFlag) SetDestination(slice []string)
|
||||||
|
|
||||||
func (f *StringSliceFlag) SetValue(slice []string)
|
func (f *StringSliceFlag) SetValue(slice []string)
|
||||||
@ -1780,6 +1867,8 @@ type TimestampFlag struct {
|
|||||||
Layout string
|
Layout string
|
||||||
|
|
||||||
Timezone *time.Location
|
Timezone *time.Location
|
||||||
|
|
||||||
|
Action func(*Context, *time.Time) error
|
||||||
}
|
}
|
||||||
TimestampFlag is a flag with type *Timestamp
|
TimestampFlag is a flag with type *Timestamp
|
||||||
|
|
||||||
@ -1817,6 +1906,9 @@ func (f *TimestampFlag) IsVisible() bool
|
|||||||
func (f *TimestampFlag) Names() []string
|
func (f *TimestampFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *TimestampFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *TimestampFlag) String() string
|
func (f *TimestampFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
@ -1840,6 +1932,10 @@ type Uint64Flag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, uint64) error
|
||||||
}
|
}
|
||||||
Uint64Flag is a flag with type uint64
|
Uint64Flag is a flag with type uint64
|
||||||
|
|
||||||
@ -1877,12 +1973,103 @@ func (f *Uint64Flag) IsVisible() bool
|
|||||||
func (f *Uint64Flag) Names() []string
|
func (f *Uint64Flag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Uint64Flag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *Uint64Flag) String() string
|
func (f *Uint64Flag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *Uint64Flag) TakesValue() bool
|
func (f *Uint64Flag) TakesValue() bool
|
||||||
TakesValue returns true if the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
|
type Uint64Slice struct {
|
||||||
|
// Has unexported fields.
|
||||||
|
}
|
||||||
|
Uint64Slice wraps []int64 to satisfy flag.Value
|
||||||
|
|
||||||
|
func NewUint64Slice(defaults ...uint64) *Uint64Slice
|
||||||
|
NewUint64Slice makes an *Uint64Slice with default values
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Get() interface{}
|
||||||
|
Get returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Serialize() string
|
||||||
|
Serialize allows Uint64Slice to fulfill Serializer
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Set(value string) error
|
||||||
|
Set parses the value into an integer and appends it to the list of values
|
||||||
|
|
||||||
|
func (i *Uint64Slice) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Value() []uint64
|
||||||
|
Value returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
type Uint64SliceFlag struct {
|
||||||
|
Name string
|
||||||
|
|
||||||
|
Category string
|
||||||
|
DefaultText string
|
||||||
|
FilePath string
|
||||||
|
Usage string
|
||||||
|
|
||||||
|
Required bool
|
||||||
|
Hidden bool
|
||||||
|
HasBeenSet bool
|
||||||
|
|
||||||
|
Value *Uint64Slice
|
||||||
|
Destination *Uint64Slice
|
||||||
|
|
||||||
|
Aliases []string
|
||||||
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []uint64) error
|
||||||
|
}
|
||||||
|
Uint64SliceFlag is a flag with type *Uint64Slice
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) Apply(set *flag.FlagSet) error
|
||||||
|
Apply populates the flag given the flag set and environment
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) Get(ctx *Context) []uint64
|
||||||
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetCategory() string
|
||||||
|
GetCategory returns the category for the flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetDefaultText() string
|
||||||
|
GetDefaultText returns the default text for this flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetEnvVars() []string
|
||||||
|
GetEnvVars returns the env vars for this flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetUsage() string
|
||||||
|
GetUsage returns the usage string for the flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetValue() string
|
||||||
|
GetValue returns the flags value as string representation and an empty
|
||||||
|
string if the flag takes no value at all.
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) IsRequired() bool
|
||||||
|
IsRequired returns whether or not the flag is required
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) IsSet() bool
|
||||||
|
IsSet returns whether or not the flag has been set through env or file
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) IsVisible() bool
|
||||||
|
IsVisible returns true if the flag is not hidden, otherwise false
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) Names() []string
|
||||||
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) TakesValue() bool
|
||||||
|
TakesValue returns true of the flag takes a value, otherwise false
|
||||||
|
|
||||||
type UintFlag struct {
|
type UintFlag struct {
|
||||||
Name string
|
Name string
|
||||||
|
|
||||||
@ -1900,6 +2087,10 @@ type UintFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, uint) error
|
||||||
}
|
}
|
||||||
UintFlag is a flag with type uint
|
UintFlag is a flag with type uint
|
||||||
|
|
||||||
@ -1937,12 +2128,107 @@ func (f *UintFlag) IsVisible() bool
|
|||||||
func (f *UintFlag) Names() []string
|
func (f *UintFlag) Names() []string
|
||||||
Names returns the names of the flag
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *UintFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
func (f *UintFlag) String() string
|
func (f *UintFlag) String() string
|
||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *UintFlag) TakesValue() bool
|
func (f *UintFlag) TakesValue() bool
|
||||||
TakesValue returns true if the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
|
type UintSlice struct {
|
||||||
|
// Has unexported fields.
|
||||||
|
}
|
||||||
|
UintSlice wraps []int to satisfy flag.Value
|
||||||
|
|
||||||
|
func NewUintSlice(defaults ...uint) *UintSlice
|
||||||
|
NewUintSlice makes an *UintSlice with default values
|
||||||
|
|
||||||
|
func (i *UintSlice) Get() interface{}
|
||||||
|
Get returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
func (i *UintSlice) Serialize() string
|
||||||
|
Serialize allows UintSlice to fulfill Serializer
|
||||||
|
|
||||||
|
func (i *UintSlice) Set(value string) error
|
||||||
|
Set parses the value into an integer and appends it to the list of values
|
||||||
|
|
||||||
|
func (i *UintSlice) SetUint(value uint)
|
||||||
|
TODO: Consistently have specific Set function for Int64 and Float64 ? SetInt
|
||||||
|
directly adds an integer to the list of values
|
||||||
|
|
||||||
|
func (i *UintSlice) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (i *UintSlice) Value() []uint
|
||||||
|
Value returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
type UintSliceFlag struct {
|
||||||
|
Name string
|
||||||
|
|
||||||
|
Category string
|
||||||
|
DefaultText string
|
||||||
|
FilePath string
|
||||||
|
Usage string
|
||||||
|
|
||||||
|
Required bool
|
||||||
|
Hidden bool
|
||||||
|
HasBeenSet bool
|
||||||
|
|
||||||
|
Value *UintSlice
|
||||||
|
Destination *UintSlice
|
||||||
|
|
||||||
|
Aliases []string
|
||||||
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []uint) error
|
||||||
|
}
|
||||||
|
UintSliceFlag is a flag with type *UintSlice
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) Apply(set *flag.FlagSet) error
|
||||||
|
Apply populates the flag given the flag set and environment
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) Get(ctx *Context) []uint
|
||||||
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetCategory() string
|
||||||
|
GetCategory returns the category for the flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetDefaultText() string
|
||||||
|
GetDefaultText returns the default text for this flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetEnvVars() []string
|
||||||
|
GetEnvVars returns the env vars for this flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetUsage() string
|
||||||
|
GetUsage returns the usage string for the flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetValue() string
|
||||||
|
GetValue returns the flags value as string representation and an empty
|
||||||
|
string if the flag takes no value at all.
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) IsRequired() bool
|
||||||
|
IsRequired returns whether or not the flag is required
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) IsSet() bool
|
||||||
|
IsSet returns whether or not the flag has been set through env or file
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) IsVisible() bool
|
||||||
|
IsVisible returns true if the flag is not hidden, otherwise false
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) Names() []string
|
||||||
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) TakesValue() bool
|
||||||
|
TakesValue returns true of the flag takes a value, otherwise false
|
||||||
|
|
||||||
type VisibleFlagCategory interface {
|
type VisibleFlagCategory interface {
|
||||||
// Name returns the category name string
|
// Name returns the category name string
|
||||||
Name() string
|
Name() string
|
||||||
|
23
sliceflag.go
23
sliceflag.go
@ -110,17 +110,18 @@ func (x *SliceFlag[T, S, E]) GetDestination() S {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) String() string { return x.Target.String() }
|
func (x *SliceFlag[T, S, E]) String() string { return x.Target.String() }
|
||||||
func (x *SliceFlag[T, S, E]) Names() []string { return x.Target.Names() }
|
func (x *SliceFlag[T, S, E]) Names() []string { return x.Target.Names() }
|
||||||
func (x *SliceFlag[T, S, E]) IsSet() bool { return x.Target.IsSet() }
|
func (x *SliceFlag[T, S, E]) IsSet() bool { return x.Target.IsSet() }
|
||||||
func (x *SliceFlag[T, S, E]) IsRequired() bool { return x.Target.IsRequired() }
|
func (x *SliceFlag[T, S, E]) IsRequired() bool { return x.Target.IsRequired() }
|
||||||
func (x *SliceFlag[T, S, E]) TakesValue() bool { return x.Target.TakesValue() }
|
func (x *SliceFlag[T, S, E]) TakesValue() bool { return x.Target.TakesValue() }
|
||||||
func (x *SliceFlag[T, S, E]) GetUsage() string { return x.Target.GetUsage() }
|
func (x *SliceFlag[T, S, E]) GetUsage() string { return x.Target.GetUsage() }
|
||||||
func (x *SliceFlag[T, S, E]) GetValue() string { return x.Target.GetValue() }
|
func (x *SliceFlag[T, S, E]) GetValue() string { return x.Target.GetValue() }
|
||||||
func (x *SliceFlag[T, S, E]) GetDefaultText() string { return x.Target.GetDefaultText() }
|
func (x *SliceFlag[T, S, E]) GetDefaultText() string { return x.Target.GetDefaultText() }
|
||||||
func (x *SliceFlag[T, S, E]) GetEnvVars() []string { return x.Target.GetEnvVars() }
|
func (x *SliceFlag[T, S, E]) GetEnvVars() []string { return x.Target.GetEnvVars() }
|
||||||
func (x *SliceFlag[T, S, E]) IsVisible() bool { return x.Target.IsVisible() }
|
func (x *SliceFlag[T, S, E]) IsVisible() bool { return x.Target.IsVisible() }
|
||||||
func (x *SliceFlag[T, S, E]) GetCategory() string { return x.Target.GetCategory() }
|
func (x *SliceFlag[T, S, E]) GetCategory() string { return x.Target.GetCategory() }
|
||||||
|
func (x *SliceFlag[T, S, E]) RunAction(c *Context) error { return x.Target.RunAction(c) }
|
||||||
|
|
||||||
func (x *flagValueHook) Set(value string) error {
|
func (x *flagValueHook) Set(value string) error {
|
||||||
if err := x.value.Set(value); err != nil {
|
if err := x.value.Set(value); err != nil {
|
||||||
|
476
testdata/godoc-v2.x.txt
vendored
476
testdata/godoc-v2.x.txt
vendored
@ -1,28 +1,28 @@
|
|||||||
package cli // import "github.com/urfave/cli/v2"
|
package cli // import "github.com/urfave/cli/v3"
|
||||||
|
|
||||||
Package cli provides a minimal framework for creating and organizing command
|
Package cli provides a minimal framework for creating and organizing command
|
||||||
line Go applications. cli is designed to be easy to understand and write,
|
line Go applications. cli is designed to be easy to understand and write,
|
||||||
the most simple cli application can be written as follows:
|
the most simple cli application can be written as follows:
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
(&cli.App{}).Run(os.Args)
|
(&cli.App{}).Run(os.Args)
|
||||||
}
|
}
|
||||||
|
|
||||||
Of course this application does not do much, so let's make this an actual
|
Of course this application does not do much, so let's make this an actual
|
||||||
application:
|
application:
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
app := &cli.App{
|
app := &cli.App{
|
||||||
Name: "greet",
|
Name: "greet",
|
||||||
Usage: "say a greeting",
|
Usage: "say a greeting",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
fmt.Println("Greetings")
|
fmt.Println("Greetings")
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
app.Run(os.Args)
|
app.Run(os.Args)
|
||||||
}
|
}
|
||||||
|
|
||||||
VARIABLES
|
VARIABLES
|
||||||
|
|
||||||
@ -49,8 +49,8 @@ AUTHOR{{with $length := len .Authors}}{{if ne 1 $length}}S{{end}}{{end}}:
|
|||||||
|
|
||||||
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
||||||
{{.Name}}:{{range .VisibleCommands}}
|
{{.Name}}:{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{range .VisibleCommands}}
|
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{ $cv := offsetCommands .VisibleCommands 5}}{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{end}}{{if .VisibleFlagCategories}}
|
{{$s := join .Names ", "}}{{$s}}{{ $sp := subtract $cv (offset $s 3) }}{{ indent $sp ""}}{{wrap .Usage $cv}}{{end}}{{end}}{{end}}{{end}}{{if .VisibleFlagCategories}}
|
||||||
|
|
||||||
GLOBAL OPTIONS:{{range .VisibleFlagCategories}}
|
GLOBAL OPTIONS:{{range .VisibleFlagCategories}}
|
||||||
{{if .Name}}{{.Name}}
|
{{if .Name}}{{.Name}}
|
||||||
@ -64,8 +64,8 @@ GLOBAL OPTIONS:
|
|||||||
COPYRIGHT:
|
COPYRIGHT:
|
||||||
{{wrap .Copyright 3}}{{end}}
|
{{wrap .Copyright 3}}{{end}}
|
||||||
`
|
`
|
||||||
AppHelpTemplate is the text template for the Default help topic. cli.go uses
|
AppHelpTemplate is the text template for the Default help topic. cli.go
|
||||||
text/template to render templates. You can render custom help text by
|
uses text/template to render templates. You can render custom help text by
|
||||||
setting this variable.
|
setting this variable.
|
||||||
|
|
||||||
var CommandHelpTemplate = `NAME:
|
var CommandHelpTemplate = `NAME:
|
||||||
@ -82,12 +82,10 @@ DESCRIPTION:
|
|||||||
|
|
||||||
OPTIONS:{{range .VisibleFlagCategories}}
|
OPTIONS:{{range .VisibleFlagCategories}}
|
||||||
{{if .Name}}{{.Name}}
|
{{if .Name}}{{.Name}}
|
||||||
{{end}}{{range .Flags}}{{.}}
|
{{end}}{{range .Flags}}{{.}}{{end}}{{end}}{{else}}{{if .VisibleFlags}}
|
||||||
{{end}}{{end}}{{else}}{{if .VisibleFlags}}
|
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
{{range .VisibleFlags}}{{.}}
|
{{range .VisibleFlags}}{{.}}{{end}}{{end}}{{end}}
|
||||||
{{end}}{{end}}{{end}}
|
|
||||||
`
|
`
|
||||||
CommandHelpTemplate is the text template for the command help topic. cli.go
|
CommandHelpTemplate is the text template for the command help topic. cli.go
|
||||||
uses text/template to render templates. You can render custom help text by
|
uses text/template to render templates. You can render custom help text by
|
||||||
@ -157,12 +155,11 @@ DESCRIPTION:
|
|||||||
|
|
||||||
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
COMMANDS:{{range .VisibleCategories}}{{if .Name}}
|
||||||
{{.Name}}:{{range .VisibleCommands}}
|
{{.Name}}:{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{range .VisibleCommands}}
|
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{else}}{{ $cv := offsetCommands .VisibleCommands 5}}{{range .VisibleCommands}}
|
||||||
{{join .Names ", "}}{{"\t"}}{{.Usage}}{{end}}{{end}}{{end}}{{if .VisibleFlags}}
|
{{$s := join .Names ", "}}{{$s}}{{ $sp := subtract $cv (offset $s 3) }}{{ indent $sp ""}}{{wrap .Usage $cv}}{{end}}{{end}}{{end}}{{if .VisibleFlags}}
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
{{range .VisibleFlags}}{{.}}
|
{{range .VisibleFlags}}{{.}}{{end}}{{end}}
|
||||||
{{end}}{{end}}
|
|
||||||
`
|
`
|
||||||
SubcommandHelpTemplate is the text template for the subcommand help topic.
|
SubcommandHelpTemplate is the text template for the subcommand help topic.
|
||||||
cli.go uses text/template to render templates. You can render custom help
|
cli.go uses text/template to render templates. You can render custom help
|
||||||
@ -201,9 +198,9 @@ func DefaultAppComplete(cCtx *Context)
|
|||||||
func DefaultCompleteWithFlags(cmd *Command) func(cCtx *Context)
|
func DefaultCompleteWithFlags(cmd *Command) func(cCtx *Context)
|
||||||
func FlagNames(name string, aliases []string) []string
|
func FlagNames(name string, aliases []string) []string
|
||||||
func HandleAction(action interface{}, cCtx *Context) (err error)
|
func HandleAction(action interface{}, cCtx *Context) (err error)
|
||||||
HandleAction attempts to figure out which Action signature was used. If it's
|
HandleAction attempts to figure out which Action signature was used.
|
||||||
an ActionFunc or a func with the legacy signature for Action, the func is
|
If it's an ActionFunc or a func with the legacy signature for Action,
|
||||||
run!
|
the func is run!
|
||||||
|
|
||||||
func HandleExitCoder(err error)
|
func HandleExitCoder(err error)
|
||||||
HandleExitCoder handles errors implementing ExitCoder by printing their
|
HandleExitCoder handles errors implementing ExitCoder by printing their
|
||||||
@ -250,13 +247,6 @@ TYPES
|
|||||||
type ActionFunc func(*Context) error
|
type ActionFunc func(*Context) error
|
||||||
ActionFunc is the action to execute when no subcommands are specified
|
ActionFunc is the action to execute when no subcommands are specified
|
||||||
|
|
||||||
type ActionableFlag interface {
|
|
||||||
Flag
|
|
||||||
RunAction(*Context) error
|
|
||||||
}
|
|
||||||
ActionableFlag is an interface that wraps Flag interface and RunAction
|
|
||||||
operation.
|
|
||||||
|
|
||||||
type AfterFunc func(*Context) error
|
type AfterFunc func(*Context) error
|
||||||
AfterFunc is an action to execute after any subcommands are run, but after
|
AfterFunc is an action to execute after any subcommands are run, but after
|
||||||
the subcommand has finished it is run even if Action() panics
|
the subcommand has finished it is run even if Action() panics
|
||||||
@ -307,6 +297,8 @@ type App struct {
|
|||||||
CommandNotFound CommandNotFoundFunc
|
CommandNotFound CommandNotFoundFunc
|
||||||
// Execute this function if a usage error occurs
|
// Execute this function if a usage error occurs
|
||||||
OnUsageError OnUsageErrorFunc
|
OnUsageError OnUsageErrorFunc
|
||||||
|
// Execute this function when an invalid flag is accessed from the context
|
||||||
|
InvalidFlagAccessHandler InvalidFlagAccessFunc
|
||||||
// Compilation date
|
// Compilation date
|
||||||
Compiled time.Time
|
Compiled time.Time
|
||||||
// List of all authors who contributed
|
// List of all authors who contributed
|
||||||
@ -367,14 +359,14 @@ func (a *App) RunAsSubcommand(ctx *Context) (err error)
|
|||||||
to generate command-specific flags
|
to generate command-specific flags
|
||||||
|
|
||||||
func (a *App) RunContext(ctx context.Context, arguments []string) (err error)
|
func (a *App) RunContext(ctx context.Context, arguments []string) (err error)
|
||||||
RunContext is like Run except it takes a Context that will be passed to its
|
RunContext is like Run except it takes a Context that will be passed to
|
||||||
commands and sub-commands. Through this, you can propagate timeouts and
|
its commands and sub-commands. Through this, you can propagate timeouts and
|
||||||
cancellation requests
|
cancellation requests
|
||||||
|
|
||||||
func (a *App) Setup()
|
func (a *App) Setup()
|
||||||
Setup runs initialization code to ensure all data structures are ready for
|
Setup runs initialization code to ensure all data structures are ready
|
||||||
`Run` or inspection prior to `Run`. It is internally called by `Run`, but
|
for `Run` or inspection prior to `Run`. It is internally called by `Run`,
|
||||||
will return early if setup has already happened.
|
but will return early if setup has already happened.
|
||||||
|
|
||||||
func (a *App) ToFishCompletion() (string, error)
|
func (a *App) ToFishCompletion() (string, error)
|
||||||
ToFishCompletion creates a fish completion string for the `*App` The
|
ToFishCompletion creates a fish completion string for the `*App` The
|
||||||
@ -457,6 +449,10 @@ type BoolFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Count *int
|
||||||
|
|
||||||
|
Action func(*Context, bool) error
|
||||||
}
|
}
|
||||||
BoolFlag is a flag with type bool
|
BoolFlag is a flag with type bool
|
||||||
|
|
||||||
@ -467,7 +463,7 @@ func (f *BoolFlag) Get(ctx *Context) bool
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *BoolFlag) GetCategory() string
|
func (f *BoolFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *BoolFlag) GetDefaultText() string
|
func (f *BoolFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -501,15 +497,7 @@ func (f *BoolFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *BoolFlag) TakesValue() bool
|
func (f *BoolFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type CategorizableFlag interface {
|
|
||||||
VisibleFlag
|
|
||||||
|
|
||||||
GetCategory() string
|
|
||||||
}
|
|
||||||
CategorizableFlag is an interface that allows us to potentially use a flag
|
|
||||||
in a categorized representation.
|
|
||||||
|
|
||||||
type Command struct {
|
type Command struct {
|
||||||
// The name of the command
|
// The name of the command
|
||||||
@ -639,6 +627,9 @@ func (cCtx *Context) Args() Args
|
|||||||
func (cCtx *Context) Bool(name string) bool
|
func (cCtx *Context) Bool(name string) bool
|
||||||
Bool looks up the value of a local BoolFlag, returns false if not found
|
Bool looks up the value of a local BoolFlag, returns false if not found
|
||||||
|
|
||||||
|
func (cCtx *Context) Count(name string) int
|
||||||
|
Count returns the num of occurences of this flag
|
||||||
|
|
||||||
func (cCtx *Context) Duration(name string) time.Duration
|
func (cCtx *Context) Duration(name string) time.Duration
|
||||||
Duration looks up the value of a local DurationFlag, returns 0 if not found
|
Duration looks up the value of a local DurationFlag, returns 0 if not found
|
||||||
|
|
||||||
@ -708,30 +699,22 @@ func (cCtx *Context) Uint(name string) uint
|
|||||||
func (cCtx *Context) Uint64(name string) uint64
|
func (cCtx *Context) Uint64(name string) uint64
|
||||||
Uint64 looks up the value of a local Uint64Flag, returns 0 if not found
|
Uint64 looks up the value of a local Uint64Flag, returns 0 if not found
|
||||||
|
|
||||||
|
func (cCtx *Context) Uint64Slice(name string) []uint64
|
||||||
|
Uint64Slice looks up the value of a local Uint64SliceFlag, returns nil if
|
||||||
|
not found
|
||||||
|
|
||||||
|
func (cCtx *Context) UintSlice(name string) []uint
|
||||||
|
UintSlice looks up the value of a local UintSliceFlag, returns nil if not
|
||||||
|
found
|
||||||
|
|
||||||
func (cCtx *Context) Value(name string) interface{}
|
func (cCtx *Context) Value(name string) interface{}
|
||||||
Value returns the value of the flag corresponding to `name`
|
Value returns the value of the flag corresponding to `name`
|
||||||
|
|
||||||
type DocGenerationFlag interface {
|
type Countable interface {
|
||||||
Flag
|
Count() int
|
||||||
|
|
||||||
// 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
|
|
||||||
|
|
||||||
// GetDefaultText returns the default text for this flag
|
|
||||||
GetDefaultText() string
|
|
||||||
|
|
||||||
// GetEnvVars returns the env vars for this flag
|
|
||||||
GetEnvVars() []string
|
|
||||||
}
|
}
|
||||||
DocGenerationFlag is an interface that allows documentation generation for
|
Countable is an interface to enable detection of flag values which support
|
||||||
the flag
|
repetitive flags
|
||||||
|
|
||||||
type DurationFlag struct {
|
type DurationFlag struct {
|
||||||
Name string
|
Name string
|
||||||
@ -750,6 +733,8 @@ type DurationFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, time.Duration) error
|
||||||
}
|
}
|
||||||
DurationFlag is a flag with type time.Duration
|
DurationFlag is a flag with type time.Duration
|
||||||
|
|
||||||
@ -760,7 +745,7 @@ func (f *DurationFlag) Get(ctx *Context) time.Duration
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *DurationFlag) GetCategory() string
|
func (f *DurationFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *DurationFlag) GetDefaultText() string
|
func (f *DurationFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -794,7 +779,7 @@ func (f *DurationFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *DurationFlag) TakesValue() bool
|
func (f *DurationFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type ErrorFormatter interface {
|
type ErrorFormatter interface {
|
||||||
Format(s fmt.State, verb rune)
|
Format(s fmt.State, verb rune)
|
||||||
@ -812,9 +797,9 @@ func Exit(message interface{}, exitCode int) ExitCoder
|
|||||||
Exit wraps a message and exit code into an error, which by default is
|
Exit wraps a message and exit code into an error, which by default is
|
||||||
handled with a call to os.Exit during default error handling.
|
handled with a call to os.Exit during default error handling.
|
||||||
|
|
||||||
This is the simplest way to trigger a non-zero exit code for an App without
|
This is the simplest way to trigger a non-zero exit code for an App
|
||||||
having to call os.Exit manually. During testing, this behavior can be
|
without having to call os.Exit manually. During testing, this behavior
|
||||||
avoided by overiding the ExitErrHandler function on an App or the
|
can be avoided by overiding the ExitErrHandler function on an App or the
|
||||||
package-global OsExiter function.
|
package-global OsExiter function.
|
||||||
|
|
||||||
func NewExitError(message interface{}, exitCode int) ExitCoder
|
func NewExitError(message interface{}, exitCode int) ExitCoder
|
||||||
@ -829,10 +814,42 @@ type ExitErrHandlerFunc func(cCtx *Context, err error)
|
|||||||
|
|
||||||
type Flag interface {
|
type Flag interface {
|
||||||
fmt.Stringer
|
fmt.Stringer
|
||||||
|
|
||||||
// Apply Flag settings to the given flag set
|
// Apply Flag settings to the given flag set
|
||||||
Apply(*flag.FlagSet) error
|
Apply(*flag.FlagSet) error
|
||||||
|
|
||||||
|
// All possible names for this flag
|
||||||
Names() []string
|
Names() []string
|
||||||
|
|
||||||
|
// Whether the flag has been set or not
|
||||||
IsSet() bool
|
IsSet() bool
|
||||||
|
|
||||||
|
// whether the flag is a required flag or not
|
||||||
|
IsRequired() bool
|
||||||
|
|
||||||
|
// IsVisible returns true if the flag is not hidden, otherwise false
|
||||||
|
IsVisible() bool
|
||||||
|
|
||||||
|
// Returns the category of the flag
|
||||||
|
GetCategory() string
|
||||||
|
|
||||||
|
// GetUsage returns the usage string for the flag
|
||||||
|
GetUsage() string
|
||||||
|
|
||||||
|
// GetEnvVars returns the env vars for this flag
|
||||||
|
GetEnvVars() []string
|
||||||
|
|
||||||
|
// TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
TakesValue() bool
|
||||||
|
|
||||||
|
// GetDefaultText returns the default text for this flag
|
||||||
|
GetDefaultText() string
|
||||||
|
|
||||||
|
// GetValue returns the flags value as string representation and an empty
|
||||||
|
// string if the flag takes no value at all.
|
||||||
|
GetValue() string
|
||||||
|
|
||||||
|
RunAction(*Context) error
|
||||||
}
|
}
|
||||||
Flag is a common interface related to parsing flags in cli. For more
|
Flag is a common interface related to parsing flags in cli. For more
|
||||||
advanced flag parsing techniques, it is recommended that this interface be
|
advanced flag parsing techniques, it is recommended that this interface be
|
||||||
@ -926,6 +943,8 @@ type Float64Flag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, float64) error
|
||||||
}
|
}
|
||||||
Float64Flag is a flag with type float64
|
Float64Flag is a flag with type float64
|
||||||
|
|
||||||
@ -936,7 +955,7 @@ func (f *Float64Flag) Get(ctx *Context) float64
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *Float64Flag) GetCategory() string
|
func (f *Float64Flag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *Float64Flag) GetDefaultText() string
|
func (f *Float64Flag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -970,7 +989,7 @@ func (f *Float64Flag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *Float64Flag) TakesValue() bool
|
func (f *Float64Flag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type Float64Slice struct {
|
type Float64Slice struct {
|
||||||
// Has unexported fields.
|
// Has unexported fields.
|
||||||
@ -1012,6 +1031,8 @@ type Float64SliceFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []float64) error
|
||||||
}
|
}
|
||||||
Float64SliceFlag is a flag with type *Float64Slice
|
Float64SliceFlag is a flag with type *Float64Slice
|
||||||
|
|
||||||
@ -1022,7 +1043,7 @@ func (f *Float64SliceFlag) Get(ctx *Context) []float64
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *Float64SliceFlag) GetCategory() string
|
func (f *Float64SliceFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *Float64SliceFlag) GetDefaultText() string
|
func (f *Float64SliceFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1083,16 +1104,18 @@ type GenericFlag struct {
|
|||||||
HasBeenSet bool
|
HasBeenSet bool
|
||||||
|
|
||||||
Value Generic
|
Value Generic
|
||||||
Destination *Generic
|
Destination Generic
|
||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, interface{}) error
|
||||||
}
|
}
|
||||||
GenericFlag is a flag with type Generic
|
GenericFlag is a flag with type Generic
|
||||||
|
|
||||||
func (f GenericFlag) Apply(set *flag.FlagSet) error
|
func (f *GenericFlag) Apply(set *flag.FlagSet) error
|
||||||
Apply takes the flagset and calls Set on the generic flag with the value
|
Apply takes the flagset and calls Set on the generic flag with the value
|
||||||
provided by the user for parsing by the flag
|
provided by the user for parsing by the flag
|
||||||
|
|
||||||
@ -1100,7 +1123,7 @@ func (f *GenericFlag) Get(ctx *Context) interface{}
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *GenericFlag) GetCategory() string
|
func (f *GenericFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *GenericFlag) GetDefaultText() string
|
func (f *GenericFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1134,7 +1157,7 @@ func (f *GenericFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *GenericFlag) TakesValue() bool
|
func (f *GenericFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type Int64Flag struct {
|
type Int64Flag struct {
|
||||||
Name string
|
Name string
|
||||||
@ -1153,6 +1176,10 @@ type Int64Flag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, int64) error
|
||||||
}
|
}
|
||||||
Int64Flag is a flag with type int64
|
Int64Flag is a flag with type int64
|
||||||
|
|
||||||
@ -1163,7 +1190,7 @@ func (f *Int64Flag) Get(ctx *Context) int64
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *Int64Flag) GetCategory() string
|
func (f *Int64Flag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *Int64Flag) GetDefaultText() string
|
func (f *Int64Flag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1197,7 +1224,7 @@ func (f *Int64Flag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *Int64Flag) TakesValue() bool
|
func (f *Int64Flag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type Int64Slice struct {
|
type Int64Slice struct {
|
||||||
// Has unexported fields.
|
// Has unexported fields.
|
||||||
@ -1239,6 +1266,8 @@ type Int64SliceFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []int64) error
|
||||||
}
|
}
|
||||||
Int64SliceFlag is a flag with type *Int64Slice
|
Int64SliceFlag is a flag with type *Int64Slice
|
||||||
|
|
||||||
@ -1249,7 +1278,7 @@ func (f *Int64SliceFlag) Get(ctx *Context) []int64
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *Int64SliceFlag) GetCategory() string
|
func (f *Int64SliceFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *Int64SliceFlag) GetDefaultText() string
|
func (f *Int64SliceFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1289,7 +1318,7 @@ func (f *Int64SliceFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *Int64SliceFlag) TakesValue() bool
|
func (f *Int64SliceFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type IntFlag struct {
|
type IntFlag struct {
|
||||||
Name string
|
Name string
|
||||||
@ -1308,6 +1337,10 @@ type IntFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, int) error
|
||||||
}
|
}
|
||||||
IntFlag is a flag with type int
|
IntFlag is a flag with type int
|
||||||
|
|
||||||
@ -1318,7 +1351,7 @@ func (f *IntFlag) Get(ctx *Context) int
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *IntFlag) GetCategory() string
|
func (f *IntFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *IntFlag) GetDefaultText() string
|
func (f *IntFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1352,7 +1385,7 @@ func (f *IntFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *IntFlag) TakesValue() bool
|
func (f *IntFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type IntSlice struct {
|
type IntSlice struct {
|
||||||
// Has unexported fields.
|
// Has unexported fields.
|
||||||
@ -1398,6 +1431,8 @@ type IntSliceFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []int) error
|
||||||
}
|
}
|
||||||
IntSliceFlag is a flag with type *IntSlice
|
IntSliceFlag is a flag with type *IntSlice
|
||||||
|
|
||||||
@ -1408,7 +1443,7 @@ func (f *IntSliceFlag) Get(ctx *Context) []int
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *IntSliceFlag) GetCategory() string
|
func (f *IntSliceFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *IntSliceFlag) GetDefaultText() string
|
func (f *IntSliceFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1448,7 +1483,11 @@ func (f *IntSliceFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *IntSliceFlag) TakesValue() bool
|
func (f *IntSliceFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
|
type InvalidFlagAccessFunc func(*Context, string)
|
||||||
|
InvalidFlagAccessFunc is executed when an invalid flag is accessed from the
|
||||||
|
context.
|
||||||
|
|
||||||
type MultiError interface {
|
type MultiError interface {
|
||||||
error
|
error
|
||||||
@ -1465,8 +1504,8 @@ type MultiInt64Flag = SliceFlag[*Int64SliceFlag, []int64, int64]
|
|||||||
directly, as Value and/or Destination. See also SliceFlag.
|
directly, as Value and/or Destination. See also SliceFlag.
|
||||||
|
|
||||||
type MultiIntFlag = SliceFlag[*IntSliceFlag, []int, int]
|
type MultiIntFlag = SliceFlag[*IntSliceFlag, []int, int]
|
||||||
MultiIntFlag extends IntSliceFlag with support for using slices directly, as
|
MultiIntFlag extends IntSliceFlag with support for using slices directly,
|
||||||
Value and/or Destination. See also SliceFlag.
|
as Value and/or Destination. See also SliceFlag.
|
||||||
|
|
||||||
type MultiStringFlag = SliceFlag[*StringSliceFlag, []string, string]
|
type MultiStringFlag = SliceFlag[*StringSliceFlag, []string, string]
|
||||||
MultiStringFlag extends StringSliceFlag with support for using slices
|
MultiStringFlag extends StringSliceFlag with support for using slices
|
||||||
@ -1499,6 +1538,8 @@ type PathFlag struct {
|
|||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, Path) error
|
||||||
}
|
}
|
||||||
PathFlag is a flag with type Path
|
PathFlag is a flag with type Path
|
||||||
|
|
||||||
@ -1509,7 +1550,7 @@ func (f *PathFlag) Get(ctx *Context) string
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *PathFlag) GetCategory() string
|
func (f *PathFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *PathFlag) GetDefaultText() string
|
func (f *PathFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1543,16 +1584,7 @@ func (f *PathFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *PathFlag) TakesValue() bool
|
func (f *PathFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type RequiredFlag interface {
|
|
||||||
Flag
|
|
||||||
|
|
||||||
IsRequired() bool
|
|
||||||
}
|
|
||||||
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 Serializer interface {
|
type Serializer interface {
|
||||||
Serialize() string
|
Serialize() string
|
||||||
@ -1564,9 +1596,9 @@ type SliceFlag[T SliceFlagTarget[E], S ~[]E, E any] struct {
|
|||||||
Value S
|
Value S
|
||||||
Destination *S
|
Destination *S
|
||||||
}
|
}
|
||||||
SliceFlag extends implementations like StringSliceFlag and IntSliceFlag with
|
SliceFlag extends implementations like StringSliceFlag and IntSliceFlag
|
||||||
support for using slices directly, as Value and/or Destination. See also
|
with support for using slices directly, as Value and/or Destination.
|
||||||
SliceFlagTarget, MultiStringFlag, MultiFloat64Flag, MultiInt64Flag,
|
See also SliceFlagTarget, MultiStringFlag, MultiFloat64Flag, MultiInt64Flag,
|
||||||
MultiIntFlag.
|
MultiIntFlag.
|
||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) Apply(set *flag.FlagSet) error
|
func (x *SliceFlag[T, S, E]) Apply(set *flag.FlagSet) error
|
||||||
@ -1591,6 +1623,8 @@ func (x *SliceFlag[T, S, E]) IsVisible() bool
|
|||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) Names() []string
|
func (x *SliceFlag[T, S, E]) Names() []string
|
||||||
|
|
||||||
|
func (x *SliceFlag[T, S, E]) RunAction(c *Context) error
|
||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) SetDestination(slice S)
|
func (x *SliceFlag[T, S, E]) SetDestination(slice S)
|
||||||
|
|
||||||
func (x *SliceFlag[T, S, E]) SetValue(slice S)
|
func (x *SliceFlag[T, S, E]) SetValue(slice S)
|
||||||
@ -1601,10 +1635,6 @@ func (x *SliceFlag[T, S, E]) TakesValue() bool
|
|||||||
|
|
||||||
type SliceFlagTarget[E any] interface {
|
type SliceFlagTarget[E any] interface {
|
||||||
Flag
|
Flag
|
||||||
RequiredFlag
|
|
||||||
DocGenerationFlag
|
|
||||||
VisibleFlag
|
|
||||||
CategorizableFlag
|
|
||||||
|
|
||||||
// SetValue should propagate the given slice to the target, ideally as a new value.
|
// SetValue should propagate the given slice to the target, ideally as a new value.
|
||||||
// Note that a nil slice should nil/clear any existing value (modelled as ~[]E).
|
// Note that a nil slice should nil/clear any existing value (modelled as ~[]E).
|
||||||
@ -1639,6 +1669,8 @@ type StringFlag struct {
|
|||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, string) error
|
||||||
}
|
}
|
||||||
StringFlag is a flag with type string
|
StringFlag is a flag with type string
|
||||||
|
|
||||||
@ -1649,7 +1681,7 @@ func (f *StringFlag) Get(ctx *Context) string
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *StringFlag) GetCategory() string
|
func (f *StringFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *StringFlag) GetDefaultText() string
|
func (f *StringFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1683,7 +1715,7 @@ func (f *StringFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *StringFlag) TakesValue() bool
|
func (f *StringFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type StringSlice struct {
|
type StringSlice struct {
|
||||||
// Has unexported fields.
|
// Has unexported fields.
|
||||||
@ -1727,6 +1759,8 @@ type StringSliceFlag struct {
|
|||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
TakesFile bool
|
TakesFile bool
|
||||||
|
|
||||||
|
Action func(*Context, []string) error
|
||||||
}
|
}
|
||||||
StringSliceFlag is a flag with type *StringSlice
|
StringSliceFlag is a flag with type *StringSlice
|
||||||
|
|
||||||
@ -1737,7 +1771,7 @@ func (f *StringSliceFlag) Get(ctx *Context) []string
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *StringSliceFlag) GetCategory() string
|
func (f *StringSliceFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *StringSliceFlag) GetDefaultText() string
|
func (f *StringSliceFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1777,7 +1811,7 @@ func (f *StringSliceFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *StringSliceFlag) TakesValue() bool
|
func (f *StringSliceFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type SuggestCommandFunc func(commands []*Command, provided string) string
|
type SuggestCommandFunc func(commands []*Command, provided string) string
|
||||||
|
|
||||||
@ -1833,6 +1867,8 @@ type TimestampFlag struct {
|
|||||||
Layout string
|
Layout string
|
||||||
|
|
||||||
Timezone *time.Location
|
Timezone *time.Location
|
||||||
|
|
||||||
|
Action func(*Context, *time.Time) error
|
||||||
}
|
}
|
||||||
TimestampFlag is a flag with type *Timestamp
|
TimestampFlag is a flag with type *Timestamp
|
||||||
|
|
||||||
@ -1843,7 +1879,7 @@ func (f *TimestampFlag) Get(ctx *Context) *time.Time
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *TimestampFlag) GetCategory() string
|
func (f *TimestampFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *TimestampFlag) GetDefaultText() string
|
func (f *TimestampFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1877,7 +1913,7 @@ func (f *TimestampFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *TimestampFlag) TakesValue() bool
|
func (f *TimestampFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type Uint64Flag struct {
|
type Uint64Flag struct {
|
||||||
Name string
|
Name string
|
||||||
@ -1896,6 +1932,10 @@ type Uint64Flag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, uint64) error
|
||||||
}
|
}
|
||||||
Uint64Flag is a flag with type uint64
|
Uint64Flag is a flag with type uint64
|
||||||
|
|
||||||
@ -1906,7 +1946,7 @@ func (f *Uint64Flag) Get(ctx *Context) uint64
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *Uint64Flag) GetCategory() string
|
func (f *Uint64Flag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *Uint64Flag) GetDefaultText() string
|
func (f *Uint64Flag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -1940,6 +1980,94 @@ func (f *Uint64Flag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *Uint64Flag) TakesValue() bool
|
func (f *Uint64Flag) TakesValue() bool
|
||||||
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
|
type Uint64Slice struct {
|
||||||
|
// Has unexported fields.
|
||||||
|
}
|
||||||
|
Uint64Slice wraps []int64 to satisfy flag.Value
|
||||||
|
|
||||||
|
func NewUint64Slice(defaults ...uint64) *Uint64Slice
|
||||||
|
NewUint64Slice makes an *Uint64Slice with default values
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Get() interface{}
|
||||||
|
Get returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Serialize() string
|
||||||
|
Serialize allows Uint64Slice to fulfill Serializer
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Set(value string) error
|
||||||
|
Set parses the value into an integer and appends it to the list of values
|
||||||
|
|
||||||
|
func (i *Uint64Slice) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (i *Uint64Slice) Value() []uint64
|
||||||
|
Value returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
type Uint64SliceFlag struct {
|
||||||
|
Name string
|
||||||
|
|
||||||
|
Category string
|
||||||
|
DefaultText string
|
||||||
|
FilePath string
|
||||||
|
Usage string
|
||||||
|
|
||||||
|
Required bool
|
||||||
|
Hidden bool
|
||||||
|
HasBeenSet bool
|
||||||
|
|
||||||
|
Value *Uint64Slice
|
||||||
|
Destination *Uint64Slice
|
||||||
|
|
||||||
|
Aliases []string
|
||||||
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []uint64) error
|
||||||
|
}
|
||||||
|
Uint64SliceFlag is a flag with type *Uint64Slice
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) Apply(set *flag.FlagSet) error
|
||||||
|
Apply populates the flag given the flag set and environment
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) Get(ctx *Context) []uint64
|
||||||
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetCategory() string
|
||||||
|
GetCategory returns the category for the flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetDefaultText() string
|
||||||
|
GetDefaultText returns the default text for this flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetEnvVars() []string
|
||||||
|
GetEnvVars returns the env vars for this flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetUsage() string
|
||||||
|
GetUsage returns the usage string for the flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) GetValue() string
|
||||||
|
GetValue returns the flags value as string representation and an empty
|
||||||
|
string if the flag takes no value at all.
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) IsRequired() bool
|
||||||
|
IsRequired returns whether or not the flag is required
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) IsSet() bool
|
||||||
|
IsSet returns whether or not the flag has been set through env or file
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) IsVisible() bool
|
||||||
|
IsVisible returns true if the flag is not hidden, otherwise false
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) Names() []string
|
||||||
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (f *Uint64SliceFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true of the flag takes a value, otherwise false
|
||||||
|
|
||||||
type UintFlag struct {
|
type UintFlag struct {
|
||||||
@ -1959,6 +2087,10 @@ type UintFlag struct {
|
|||||||
|
|
||||||
Aliases []string
|
Aliases []string
|
||||||
EnvVars []string
|
EnvVars []string
|
||||||
|
|
||||||
|
Base int
|
||||||
|
|
||||||
|
Action func(*Context, uint) error
|
||||||
}
|
}
|
||||||
UintFlag is a flag with type uint
|
UintFlag is a flag with type uint
|
||||||
|
|
||||||
@ -1969,7 +2101,7 @@ func (f *UintFlag) Get(ctx *Context) uint
|
|||||||
Get returns the flag’s value in the given Context.
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
func (f *UintFlag) GetCategory() string
|
func (f *UintFlag) GetCategory() string
|
||||||
GetCategory returns the category for the flag
|
GetCategory returns the category of the flag
|
||||||
|
|
||||||
func (f *UintFlag) GetDefaultText() string
|
func (f *UintFlag) GetDefaultText() string
|
||||||
GetDefaultText returns the default text for this flag
|
GetDefaultText returns the default text for this flag
|
||||||
@ -2003,25 +2135,109 @@ func (f *UintFlag) String() string
|
|||||||
String returns a readable representation of this value (for usage defaults)
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
func (f *UintFlag) TakesValue() bool
|
func (f *UintFlag) TakesValue() bool
|
||||||
TakesValue returns true of the flag takes a value, otherwise false
|
TakesValue returns true if the flag takes a value, otherwise false
|
||||||
|
|
||||||
type VisibleFlag interface {
|
type UintSlice struct {
|
||||||
Flag
|
// Has unexported fields.
|
||||||
|
|
||||||
// IsVisible returns true if the flag is not hidden, otherwise false
|
|
||||||
IsVisible() bool
|
|
||||||
}
|
}
|
||||||
VisibleFlag is an interface that allows to check if a flag is visible
|
UintSlice wraps []int to satisfy flag.Value
|
||||||
|
|
||||||
|
func NewUintSlice(defaults ...uint) *UintSlice
|
||||||
|
NewUintSlice makes an *UintSlice with default values
|
||||||
|
|
||||||
|
func (i *UintSlice) Get() interface{}
|
||||||
|
Get returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
func (i *UintSlice) Serialize() string
|
||||||
|
Serialize allows UintSlice to fulfill Serializer
|
||||||
|
|
||||||
|
func (i *UintSlice) Set(value string) error
|
||||||
|
Set parses the value into an integer and appends it to the list of values
|
||||||
|
|
||||||
|
func (i *UintSlice) SetUint(value uint)
|
||||||
|
TODO: Consistently have specific Set function for Int64 and Float64 ? SetInt
|
||||||
|
directly adds an integer to the list of values
|
||||||
|
|
||||||
|
func (i *UintSlice) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (i *UintSlice) Value() []uint
|
||||||
|
Value returns the slice of ints set by this flag
|
||||||
|
|
||||||
|
type UintSliceFlag struct {
|
||||||
|
Name string
|
||||||
|
|
||||||
|
Category string
|
||||||
|
DefaultText string
|
||||||
|
FilePath string
|
||||||
|
Usage string
|
||||||
|
|
||||||
|
Required bool
|
||||||
|
Hidden bool
|
||||||
|
HasBeenSet bool
|
||||||
|
|
||||||
|
Value *UintSlice
|
||||||
|
Destination *UintSlice
|
||||||
|
|
||||||
|
Aliases []string
|
||||||
|
EnvVars []string
|
||||||
|
|
||||||
|
Action func(*Context, []uint) error
|
||||||
|
}
|
||||||
|
UintSliceFlag is a flag with type *UintSlice
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) Apply(set *flag.FlagSet) error
|
||||||
|
Apply populates the flag given the flag set and environment
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) Get(ctx *Context) []uint
|
||||||
|
Get returns the flag’s value in the given Context.
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetCategory() string
|
||||||
|
GetCategory returns the category for the flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetDefaultText() string
|
||||||
|
GetDefaultText returns the default text for this flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetEnvVars() []string
|
||||||
|
GetEnvVars returns the env vars for this flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetUsage() string
|
||||||
|
GetUsage returns the usage string for the flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) GetValue() string
|
||||||
|
GetValue returns the flags value as string representation and an empty
|
||||||
|
string if the flag takes no value at all.
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) IsRequired() bool
|
||||||
|
IsRequired returns whether or not the flag is required
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) IsSet() bool
|
||||||
|
IsSet returns whether or not the flag has been set through env or file
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) IsVisible() bool
|
||||||
|
IsVisible returns true if the flag is not hidden, otherwise false
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) Names() []string
|
||||||
|
Names returns the names of the flag
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) RunAction(c *Context) error
|
||||||
|
RunAction executes flag action if set
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) String() string
|
||||||
|
String returns a readable representation of this value (for usage defaults)
|
||||||
|
|
||||||
|
func (f *UintSliceFlag) TakesValue() bool
|
||||||
|
TakesValue returns true of the flag takes a value, otherwise false
|
||||||
|
|
||||||
type VisibleFlagCategory interface {
|
type VisibleFlagCategory interface {
|
||||||
// Name returns the category name string
|
// Name returns the category name string
|
||||||
Name() string
|
Name() string
|
||||||
// Flags returns a slice of VisibleFlag sorted by name
|
// Flags returns a slice of VisibleFlag sorted by name
|
||||||
Flags() []VisibleFlag
|
Flags() []Flag
|
||||||
}
|
}
|
||||||
VisibleFlagCategory is a category containing flags.
|
VisibleFlagCategory is a category containing flags.
|
||||||
|
|
||||||
package altsrc // import "github.com/urfave/cli/v2/altsrc"
|
package altsrc // import "github.com/urfave/cli/v3/altsrc"
|
||||||
|
|
||||||
|
|
||||||
FUNCTIONS
|
FUNCTIONS
|
||||||
@ -2038,9 +2254,9 @@ func InitInputSource(flags []cli.Flag, createInputSource func() (InputSourceCont
|
|||||||
that are supported by the input source
|
that are supported by the input source
|
||||||
|
|
||||||
func InitInputSourceWithContext(flags []cli.Flag, createInputSource func(cCtx *cli.Context) (InputSourceContext, error)) cli.BeforeFunc
|
func InitInputSourceWithContext(flags []cli.Flag, createInputSource func(cCtx *cli.Context) (InputSourceContext, error)) cli.BeforeFunc
|
||||||
InitInputSourceWithContext is used to to setup an InputSourceContext on a
|
InitInputSourceWithContext is used to to setup an InputSourceContext on
|
||||||
cli.Command Before method. It will create a new input source based on the
|
a cli.Command Before method. It will create a new input source based on
|
||||||
func provided with potentially using existing cli.Context values to
|
the func provided with potentially using existing cli.Context values to
|
||||||
initialize itself. If there is no error it will then apply the new input
|
initialize itself. If there is no error it will then apply the new input
|
||||||
source to any flags that are supported by the input source
|
source to any flags that are supported by the input source
|
||||||
|
|
||||||
|
@ -167,18 +167,6 @@ func TestUint64SliceFlag_SatisfiesFlagInterface(t *testing.T) {
|
|||||||
_ = f.Names()
|
_ = f.Names()
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUint64SliceFlag_SatisfiesRequiredFlagInterface(t *testing.T) {
|
|
||||||
var f cli.RequiredFlag = &cli.Uint64SliceFlag{}
|
|
||||||
|
|
||||||
_ = f.IsRequired()
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestUint64SliceFlag_SatisfiesVisibleFlagInterface(t *testing.T) {
|
|
||||||
var f cli.VisibleFlag = &cli.Uint64SliceFlag{}
|
|
||||||
|
|
||||||
_ = f.IsVisible()
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestUintSliceFlag_SatisfiesFlagInterface(t *testing.T) {
|
func TestUintSliceFlag_SatisfiesFlagInterface(t *testing.T) {
|
||||||
var f cli.Flag = &cli.UintSliceFlag{}
|
var f cli.Flag = &cli.UintSliceFlag{}
|
||||||
|
|
||||||
@ -186,18 +174,6 @@ func TestUintSliceFlag_SatisfiesFlagInterface(t *testing.T) {
|
|||||||
_ = f.Names()
|
_ = f.Names()
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUintSliceFlag_SatisfiesRequiredFlagInterface(t *testing.T) {
|
|
||||||
var f cli.RequiredFlag = &cli.UintSliceFlag{}
|
|
||||||
|
|
||||||
_ = f.IsRequired()
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestUintSliceFlag_SatisfiesVisibleFlagInterface(t *testing.T) {
|
|
||||||
var f cli.VisibleFlag = &cli.UintSliceFlag{}
|
|
||||||
|
|
||||||
_ = f.IsVisible()
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestBoolFlag_SatisfiesFlagInterface(t *testing.T) {
|
func TestBoolFlag_SatisfiesFlagInterface(t *testing.T) {
|
||||||
var f cli.Flag = &cli.BoolFlag{}
|
var f cli.Flag = &cli.BoolFlag{}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user