mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-10 21:53:57 +08:00
8c112e2f63
Bumps [github.com/urfave/cli/v3](https://github.com/urfave/cli) from 3.9.1 to 3.10.0. - [Release notes](https://github.com/urfave/cli/releases) - [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/urfave/cli/compare/v3.9.1...v3.10.0) --- updated-dependencies: - dependency-name: github.com/urfave/cli/v3 dependency-version: 3.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
241 lines
6.5 KiB
Go
241 lines
6.5 KiB
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"slices"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
const defaultPlaceholder = "value"
|
|
|
|
const (
|
|
defaultSliceFlagSeparator = ","
|
|
defaultMapFlagKeyValueSeparator = "="
|
|
disableSliceFlagSeparator = false
|
|
)
|
|
|
|
var slPfx = fmt.Sprintf("sl:::%d:::", time.Now().UTC().UnixNano())
|
|
|
|
// GenerateShellCompletionFlag enables shell completion
|
|
var GenerateShellCompletionFlag Flag = &BoolFlag{
|
|
Name: "generate-shell-completion",
|
|
Hidden: true,
|
|
}
|
|
|
|
// VersionFlag prints the version for the application
|
|
var VersionFlag Flag = &BoolFlag{
|
|
Name: "version",
|
|
Aliases: []string{"v"},
|
|
Usage: "print the version",
|
|
HideDefault: true,
|
|
Local: true,
|
|
}
|
|
|
|
// HelpFlag prints the help for all commands and subcommands.
|
|
// Set to nil to disable the flag. The subcommand
|
|
// will still be added unless HideHelp or HideHelpCommand is set to true.
|
|
var HelpFlag Flag = &BoolFlag{
|
|
Name: "help",
|
|
Aliases: []string{"h"},
|
|
Usage: "show help",
|
|
HideDefault: true,
|
|
Local: true,
|
|
}
|
|
|
|
// FlagStringer converts a flag definition to a string. This is used by help
|
|
// to display a flag.
|
|
var FlagStringer FlagStringFunc = stringifyFlag
|
|
|
|
// Serializer is used to circumvent the limitations of flag.FlagSet.Set
|
|
type Serializer interface {
|
|
Serialize() string
|
|
}
|
|
|
|
// 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
|
|
|
|
// 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 {
|
|
return lexicographicLess(f[i].Names()[0], f[j].Names()[0])
|
|
}
|
|
|
|
func (f FlagsByName) Swap(i, j int) {
|
|
f[i], f[j] = f[j], f[i]
|
|
}
|
|
|
|
// ActionableFlag is an interface that wraps Flag interface and RunAction operation.
|
|
type ActionableFlag interface {
|
|
RunAction(context.Context, *Command) error
|
|
}
|
|
|
|
// 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
|
|
|
|
// Retrieve the value of the Flag
|
|
Get() any
|
|
|
|
// Lifecycle methods.
|
|
// flag callback prior to parsing
|
|
PreParse() error
|
|
|
|
// flag callback post parsing
|
|
PostParse() error
|
|
|
|
// Apply Flag settings to the given flag set
|
|
Set(string, string) error
|
|
|
|
// All possible names for this flag
|
|
Names() []string
|
|
|
|
// Whether the flag has been set or not
|
|
IsSet() 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 RequiredFlag interface {
|
|
// whether the flag is a required flag or not
|
|
IsRequired() bool
|
|
}
|
|
|
|
// DocGenerationFlag is an interface that allows documentation generation for the flag
|
|
type DocGenerationFlag interface {
|
|
// 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
|
|
|
|
// IsDefaultVisible returns whether the default value should be shown in
|
|
// help text
|
|
IsDefaultVisible() bool
|
|
// TypeName to detect if a flag is a string, bool, etc.
|
|
TypeName() string
|
|
}
|
|
|
|
// DocGenerationMultiValueFlag extends DocGenerationFlag for slice/map based flags.
|
|
type DocGenerationMultiValueFlag interface {
|
|
DocGenerationFlag
|
|
|
|
// IsMultiValueFlag returns true for flags that can be given multiple times.
|
|
IsMultiValueFlag() bool
|
|
}
|
|
|
|
// SchemaTyper is an optional interface for flags that can report their
|
|
// JSON Schema type for programmatic introspection.
|
|
type SchemaTyper interface {
|
|
// SchemaType returns the JSON Schema type name for the value this
|
|
// flag accepts: "boolean", "integer", "number", "string", "array",
|
|
// "object". Returns "" if the flag does not map cleanly.
|
|
SchemaType() string
|
|
}
|
|
|
|
// SchemaItemsTyper is an optional interface for multi-value flags that
|
|
// can report the JSON Schema type of their elements.
|
|
type SchemaItemsTyper interface {
|
|
// SchemaItemsType returns the JSON Schema type of elements for
|
|
// array-type flags. Returns "" for single-value or object flags.
|
|
SchemaItemsType() string
|
|
}
|
|
|
|
// Countable is an interface to enable detection of flag values which support
|
|
// repetitive flags
|
|
type Countable interface {
|
|
Count() int
|
|
}
|
|
|
|
// VisibleFlag is an interface that allows to check if a flag is visible
|
|
type VisibleFlag interface {
|
|
// IsVisible returns true if the flag is not hidden, otherwise false
|
|
IsVisible() bool
|
|
}
|
|
|
|
// CategorizableFlag is an interface that allows us to potentially
|
|
// use a flag in a categorized representation.
|
|
type CategorizableFlag interface {
|
|
// Returns the category of the flag
|
|
GetCategory() string
|
|
|
|
// Sets the category of the flag
|
|
SetCategory(string)
|
|
}
|
|
|
|
// LocalFlag is an interface to enable detection of flags which are local
|
|
// to current command
|
|
type LocalFlag interface {
|
|
IsLocal() bool
|
|
}
|
|
|
|
func visibleFlags(fl []Flag) []Flag {
|
|
var visible []Flag
|
|
for _, f := range fl {
|
|
if vf, ok := f.(VisibleFlag); ok && vf.IsVisible() {
|
|
visible = append(visible, f)
|
|
}
|
|
}
|
|
return visible
|
|
}
|
|
|
|
func FlagNames(name string, aliases []string) []string {
|
|
var ret []string
|
|
|
|
for _, part := range append([]string{name}, aliases...) {
|
|
// v1 -> v2 migration warning zone:
|
|
// Strip off anything after the first found comma or space, which
|
|
// *hopefully* makes it a tiny bit more obvious that unexpected behavior is
|
|
// caused by using the v1 form of stringly typed "Name".
|
|
if i := strings.IndexAny(part, ", "); i >= 0 {
|
|
ret = append(ret, part[:i])
|
|
} else {
|
|
ret = append(ret, part)
|
|
}
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
func hasFlag(flags []Flag, fl Flag) bool {
|
|
return slices.Contains(flags, fl)
|
|
}
|
|
|
|
func flagSplitMultiValues(val string, sliceSeparator string, disableSliceSeparator bool) []string {
|
|
if disableSliceSeparator {
|
|
return []string{val}
|
|
}
|
|
|
|
if len(sliceSeparator) == 0 {
|
|
sliceSeparator = defaultSliceFlagSeparator
|
|
}
|
|
return strings.Split(val, sliceSeparator)
|
|
}
|