-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusage.go
183 lines (155 loc) · 4.1 KB
/
usage.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package cli
import (
"cmp"
"flag"
"fmt"
"slices"
"strings"
"github.com/mfridman/cli/pkg/textutil"
)
// DefaultUsage returns the default usage string for the command hierarchy. It is used when the
// command does not provide a custom usage function. The usage string includes the command's short
// help, usage pattern, available subcommands, and flags.
func DefaultUsage(root *Command) string {
if root == nil {
return ""
}
// Get terminal command from state
terminalCmd := root.terminal()
var b strings.Builder
if terminalCmd.UsageFunc != nil {
return terminalCmd.UsageFunc(terminalCmd)
}
if terminalCmd.ShortHelp != "" {
b.WriteString(terminalCmd.ShortHelp)
b.WriteString("\n\n")
}
b.WriteString("Usage:\n")
if terminalCmd.Usage != "" {
b.WriteString(" " + terminalCmd.Usage + "\n")
} else {
usage := terminalCmd.Name
if root.state != nil && len(root.state.path) > 0 {
usage = getCommandPath(root.state.path)
}
if terminalCmd.Flags != nil {
usage += " [flags]"
}
if len(terminalCmd.SubCommands) > 0 {
usage += " <command>"
}
b.WriteString(" " + usage + "\n")
}
b.WriteString("\n")
if len(terminalCmd.SubCommands) > 0 {
b.WriteString("Available Commands:\n")
sortedCommands := slices.Clone(terminalCmd.SubCommands)
slices.SortFunc(sortedCommands, func(a, b *Command) int {
return cmp.Compare(a.Name, b.Name)
})
maxNameLen := 0
for _, sub := range sortedCommands {
if len(sub.Name) > maxNameLen {
maxNameLen = len(sub.Name)
}
}
nameWidth := maxNameLen + 4
wrapWidth := 80 - nameWidth
for _, sub := range sortedCommands {
if sub.ShortHelp == "" {
fmt.Fprintf(&b, " %s\n", sub.Name)
continue
}
lines := textutil.Wrap(sub.ShortHelp, wrapWidth)
padding := strings.Repeat(" ", maxNameLen-len(sub.Name)+4)
fmt.Fprintf(&b, " %s%s%s\n", sub.Name, padding, lines[0])
indentPadding := strings.Repeat(" ", nameWidth+2)
for _, line := range lines[1:] {
fmt.Fprintf(&b, "%s%s\n", indentPadding, line)
}
}
b.WriteString("\n")
}
var flags []flagInfo
if root.state != nil && len(root.state.path) > 0 {
for i, cmd := range root.state.path {
if cmd.Flags == nil {
continue
}
isGlobal := i < len(root.state.path)-1
cmd.Flags.VisitAll(func(f *flag.Flag) {
flags = append(flags, flagInfo{
name: "-" + f.Name,
usage: f.Usage,
defval: f.DefValue,
global: isGlobal,
})
})
}
}
if len(flags) > 0 {
slices.SortFunc(flags, func(a, b flagInfo) int {
return cmp.Compare(a.name, b.name)
})
maxFlagLen := 0
for _, f := range flags {
if len(f.name) > maxFlagLen {
maxFlagLen = len(f.name)
}
}
hasLocal := false
hasGlobal := false
for _, f := range flags {
if f.global {
hasGlobal = true
} else {
hasLocal = true
}
}
if hasLocal {
b.WriteString("Flags:\n")
writeFlagSection(&b, flags, maxFlagLen, false)
b.WriteString("\n")
}
if hasGlobal {
b.WriteString("Global Flags:\n")
writeFlagSection(&b, flags, maxFlagLen, true)
b.WriteString("\n")
}
}
if len(terminalCmd.SubCommands) > 0 {
cmdName := terminalCmd.Name
if root.state != nil && len(root.state.path) > 0 {
cmdName = getCommandPath(root.state.path)
}
fmt.Fprintf(&b, "Use \"%s [command] --help\" for more information about a command.\n", cmdName)
}
return strings.TrimRight(b.String(), "\n")
}
// writeFlagSection handles the formatting of flag descriptions
func writeFlagSection(b *strings.Builder, flags []flagInfo, maxLen int, global bool) {
nameWidth := maxLen + 4
wrapWidth := 80 - nameWidth
for _, f := range flags {
if f.global != global {
continue
}
description := f.usage
if f.defval != "" {
description += fmt.Sprintf(" (default: %s)", f.defval)
}
lines := textutil.Wrap(description, wrapWidth)
padding := strings.Repeat(" ", maxLen-len(f.name)+4)
fmt.Fprintf(b, " %s%s%s\n", f.name, padding, lines[0])
indentPadding := strings.Repeat(" ", nameWidth+2)
for _, line := range lines[1:] {
fmt.Fprintf(b, "%s%s\n", indentPadding, line)
}
}
}
type flagInfo struct {
name string
usage string
defval string
global bool
}