Documentation ¶
Index ¶
- func AddFlags(cmd *cobra.Command, desc FlagDesc)
- func AddQueryCmd[Q proto.Message, querier any](cmd *cobra.Command, newQueryClientFn func(grpc1.ClientConn) querier, ...)
- func AddTxCmd[M sdk.Msg](cmd *cobra.Command, f func() (*TxCliDesc, M))
- func BuildQueryCli[reqP proto.Message, querier any](desc *QueryDescriptor, newQueryClientFn func(grpc1.ClientConn) querier) *cobra.Command
- func BuildTxCli[M sdk.Msg](desc *TxCliDesc) *cobra.Command
- func FormatLongDesc(longString string, meta *LongMetadata) string
- func FormatLongDescDirect(longString, moduleName string) string
- func GetParams[reqP proto.Message, querier any](moduleName string, newQueryClientFn func(grpc1.ClientConn) querier) *cobra.Command
- func IndexCmd(moduleName string) *cobra.Command
- func ParseCoin(arg, fieldName string) (sdk.Coin, error)
- func ParseCoins(arg, fieldName string) (sdk.Coins, error)
- func ParseDenom(arg, _ string) (string, error)
- func ParseExpectedQueryFnName[reqP any]() string
- func ParseField(v reflect.Value, t reflect.Type, fieldIndex int, arg string, ...) (bool, error)
- func ParseFieldFromArg(fVal reflect.Value, fType reflect.StructField, arg string) error
- func ParseFieldFromFlag(fVal reflect.Value, fType reflect.StructField, flagAdvice FlagAdvice, ...) (bool, error)
- func ParseFieldsFromFlagsAndArgs[reqP any](flagAdvice FlagAdvice, flags *pflag.FlagSet, args []string) (reqP, error)
- func ParseFloat(arg, fieldName string) (float64, error)
- func ParseHasPagination[reqP any]() bool
- func ParseInt(arg, fieldName string) (int64, error)
- func ParseIntMaybeNegative(arg, fieldName string) (int64, error)
- func ParseNumFields[reqP any]() int
- func ParseSdkDec(arg, fieldName string) (sdk.Dec, error)
- func ParseSdkInt(arg, fieldName string) (math.Int, error)
- func ParseUint(arg, fieldName string) (uint64, error)
- func ParseUnixTime(arg, fieldName string) (time.Time, error)
- func QueryIndexCmd(moduleName string) *cobra.Command
- func RunQueryTestCase[Q proto.Message](t *testing.T, desc *QueryDescriptor, tc QueryCliTestCase[Q])
- func RunQueryTestCases[Q proto.Message](t *testing.T, desc *QueryDescriptor, testcases map[string]QueryCliTestCase[Q])
- func RunTxTestCase[M sdk.Msg](t *testing.T, desc *TxCliDesc, tc TxCliTestCase[M])
- func RunTxTestCases[M sdk.Msg](t *testing.T, desc *TxCliDesc, testcases map[string]TxCliTestCase[M])
- func SimpleQueryCmd[reqP proto.Message, querier any](use, short, long string, moduleName string, ...) *cobra.Command
- func TxIndexCmd(moduleName string) *cobra.Command
- type CustomFieldParserFn
- type FieldReadLocation
- type FlagAdvice
- type FlagDesc
- type LongMetadata
- type QueryCliTestCase
- type QueryDescriptor
- type TxCliDesc
- type TxCliTestCase
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddQueryCmd ¶
func AddQueryCmd[Q proto.Message, querier any](cmd *cobra.Command, newQueryClientFn func(grpc1.ClientConn) querier, f func() (*QueryDescriptor, Q))
func BuildQueryCli ¶
func BuildQueryCli[reqP proto.Message, querier any](desc *QueryDescriptor, newQueryClientFn func(grpc1.ClientConn) querier) *cobra.Command
func FormatLongDesc ¶
func FormatLongDesc(longString string, meta *LongMetadata) string
func FormatLongDescDirect ¶
func ParseCoins ¶
TODO: Make this able to read from some local alias file for denoms.
func ParseDenom ¶
func ParseField ¶
func ParseField( v reflect.Value, t reflect.Type, fieldIndex int, arg string, flagAdvice FlagAdvice, flags *pflag.FlagSet, ) (bool, error)
ParseField parses field #fieldIndex from either an arg or a flag. Returns true if it was parsed from an argument. Returns error if there was an issue in parsing this field.
func ParseFieldFromArg ¶
func ParseFieldFromFlag ¶
func ParseFieldFromFlag( fVal reflect.Value, fType reflect.StructField, flagAdvice FlagAdvice, flags *pflag.FlagSet, ) (bool, error)
ParseFieldFromFlag attempts to parses the value of a field in a struct from a flag. The field is identified by the provided `reflect.StructField`. The flag advice and `pflag.FlagSet` are used to determine the flag to parse the field from. If the field corresponds to a value from a flag, true is returned. Otherwise, `false` is returned. In the true case, the parsed value is set on the provided `reflect.Value`. An error is returned if there is an issue parsing the field from the flag.
func ParseFieldsFromFlagsAndArgs ¶
func ParseFieldsFromFlagsAndArgs[reqP any](flagAdvice FlagAdvice, flags *pflag.FlagSet, args []string) (reqP, error)
Parses arguments 1-1 from args makes an exception, where it allows Pagination to come from flags.
func ParseFloat ¶
func ParseHasPagination ¶
func ParseIntMaybeNegative ¶
func ParseNumFields ¶
func ParseSdkInt ¶
TODO: This really shouldn't be getting used in the CLI, its misdesign on the CLI ux
func QueryIndexCmd ¶
func RunQueryTestCase ¶
func RunQueryTestCase[Q proto.Message](t *testing.T, desc *QueryDescriptor, tc QueryCliTestCase[Q])
func RunQueryTestCases ¶
func RunQueryTestCases[Q proto.Message](t *testing.T, desc *QueryDescriptor, testcases map[string]QueryCliTestCase[Q])
func RunTxTestCase ¶
func RunTxTestCases ¶
func SimpleQueryCmd ¶
func SimpleQueryCmd[reqP proto.Message, querier any](use, short, long string, moduleName string, newQueryClientFn func(grpc1.ClientConn) querier, ) *cobra.Command
SimpleQueryCmd builds a query, for the common, simple case. It detects that the querier function name is the same as the ProtoMessage name, with just the "Query" and "Request" args chopped off. It expects all proto fields to appear as arguments, in order.
func TxIndexCmd ¶
Types ¶
type CustomFieldParserFn ¶
type CustomFieldParserFn = func(arg string, flags *pflag.FlagSet) (valueToSet any, usedArg FieldReadLocation, err error)
CustomFieldParser function.
func FlagOnlyParser ¶
func FlagOnlyParser[v any](f func(fs *pflag.FlagSet) (v, error)) CustomFieldParserFn
type FieldReadLocation ¶
type FieldReadLocation = bool
const ( UsedArg FieldReadLocation = true UsedFlag FieldReadLocation = false )
func ParseUintArray ¶
type FlagAdvice ¶
type FlagAdvice struct { HasPagination bool // Map of FieldName -> FlagName CustomFlagOverrides map[string]string CustomFieldParsers map[string]CustomFieldParserFn // Tx sender value IsTx bool TxSenderFieldName string FromValue string }
func (FlagAdvice) Sanitize ¶
func (f FlagAdvice) Sanitize() FlagAdvice
type LongMetadata ¶
type LongMetadata struct { BinaryName string CommandPrefix string Short string // Newline Example: ExampleHeader string }
func NewLongMetadata ¶
func NewLongMetadata(moduleName string) *LongMetadata
func (*LongMetadata) WithShort ¶
func (m *LongMetadata) WithShort(short string) *LongMetadata
type QueryCliTestCase ¶
type QueryDescriptor ¶
type QueryDescriptor struct { Use string Short string Long string HasPagination bool QueryFnName string Flags FlagDesc // Map of FieldName -> FlagName CustomFlagOverrides map[string]string // Map of FieldName -> CustomParseFn CustomFieldParsers map[string]CustomFieldParserFn ParseQuery func(args []string, flags *pflag.FlagSet) (proto.Message, error) ModuleName string // contains filtered or unexported fields }
func (*QueryDescriptor) FormatLong ¶
func (desc *QueryDescriptor) FormatLong(moduleName string)
type TxCliDesc ¶
type TxCliDesc struct { Use string Short string Long string Example string NumArgs int // Contract: len(args) = NumArgs ParseAndBuildMsg func(clientCtx client.Context, args []string, flags *pflag.FlagSet) (sdk.Msg, error) TxSignerFieldName string Flags FlagDesc // Map of FieldName -> FlagName CustomFlagOverrides map[string]string // Map of FieldName -> CustomParseFn CustomFieldParsers map[string]CustomFieldParserFn }
func (TxCliDesc) BuildCommandCustomFn ¶
Creates a new cobra command given the description. Its up to then caller to add CLI flags, aside from `flags.AddTxFlagsToCmd(cmd)`