Add countable interface
This commit is contained in:
parent
6b0a3e80b5
commit
a509290e75
@ -105,13 +105,11 @@ func (cCtx *Context) Lineage() []*Context {
|
|||||||
return lineage
|
return lineage
|
||||||
}
|
}
|
||||||
|
|
||||||
// NumOccurrences returns the num of occurences of this flag
|
// Count returns the num of occurences of this flag
|
||||||
func (cCtx *Context) Count(name string) int {
|
func (cCtx *Context) Count(name string) int {
|
||||||
if fs := cCtx.lookupFlagSet(name); fs != nil {
|
if fs := cCtx.lookupFlagSet(name); fs != nil {
|
||||||
if bf, ok := fs.Lookup(name).Value.(*boolValue); ok {
|
if cf, ok := fs.Lookup(name).Value.(Countable); ok {
|
||||||
if bf.count != nil {
|
return cf.Count()
|
||||||
return *bf.count
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0
|
return 0
|
||||||
|
6
flag.go
6
flag.go
@ -124,6 +124,12 @@ type Flag interface {
|
|||||||
GetValue() string
|
GetValue() string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Countable is an interface to enable detection of flag values which support
|
||||||
|
// repetitive flags
|
||||||
|
type Countable interface {
|
||||||
|
Count() int
|
||||||
|
}
|
||||||
|
|
||||||
func flagSet(name string, flags []Flag) (*flag.FlagSet, error) {
|
func flagSet(name string, flags []Flag) (*flag.FlagSet, error) {
|
||||||
set := flag.NewFlagSet(name, flag.ContinueOnError)
|
set := flag.NewFlagSet(name, flag.ContinueOnError)
|
||||||
|
|
||||||
|
@ -51,6 +51,13 @@ func (b *boolValue) String() string {
|
|||||||
|
|
||||||
func (b *boolValue) IsBoolFlag() bool { return true }
|
func (b *boolValue) IsBoolFlag() bool { return true }
|
||||||
|
|
||||||
|
func (b *boolValue) Count() int {
|
||||||
|
if b.count != nil {
|
||||||
|
return *b.count
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
// GetValue returns the flags value as string representation and an empty
|
// GetValue returns the flags value as string representation and an empty
|
||||||
// string if the flag takes no value at all.
|
// string if the flag takes no value at all.
|
||||||
func (f *BoolFlag) GetValue() string {
|
func (f *BoolFlag) GetValue() string {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user