spiegel_podman/cmd/podman/validate/choice.go
Paul Holzinger 8631032556
run modernize -fix ./...
Using golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize

+ some manual cleanup in libpod/lock/shm/shm_lock_test.go as it
  generated an unused variable
+ restored one removed comment

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-09-10 16:17:04 +02:00

46 lines
986 B
Go

package validate
import (
"fmt"
"slices"
"strings"
)
// Honors cobra.Value interface
type ChoiceValue struct {
value *string
choices []string
}
// Value may be used in cobra FlagSet methods Var/VarP/VarPF() to select from a set of values
//
// Example:
//
// created := validate.ChoiceValue(&opts.Sort, "command", "created", "id", "image", "names", "runningfor", "size", "status")
// flags.Var(created, "sort", "Sort output by: "+created.Choices())
func Value(p *string, choices ...string) *ChoiceValue {
return &ChoiceValue{
value: p,
choices: choices,
}
}
func (c *ChoiceValue) String() string {
return *c.value
}
func (c *ChoiceValue) Set(value string) error {
if slices.Contains(c.choices, value) {
*c.value = value
return nil
}
return fmt.Errorf("%q is not a valid value. Choose from: %q", value, c.Choices())
}
func (c *ChoiceValue) Choices() string {
return strings.Join(c.choices, ", ")
}
func (c *ChoiceValue) Type() string {
return "choice"
}