1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

feat(os/gcmd): add default value display for an argument (#4083)

This commit is contained in:
Wlynxg 2025-01-13 09:26:59 +08:00 committed by GitHub
parent 80f57d1c24
commit 3f24b4da2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 5 deletions

View File

@ -46,11 +46,12 @@ type FuncWithValue func(ctx context.Context, parser *Parser) (out interface{}, e
// Argument is the command value that are used by certain command.
type Argument struct {
Name string // Option name.
Short string // Option short.
Brief string // Brief info about this Option, which is used in help info.
IsArg bool // IsArg marks this argument taking value from command line argument instead of option.
Orphan bool // Whether this Option having or having no value bound to it.
Name string // Option name.
Short string // Option short.
Default string // Option default value.
Brief string // Brief info about this Option, which is used in help info.
IsArg bool // IsArg marks this argument taking value from command line argument instead of option.
Orphan bool // Whether this Option having or having no value bound to it.
}
var (

View File

@ -156,6 +156,9 @@ func (c *Command) PrintTo(writer io.Writer) {
spaceLength = maxSpaceLength - len(nameStr)
wordwrapPrefix = gstr.Repeat(" ", len(prefix+nameStr)+spaceLength+4)
)
if arg.Default != "" {
brief = fmt.Sprintf("%s (default: \"%s\")", brief, arg.Default)
}
c.printLineBrief(printLineBriefInput{
Buffer: buffer,
Name: nameStr,

View File

@ -378,6 +378,9 @@ func newArgumentsFromInput(object interface{}) (args []Argument, err error) {
if arg.Brief == "" {
arg.Brief = field.TagDescription()
}
if arg.Default == "" {
arg.Default = field.TagDefault()
}
if v, ok := metaData[gtag.Arg]; ok {
arg.IsArg = gconv.Bool(v)
}