Files
prysm/cmd/wrap_flags.go
Preston Van Loon 2aa52fb56a Add static analyzer to discourage use of panic() (#15075)
* Implement static analysis to prevent panics

* Add nopanic to nogo

* Fix violations and add exclusions

Fix violations and add exclusions for all

* Changelog fragment

* Use pass.Report instead of pass.Reportf

* Remove strings.ToLower for checking init method name

* Add exclusion for herumi init

* Move api/client/beacon template function to init and its own file

* Fix nopanic testcase
2025-03-19 18:04:15 +00:00

47 lines
1.3 KiB
Go

package cmd
import (
"fmt"
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v2/altsrc"
)
// WrapFlags so that they can be loaded from alternative sources.
func WrapFlags(flags []cli.Flag) []cli.Flag {
wrapped := make([]cli.Flag, 0, len(flags))
for _, f := range flags {
switch t := f.(type) {
case *cli.BoolFlag:
f = altsrc.NewBoolFlag(t)
case *cli.DurationFlag:
f = altsrc.NewDurationFlag(t)
case *cli.GenericFlag:
f = altsrc.NewGenericFlag(t)
case *cli.Float64Flag:
f = altsrc.NewFloat64Flag(t)
case *cli.IntFlag:
f = altsrc.NewIntFlag(t)
case *cli.StringFlag:
f = altsrc.NewStringFlag(t)
case *cli.StringSliceFlag:
f = altsrc.NewStringSliceFlag(t)
case *cli.Uint64Flag:
f = altsrc.NewUint64Flag(t)
case *cli.UintFlag:
f = altsrc.NewUintFlag(t)
case *cli.PathFlag:
f = altsrc.NewPathFlag(t)
case *cli.Int64Flag:
// Int64Flag does not work. See https://github.com/prysmaticlabs/prysm/issues/6478
panic(fmt.Sprintf("unsupported flag type %T", f)) // lint:nopanic -- This is evaluated at application start.
case *cli.IntSliceFlag:
f = altsrc.NewIntSliceFlag(t)
default:
panic(fmt.Sprintf("cannot convert type %T", f)) // lint:nopanic -- This is evaluated at application start.
}
wrapped = append(wrapped, f)
}
return wrapped
}