-
Notifications
You must be signed in to change notification settings - Fork 63
/
flags_bool.go
48 lines (39 loc) · 1.29 KB
/
flags_bool.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2012 Alex Ogier.
// Copyright (c) 2012 The Go Authors.
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package cmdfactory
import (
"strconv"
"github.com/spf13/pflag"
)
type boolValue bool
func newBoolValue(val bool, p *bool) *boolValue {
*p = val
return (*boolValue)(p)
}
func (b *boolValue) Set(val string) error {
v, err := strconv.ParseBool(val)
*b = boolValue(v)
return err
}
func (b *boolValue) Type() string {
return "bool"
}
func (b *boolValue) String() string { return strconv.FormatBool(bool(*b)) }
// BoolVar returns an instantiated flag for to an associated pointer boolean
// value with a given name, default value and usage line.
func BoolVar(p *bool, name string, value bool, usage string) *pflag.Flag {
flag := VarF(newBoolValue(value, p), name, usage)
flag.NoOptDefVal = "true"
return flag
}
// BoolVarP is like BoolVar, but accepts a shorthand letter that can be used
// after a single dash.
func BoolVarP(p *bool, name, shorthand string, value bool, usage string) *pflag.Flag {
flag := VarPF(newBoolValue(value, p), name, shorthand, usage)
flag.NoOptDefVal = "true"
return flag
}