Documentation ¶
Index ¶
- Constants
- Variables
- func CheckEmpty(args []string) error
- func EscapeMarkdown(raw string) string
- func FlagAlias(c Command, akaDefault string) string
- func FormatJson(writer io.Writer, value interface{}) error
- func FormatSmart(writer io.Writer, value interface{}) error
- func FormatYaml(writer io.Writer, value interface{}) error
- func IsErrSilent(err error) bool
- func IsRcPassthroughError(err error) bool
- func Main(c Command, ctx *Context, args []string) int
- func NewCommandLogWriter(name string, out, err io.Writer) loggo.Writer
- func NewRcPassthroughError(code int) error
- func NewWarningWriter(writer io.Writer) loggo.Writer
- func ParseAliasFile(aliasFilename string) map[string][]string
- func PrintMarkdown(w io.Writer, cmd InfoCommand, opts MarkdownOptions) error
- func WriteError(writer io.Writer, err error)
- func ZeroOrOneArgs(args []string) (string, error)
- type AppendStringsValue
- type Command
- type CommandBase
- type Context
- func (ctx *Context) AbsPath(path string) string
- func (ctx *Context) Errorf(format string, params ...interface{})
- func (ctx *Context) GetStderr() io.Writer
- func (ctx *Context) GetStdin() io.Reader
- func (ctx *Context) GetStdout() io.Writer
- func (ctx *Context) Getenv(key string) string
- func (ctx *Context) Infof(format string, params ...interface{})
- func (ctx *Context) InterruptNotify(c chan<- os.Signal)
- func (ctx *Context) IsSerial() bool
- func (ctx *Context) Quiet() bool
- func (ctx *Context) Setenv(key, value string) error
- func (ctx *Context) StopInterruptNotify(c chan<- os.Signal)
- func (ctx *Context) Verbosef(format string, params ...interface{})
- func (ctx *Context) Warningf(format string, params ...interface{})
- func (ctx *Context) With(c context.Context) *Context
- type DeprecationCheck
- type FileVar
- type FlagAdder
- type Formatter
- type Info
- type InfoCommand
- type Log
- type MarkdownOptions
- type MissingCallback
- type Output
- func (c *Output) AddFlags(f *gnuflag.FlagSet, defaultFormatter string, formatters map[string]Formatter)
- func (c *Output) Name() string
- func (c *Output) Write(ctx *Context, value interface{}) (err error)
- func (c *Output) WriteFormatter(ctx *Context, formatter Formatter, value interface{}) (err error)
- type RcPassthroughError
- type StringMap
- type StringsValue
- type SuperCommand
- func (c *SuperCommand) AddHelpTopic(name, short, long string, aliases ...string)
- func (c *SuperCommand) AddHelpTopicCallback(name, short string, longCallback func() string)
- func (c *SuperCommand) AllowInterspersedFlags() bool
- func (c *SuperCommand) FindClosestSubCommand(name string) (string, Command, bool)
- func (c *SuperCommand) Info() *Info
- func (c *SuperCommand) Init(args []string) error
- func (c *SuperCommand) IsSuperCommand() bool
- func (c *SuperCommand) Register(subcmd Command)
- func (c *SuperCommand) RegisterAlias(name, forName string, check DeprecationCheck)
- func (c *SuperCommand) RegisterDeprecated(subcmd Command, check DeprecationCheck)
- func (c *SuperCommand) RegisterSuperAlias(name, super, forName string, check DeprecationCheck)
- func (c *SuperCommand) Run(ctx *Context) error
- func (c *SuperCommand) SetCommonFlags(f *gnuflag.FlagSet)
- func (c *SuperCommand) SetFlags(f *gnuflag.FlagSet)
- type SuperCommandParams
- type TypeFormatter
- type UnrecognizedCommand
Constants ¶
const ( DocumentationFileName = "documentation.md" DocumentationIndexFileName = "index.md" )
Variables ¶
var DefaultFormatters = formatters{ "smart": TypeFormatter{Formatter: FormatSmart, Serialisable: false}, "yaml": TypeFormatter{Formatter: FormatYaml, Serialisable: true}, "json": TypeFormatter{Formatter: FormatJson, Serialisable: true}, }
DefaultFormatters holds the formatters that can be specified with the --format flag.
var ErrNoPath = errors.New("path not set")
var ErrSilent = errors.New("cmd: error out silently")
ErrSilent can be returned from Run to signal that Main should exit with code 1 without producing error output.
Functions ¶
func CheckEmpty ¶
CheckEmpty is a utility function that returns an error if args is not empty.
func EscapeMarkdown ¶ added in v3.0.10
EscapeMarkdown returns a copy of the input string, in which certain special Markdown characters (e.g. < > |) are escaped. These characters can otherwise cause the Markdown to display incorrectly if not escaped.
func FormatJson ¶
FormatJson writes out value as json.
func FormatSmart ¶
FormatSmart marshals value into a []byte according to the following rules:
- string: untouched
- bool: converted to `True` or `False` (to match pyjuju)
- int or float: converted to sensible strings
- []string: joined by `\n`s into a single string
- anything else: delegate to FormatYaml
func FormatYaml ¶
FormatYaml writes out value as yaml to the writer, unless value is nil.
func IsErrSilent ¶
IsErrSilent returns whether the error should be logged from cmd.Main.
func IsRcPassthroughError ¶
IsRcPassthroughError returns whether the error is an RcPassthroughError.
func Main ¶
Main runs the given Command in the supplied Context with the given arguments, which should not include the command name. It returns a code suitable for passing to os.Exit.
func NewCommandLogWriter ¶
NewCommandLogWriter creates a loggo writer for registration by the callers of a command. This way the logged output can also be displayed otherwise, e.g. on the screen.
func NewRcPassthroughError ¶
NewRcPassthroughError creates an error that will have the code used at the return code from the cmd.Main function rather than the default of 1 if there is an error.
func NewWarningWriter ¶
NewWarningWriter will write out colored severity levels if the writer is outputting to a terminal.
func ParseAliasFile ¶
ParseAliasFile will read the specified file and convert the content to a map of names to the command line arguments they relate to. The function will always return a valid map, even if it is empty.
func PrintMarkdown ¶ added in v3.1.0
func PrintMarkdown(w io.Writer, cmd InfoCommand, opts MarkdownOptions) error
PrintMarkdown prints Markdown documentation about the given command to the given io.Writer. The MarkdownOptions can be provided to customise the output.
func WriteError ¶
WriteError will output the formatted text to the writer with a colored ERROR like the logging would.
DEPRECATED: Use ctx.Errorf instead
func ZeroOrOneArgs ¶
ZeroOrOneArgs checks to see that there are zero or one args, and returns the value of the arg if provided, or the empty string if not.
Types ¶
type AppendStringsValue ¶
type AppendStringsValue []string
AppendStringsValue implements gnuflag.Value for a value that can be set multiple times, and it appends each value to the slice.
func NewAppendStringsValue ¶
func NewAppendStringsValue(target *[]string) *AppendStringsValue
NewAppendStringsValue is used to create the type passed into the gnuflag.FlagSet Var function. f.Var(cmd.NewAppendStringsValue(&someMember), "name", "help")
func (*AppendStringsValue) Set ¶
func (v *AppendStringsValue) Set(s string) error
Implements gnuflag.Value Set.
func (*AppendStringsValue) String ¶
func (v *AppendStringsValue) String() string
Implements gnuflag.Value String.
type Command ¶
type Command interface { // IsSuperCommand returns true if the command is a super command. IsSuperCommand() bool // Info returns information about the Command. Info() *Info // SetFlags adds command specific flags to the flag set. SetFlags(f *gnuflag.FlagSet) // Init initializes the Command before running. Init(args []string) error // Run will execute the Command as directed by the options and positional // arguments passed to Init. Run(ctx *Context) error // AllowInterspersedFlags returns whether the command allows flag // arguments to be interspersed with non-flag arguments. AllowInterspersedFlags() bool }
Command is implemented by types that interpret command-line arguments.
type CommandBase ¶
type CommandBase struct{}
CommandBase provides the default implementation for SetFlags, Init, and Help.
func (*CommandBase) AllowInterspersedFlags ¶
func (c *CommandBase) AllowInterspersedFlags() bool
AllowInterspersedFlags returns true by default. Some subcommands may want to override this.
func (*CommandBase) Init ¶
func (c *CommandBase) Init(args []string) error
Init in the simplest case makes sure there are no args.
func (*CommandBase) IsSuperCommand ¶
func (c *CommandBase) IsSuperCommand() bool
IsSuperCommand implements Command.IsSuperCommand
func (*CommandBase) SetFlags ¶
func (c *CommandBase) SetFlags(f *gnuflag.FlagSet)
SetFlags does nothing in the simplest case.
type Context ¶
type Context struct { context.Context Dir string Env map[string]string Stdin io.Reader Stdout io.Writer Stderr io.Writer // contains filtered or unexported fields }
Context represents the run context of a Command. Command implementations should interpret file names relative to Dir (see AbsPath below), and print output and errors to Stdout and Stderr respectively.
func DefaultContext ¶
DefaultContext returns a Context suitable for use in non-hosted situations.
func (*Context) AbsPath ¶
AbsPath returns an absolute representation of path, with relative paths interpreted as relative to ctx.Dir and with "~/" replaced with users home dir.
func (*Context) Errorf ¶ added in v3.0.3
Errorf allows for the logging of error messages from a command's context. This should be used for errors which cause a command to fail. Usually these errors are logged by returning them in Run, but that is not always sufficent. For instance, if the client has performed multiple actions
func (*Context) Getenv ¶
Getenv looks up an environment variable in the context. It mirrors os.Getenv. An empty string is returned if the key is not set.
func (*Context) Infof ¶
Infof will write the formatted string to Stderr if quiet is false, but if quiet is true the message is logged.
func (*Context) InterruptNotify ¶
InterruptNotify satisfies environs.BootstrapContext
func (*Context) IsSerial ¶
IsSerial reports whether the command is required to output to a "machine". This mode is intended to stop the proliferation of execessive writes to stdout and stderr, when the output is intended for machines.
func (*Context) Quiet ¶
Quiet reports whether the command is in "quiet" mode. When this is true, informational output should be suppressed (logger messages can be used instead).
func (*Context) StopInterruptNotify ¶
StopInterruptNotify satisfies environs.BootstrapContext
func (*Context) Verbosef ¶
Verbosef will write the formatted string to Stderr if the verbose is true, and to the logger if not.
func (*Context) Warningf ¶
Warningf allows for the logging of messages, at the warning level, from a command's context. This is useful for logging errors which do not cause a command to fail (e.g. an error message used as a deprecation warning that will be upgraded to a real error message at some point in the future.)
type DeprecationCheck ¶
type DeprecationCheck interface { // Deprecated aliases emit a warning when executed. If the command is // deprecated, the second return value recommends what to use instead. Deprecated() (bool, string) // Obsolete aliases are not actually registered. The purpose of this // is to allow code to indicate ahead of time some way to determine // that the command should stop working. Obsolete() bool }
DeprecationCheck is used to provide callbacks to determine if a command is deprecated or obsolete.
type FileVar ¶
type FileVar struct { // Path is the path to the file. Path string // StdinMarkers are the Path values that should be interpreted as // stdin. If it is empty then stdin is not supported. StdinMarkers []string }
FileVar represents a path to a file.
func (*FileVar) Open ¶
func (f *FileVar) Open(ctx *Context) (io.ReadCloser, error)
Open opens the file.
type FlagAdder ¶
type FlagAdder interface { // AddsFlags adds the value's flags to the given flag set. AddFlags(*gnuflag.FlagSet) }
FlagAdder represents a value that has associated flags.
type Info ¶
type Info struct { // Name is the Command's name. Name string // Args describes the command's expected positional arguments. Args string // Purpose is a short explanation of the Command's purpose. Purpose string // Doc is the long documentation for the Command. Doc string // Subcommands stores the name and description of each subcommand. Subcommands map[string]string // Examples is a collection of running examples. Examples string // SeeAlso is a collection of additional commands to be checked. SeeAlso []string // Aliases are other names for the Command. Aliases []string // FlagKnownAs allows different projects to customise what their flags are // known as, e.g. 'flag', 'option', 'item'. All error/log messages // will use that name when referring to an individual items/flags in this command. // For example, if this value is 'option', the default message 'value for flag' // will become 'value for option'. FlagKnownAs string // ShowSuperFlags contains the names of the 'super' command flags // that are desired to be shown in the sub-command help output. ShowSuperFlags []string }
Info holds some of the usage documentation of a Command.
func (*Info) HelpWithSuperFlags ¶
HelpWithSuperFlags renders i's content, along with documentation for any flags defined in both command and its super command flag sets. Only super command flags defined in i.ShowSuperFlags are displayed, if found.
type InfoCommand ¶ added in v3.1.0
type InfoCommand interface { // Info returns information about the Command. Info() *Info // SetFlags adds command specific flags to the flag set. SetFlags(f *gnuflag.FlagSet) }
InfoCommand is a subset of Command methods needed to print the Markdown document. In particular, all these methods are "static", hence should not do anything scary or destructive.
type Log ¶
type Log struct { // If DefaultConfig is set, it will be used for the // default logging configuration. DefaultConfig string Path string Verbose bool Quiet bool Debug bool ShowLog bool Config string // NewWriter creates a new logging writer for a specified target. NewWriter func(target io.Writer) loggo.Writer }
Log supplies the necessary functionality for Commands that wish to set up logging.
func (*Log) GetLogWriter ¶
GetLogWriter returns a logging writer for the specified target.
type MarkdownOptions ¶ added in v3.1.0
type MarkdownOptions struct { // Title defines the title to print at the top of the document. If this // field is empty, no title will be printed. Title string // UsagePrefix will be printed before the command usage (for example, the // name of the supercommand). UsagePrefix string // LinkForCommand maps each "peer command" name (e.g. see also commands) to // the link target for that command (e.g. a section of the Markdown doc, or // a webpage). LinkForCommand func(string) string // LinkForSubcommand maps each sub-command name to the link target for that //command (e.g. a section of the Markdown doc, or a webpage). LinkForSubcommand func(string) string }
MarkdownOptions configures the output of the PrintMarkdown function.
type MissingCallback ¶
MissingCallback defines a function that will be used by the SuperCommand if the requested subcommand isn't found.
type Output ¶
type Output struct {
// contains filtered or unexported fields
}
Output is responsible for interpreting output-related command line flags and writing a value to a file or to stdout as directed.
func (*Output) AddFlags ¶
func (c *Output) AddFlags(f *gnuflag.FlagSet, defaultFormatter string, formatters map[string]Formatter)
AddFlags injects the --format and --output command line flags into f.
type RcPassthroughError ¶
type RcPassthroughError struct {
Code int
}
RcPassthroughError indicates that a Juju plugin command exited with a non-zero exit code. This error is used to exit with the return code.
func (*RcPassthroughError) Error ¶
func (e *RcPassthroughError) Error() string
Error implements error.
type StringMap ¶
StringMap is a type that deserializes a CLI string using gnuflag's Value semantics. It expects a key=value pair, and supports multiple copies of the flag adding more pairs, though the keys must be unique, and both keys and values must be non-empty.
type StringsValue ¶
type StringsValue []string
StringsValue implements gnuflag.Value for a comma separated list of strings. This allows flags to be created where the target is []string, and the caller is after comma separated values.
func NewStringsValue ¶
func NewStringsValue(defaultValue []string, target *[]string) *StringsValue
NewStringsValue is used to create the type passed into the gnuflag.FlagSet Var function. f.Var(cmd.NewStringsValue(defaultValue, &someMember), "name", "help")
func (*StringsValue) String ¶
func (v *StringsValue) String() string
Implements gnuflag.Value String.
type SuperCommand ¶
type SuperCommand struct { CommandBase Name string Purpose string Doc string Examples string Log *Log Aliases []string // FlagKnownAs allows different projects to customise what their flags are // known as, e.g. 'flag', 'option', 'item'. All error/log messages // will use that name when referring to an individual items/flags in this command. // For example, if this value is 'option', the default message 'value for flag' // will become 'value for option'. FlagKnownAs string // SkipCommandDoc is used to skip over the super command documentation. // This is useful when the super command is used as a wrapper for other // commands, and the documentation is not relevant to the output of the // documentation. // TODO (stickupkid): Remove this. This shouldn't be here, but the // documentation command is at the wrong abstraction, so we need to // hack around it. SkipCommandDoc bool // contains filtered or unexported fields }
SuperCommand is a Command that selects a subcommand and assumes its properties; any command line arguments that were not used in selecting the subcommand are passed down to it, and to Run a SuperCommand is to run its selected subcommand.
func NewSuperCommand ¶
func NewSuperCommand(params SuperCommandParams) *SuperCommand
NewSuperCommand creates and initializes a new `SuperCommand`, and returns the fully initialized structure.
func (*SuperCommand) AddHelpTopic ¶
func (c *SuperCommand) AddHelpTopic(name, short, long string, aliases ...string)
AddHelpTopic adds a new help topic with the description being the short param, and the full text being the long param. The description is shown in 'help topics', and the full text is shown when the command 'help <name>' is called.
func (*SuperCommand) AddHelpTopicCallback ¶
func (c *SuperCommand) AddHelpTopicCallback(name, short string, longCallback func() string)
AddHelpTopicCallback adds a new help topic with the description being the short param, and the full text being defined by the callback function.
func (*SuperCommand) AllowInterspersedFlags ¶
func (c *SuperCommand) AllowInterspersedFlags() bool
For a SuperCommand, we want to parse the args with allowIntersperse=false. This will mean that the args may contain other options that haven't been defined yet, and that only options that relate to the SuperCommand itself can come prior to the subcommand name.
func (*SuperCommand) FindClosestSubCommand ¶
func (c *SuperCommand) FindClosestSubCommand(name string) (string, Command, bool)
FindClosestSubCommand attempts to find a sub command by a given name. This is used to help locate potential commands where the name isn't an exact match. If the resulting fuzzy match algorithm returns a value that is itself too far away from the size of the word, we disgard that and say a match isn't relavent i.e. "foo" "barsomethingfoo" would not match
func (*SuperCommand) Info ¶
func (c *SuperCommand) Info() *Info
Info returns a description of the currently selected subcommand, or of the SuperCommand itself if no subcommand has been specified.
func (*SuperCommand) Init ¶
func (c *SuperCommand) Init(args []string) error
Init initializes the command for running.
func (*SuperCommand) IsSuperCommand ¶
func (c *SuperCommand) IsSuperCommand() bool
IsSuperCommand implements Command.IsSuperCommand
func (*SuperCommand) Register ¶
func (c *SuperCommand) Register(subcmd Command)
Register makes a subcommand available for use on the command line. The command will be available via its own name, and via any supplied aliases.
func (*SuperCommand) RegisterAlias ¶
func (c *SuperCommand) RegisterAlias(name, forName string, check DeprecationCheck)
RegisterAlias makes an existing subcommand available under another name. If `check` is supplied, and the result of the `Obsolete` call is true, then the alias is not registered.
func (*SuperCommand) RegisterDeprecated ¶
func (c *SuperCommand) RegisterDeprecated(subcmd Command, check DeprecationCheck)
RegisterDeprecated makes a subcommand available for use on the command line if it is not obsolete. It inserts the command with the specified DeprecationCheck so that a warning is displayed if the command is deprecated.
func (*SuperCommand) RegisterSuperAlias ¶
func (c *SuperCommand) RegisterSuperAlias(name, super, forName string, check DeprecationCheck)
RegisterSuperAlias makes a subcommand of a registered supercommand available under another name. This is useful when the command structure is being refactored. If `check` is supplied, and the result of the `Obsolete` call is true, then the alias is not registered.
func (*SuperCommand) Run ¶
func (c *SuperCommand) Run(ctx *Context) error
Run executes the subcommand that was selected in Init.
func (*SuperCommand) SetCommonFlags ¶
func (c *SuperCommand) SetCommonFlags(f *gnuflag.FlagSet)
SetCommonFlags creates a new "commonflags" flagset, whose flags are shared with the argument f; this enables us to add non-global flags to f, which do not carry into subcommands.
func (*SuperCommand) SetFlags ¶
func (c *SuperCommand) SetFlags(f *gnuflag.FlagSet)
SetFlags adds the options that apply to all commands, particularly those due to logging.
type SuperCommandParams ¶
type SuperCommandParams struct { // UsagePrefix should be set when the SuperCommand is // actually a subcommand of some other SuperCommand; // if NotifyRun is called, it name will be prefixed accordingly, // unless UsagePrefix is identical to Name. UsagePrefix string // Notify, if not nil, is called when the SuperCommand // is about to run a sub-command. NotifyRun func(cmdName string) // NotifyHelp is called just before help is printed, with the // arguments received by the help command. This can be // used, for example, to load command information for external // "plugin" commands, so that their documentation will show up // in the help output. NotifyHelp func([]string) Name string Purpose string Doc string Examples string // Log holds the Log value associated with the supercommand. If it's nil, // no logging flags will be configured. Log *Log // GlobalFlags specifies a value that can add more global flags to the // supercommand which will also be available on all subcommands. GlobalFlags FlagAdder MissingCallback MissingCallback Aliases []string Version string // VersionDetail is a freeform information that is output when the default version // subcommand is passed --all. Output is formatted using the user-selected formatter. // Exported fields should specify yaml and json field tags. VersionDetail interface{} // UserAliasesFilename refers to the location of a file that contains // name = cmd [args...] // values, that is used to change default behaviour of commands in order // to add flags, or provide short cuts to longer commands. UserAliasesFilename string // FlagKnownAs allows different projects to customise what their flags are // known as, e.g. 'flag', 'option', 'item'. All error/log messages // will use that name when referring to an individual items/flags in this command. // For example, if this value is 'option', the default message 'value for flag' // will become 'value for option'. FlagKnownAs string // SkipCommandDoc is used to skip over the super command documentation. // This is useful when the super command is used as a wrapper for other // commands, and the documentation is not relevant to the output of the // documentation. // TODO (stickupkid): Remove this. This shouldn't be here, but the // documentation command is at the wrong abstraction, so we need to // hack around it. SkipCommandDoc bool }
SuperCommandParams provides a way to have default parameter to the `NewSuperCommand` call.
type TypeFormatter ¶
TypeFormatter describes a formatting type that can define if a type is serialisable.
type UnrecognizedCommand ¶
type UnrecognizedCommand struct {
// contains filtered or unexported fields
}
UnrecognizedCommand defines an error that specifies when a command is not found.
func DefaultUnrecognizedCommand ¶
func DefaultUnrecognizedCommand(name string) *UnrecognizedCommand
DefaultUnrecognizedCommand creates a default message for using the UnrecognizedCommand.
func UnrecognizedCommandf ¶
func UnrecognizedCommandf(format string, args ...interface{}) *UnrecognizedCommand
UnrecognizedCommandf creates a UnrecognizedCommand with additional arguments to create a bespoke message for the unrecognized command.
func (*UnrecognizedCommand) Error ¶
func (e *UnrecognizedCommand) Error() string