options

package
v3.6.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 2, 2024 License: Apache-2.0 Imports: 11 Imported by: 127

Documentation

Index

Constants

View Source
const (
	// OptionBatchMode command line option to enable batch mode
	OptionBatchMode = "batch-mode"

	// OptionVerbose command line option to enable verbose logging
	OptionVerbose = "verbose"
)
View Source
const (
	// DefaultErrorExitCode is the default exit code in case of an error
	DefaultErrorExitCode = 1

	// DefaultSuggestionsMinimumDistance default distance when generating suggestions if an option/arg is wrong
	DefaultSuggestionsMinimumDistance = 2
)

Variables

View Source
var (

	// ErrExit can be used to exit with a non 0 exit code without any error message
	ErrExit = fmt.Errorf("exit")
)

Functions

func ArgumentsOptionValue added in v3.0.111

func ArgumentsOptionValue(args []string, flag string, option string) string

ArgumentsOptionValue returns the argument

func CheckErr

func CheckErr(err error)

CheckErr prints a user friendly error to STDERR and exits with a non-zero exit code.

func InvalidArg

func InvalidArg(value string, values []string) error

func InvalidArgError

func InvalidArgError(value string, err error) error

func InvalidArgf

func InvalidArgf(value string, message string, a ...interface{}) error

func InvalidOption

func InvalidOption(name string, value string, values []string) error

func InvalidOptionf

func InvalidOptionf(option string, value interface{}, message string, a ...interface{}) error

InvalidOptionf returns an error that shows the invalid option.

func MissingOption

func MissingOption(name string) error

MissingOption reports a missing command line option using the full name expression.

func SuggestionsFor

func SuggestionsFor(typedName string, values []string, suggestionsMinimumDistance int, explicitSuggestions ...string) []string

Types

type BaseOptions

type BaseOptions struct {
	BatchMode bool   `env:"JX_BATCH_MODE"`
	Verbose   bool   `env:"JX_VERBOSE"`
	LogLevel  string `env:"JX_LOG_LEVEL"`
	Ctx       context.Context
	Command   *cobra.Command
	Out       io.Writer
}

BaseOptions a few common options we tend to use in command line tools

func (*BaseOptions) AddBaseFlags

func (o *BaseOptions) AddBaseFlags(cmd *cobra.Command)

AddBaseFlags adds the base flags for all commands

func (*BaseOptions) GetContext added in v3.0.22

func (o *BaseOptions) GetContext() context.Context

GetContext lazily creates the context if its not already set

func (*BaseOptions) Validate

func (o *BaseOptions) Validate() error

Validate verifies settings

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL