-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathflags.go
150 lines (133 loc) · 3.95 KB
/
flags.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// Copyright 2021 MongoDB Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cobra2snooty
import (
"bytes"
"fmt"
"strings"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
const (
stringType = "string"
boolType = "bool"
countType = "count"
falseValue = "false"
nilValue = "<nil>"
)
var (
varnameMap = map[string]string{
"stringToString": "key=value",
}
)
func FlagUsages(f *pflag.FlagSet) string {
buf := new(bytes.Buffer)
f.VisitAll(func(flag *pflag.Flag) {
if flag.Hidden {
return
}
line := ""
varname, usage := pflag.UnquoteUsage(flag)
varname = mapVarname(varname)
const defaultIndentation = 6
usage = strings.ReplaceAll(usage, "\n", "\n"+strings.Repeat(" ", defaultIndentation))
if flag.Shorthand != "" && flag.ShorthandDeprecated == "" {
line = fmt.Sprintf(" * - -%s, --%s\n - %s", flag.Shorthand, flag.Name, varname)
} else {
line = fmt.Sprintf(" * - --%s\n - %s", flag.Name, varname)
}
required := false
if len(flag.Annotations) != 0 {
_, required = flag.Annotations[cobra.BashCompOneRequiredFlag]
}
line += fmt.Sprintf("\n - %v", required)
if flag.NoOptDefVal != "" {
switch flag.Value.Type() {
case stringType:
line += fmt.Sprintf("[=%q]", flag.NoOptDefVal)
case boolType:
if flag.NoOptDefVal != "true" {
line += fmt.Sprintf("[=%s]", flag.NoOptDefVal)
}
case countType:
if flag.NoOptDefVal != "+1" {
line += fmt.Sprintf("[=%s]", flag.NoOptDefVal)
}
default:
line += fmt.Sprintf("[=%s]", flag.NoOptDefVal)
}
}
if len(flag.Annotations["cobra_annotation_mutually_exclusive"]) != 0 {
mutuale := fmt.Sprintf("%v", flag.Annotations["cobra_annotation_mutually_exclusive"])
mutuale = strings.ReplaceAll(mutuale, "]", "")
mutuale = strings.ReplaceAll(mutuale, "[", "")
mutuale = strings.ReplaceAll(mutuale, flag.Name+" ", "")
mutuale = strings.ReplaceAll(mutuale, " "+flag.Name, "")
mutuale = strings.ReplaceAll(mutuale, " ", ", --")
line += "\n - " + usage + "\n\n Mutually exclusive with --" + mutuale + "."
} else {
line += "\n - " + usage
}
if !defaultIsZeroValue(flag) {
if flag.Value.Type() == stringType {
line += fmt.Sprintf(" This value defaults to %q.", flag.DefValue)
} else {
line += fmt.Sprintf(" This value defaults to %s.", flag.DefValue)
}
}
if flag.Deprecated != "" {
line += fmt.Sprintf(" (DEPRECATED: %s)", flag.Deprecated)
}
_, _ = fmt.Fprintln(buf, line)
})
return buf.String()
}
// defaultIsZeroValue returns true if the default value for this flag represents
// a zero value.
func defaultIsZeroValue(f *pflag.Flag) bool {
switch f.Value.Type() {
case boolType:
return f.DefValue == falseValue
case "duration":
// Beginning in Go 1.7, duration zero values are "0s"
return f.DefValue == "0" || f.DefValue == "0s"
case "int", "int8", "int32", "int64", "uint", "uint8", "uint16", "uint32", "uint64", "count", "float32", "float64":
return f.DefValue == "0"
case stringType:
return f.DefValue == ""
case "ip", "ipMask", "ipNet":
return f.DefValue == nilValue
case "intSlice", "stringSlice", "stringArray", "stringToString":
return f.DefValue == "[]"
default:
switch f.Value.String() {
case falseValue:
return true
case nilValue:
return true
case "":
return true
case "0":
return true
}
return false
}
}
func mapVarname(varname string) string {
mapped, found := varnameMap[varname]
if !found {
return varname
}
return mapped
}