forked from gnolang/gno
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(gnoland): Improve
gnoland config/secrets
command description (g…
- Loading branch information
1 parent
1d009e2
commit bb421f9
Showing
4 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"reflect" | ||
"strings" | ||
"unicode" | ||
|
||
"github.com/gnolang/gno/tm2/pkg/commands" | ||
) | ||
|
||
type metadataHelperGenerator struct { | ||
// Optional callback to edit metadata | ||
MetaUpdate func(meta *commands.Metadata, inputType string) | ||
// Tag to select for name, if empty will use the field Name | ||
TagNameSelector string | ||
// Will display description with tree representation | ||
TreeDisplay bool | ||
} | ||
|
||
// generateSubCommandHelper generates subcommands based on `s` structure fields and their respective tag descriptions | ||
func generateSubCommandHelper(gen metadataHelperGenerator, s any, exec commands.ExecMethod) []*commands.Command { | ||
rv := reflect.ValueOf(s) | ||
metas := gen.generateFields(rv, "", 0) | ||
|
||
cmds := make([]*commands.Command, len(metas)) | ||
for i := 0; i < len(metas); i++ { | ||
meta := metas[i] | ||
exec := func(ctx context.Context, args []string) error { | ||
args = append([]string{meta.Name}, args...) | ||
return exec(ctx, args) | ||
} | ||
cmds[i] = commands.NewCommand(meta, nil, exec) | ||
} | ||
|
||
return cmds | ||
} | ||
|
||
func (g *metadataHelperGenerator) generateFields(rv reflect.Value, parent string, depth int) []commands.Metadata { | ||
if parent != "" { | ||
parent += "." | ||
} | ||
|
||
// Unwrap pointer if needed | ||
if rv.Kind() == reflect.Ptr { | ||
if rv.IsNil() { | ||
// Create a new non-nil instance of the original type that was nil | ||
rv = reflect.New(rv.Type().Elem()) | ||
} | ||
rv = rv.Elem() // Dereference to struct value | ||
} | ||
|
||
metas := []commands.Metadata{} | ||
if rv.Kind() != reflect.Struct { | ||
return metas | ||
} | ||
|
||
rt := rv.Type() | ||
for i := 0; i < rv.NumField(); i++ { | ||
field := rt.Field(i) | ||
if !field.IsExported() { | ||
continue | ||
} | ||
|
||
fieldValue := rv.Field(i) | ||
name := field.Name | ||
// Get JSON tag name | ||
if g.TagNameSelector != "" { | ||
name, _, _ = strings.Cut(field.Tag.Get(g.TagNameSelector), ",") | ||
if name == "" || name == "-" { | ||
continue | ||
} | ||
} | ||
|
||
// Recursive call for nested struct | ||
var childs []commands.Metadata | ||
if k := fieldValue.Kind(); k == reflect.Ptr || k == reflect.Struct { | ||
childs = g.generateFields(fieldValue, name, depth+1) | ||
} | ||
|
||
// Generate metadata | ||
var meta commands.Metadata | ||
|
||
// Name | ||
meta.Name = parent + name | ||
|
||
// Create a tree-like display to see nested field | ||
if g.TreeDisplay && depth > 0 { | ||
meta.ShortHelp += strings.Repeat(" ", depth*2) | ||
if i == rv.NumField()-1 { | ||
meta.ShortHelp += "└─" | ||
} else { | ||
meta.ShortHelp += "├─" | ||
} | ||
} | ||
meta.ShortHelp += fmt.Sprintf("<%s>", field.Type) | ||
|
||
// Get Short/Long Help Message from comment tag | ||
comment := field.Tag.Get("comment") | ||
comment = strings.TrimFunc(comment, func(r rune) bool { | ||
return unicode.IsSpace(r) || r == '#' | ||
}) | ||
|
||
if comment != "" { | ||
// Use the first line as short help | ||
meta.ShortHelp += " " | ||
meta.ShortHelp += strings.Split(comment, "\n")[0] | ||
|
||
// Display full comment as Long Help | ||
meta.LongHelp = comment | ||
} else { | ||
// If the comment is empty, it mostly means that there is no help. | ||
// Use a blank space to avoid falling back on short help. | ||
meta.LongHelp = " " | ||
} | ||
|
||
if g.MetaUpdate != nil { | ||
g.MetaUpdate(&meta, field.Type.String()) | ||
} | ||
|
||
metas = append(metas, meta) | ||
metas = append(metas, childs...) | ||
} | ||
|
||
return metas | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters