-
Notifications
You must be signed in to change notification settings - Fork 0
/
help_flag.go
408 lines (351 loc) · 7.24 KB
/
help_flag.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
// SPDX-License-Identifier: Apache-2.0
// Copyright 2023 The Prime Citizens
package cli
import (
"io"
"unicode/utf8"
)
// FlagHelp defines commonly used flag metadata
//
// Hint: use .Extra of a flag to hold FlagHelp for documentation
// purpose.
type FlagHelp struct {
// Experimental explains why the flag is Experimental.
//
// Only use this field to note the reason of being experimental, and
// DO NOT include prefix like `EXPERIMENTAL: `
Experimental string
// Deprecation is the deprecation message of the flag.
//
// Only use this field to note the reason of deprecation, and
// DO NOT include prefix like `DEPRECATED: `
Deprecation string
// Changelog may contain upgrade notice of the flag.
//
// DO NOT include prefix like `CHANGELOG: `
Changelog string
// Completion is the completion action to be called to add suggestions.
Completion CompAction
// Extra custom data.
Extra any
}
// Suggest implements [CompAction].
func (h *FlagHelp) Suggest(tsk *CompTask) (added int, state CompState) {
if h.Completion == nil {
return 0, 0
}
return h.Completion.Suggest(tsk)
}
func (h *FlagHelp) HelplnCmdTerminal(out io.Writer, route Route, prefix string) (int, error) {
return 0, nil
}
func (h *FlagHelp) HelplnFlagTerminal(
out io.Writer, route Route, prefix string, indent int, info FlagInfo, groupHasShorthand bool,
) (n int, err error) {
cursor, n, err := printFlagBasicInfo(out, route, prefix, indent, info, groupHasShorthand)
if err != nil {
return
}
var x int
if cursor > indent {
x, err = wstr(out, "\n")
n += x
if err != nil {
return
}
cursor = 0
}
if len(h.Deprecation) != 0 {
x, err = wstr(out, prefix)
n += x
if err != nil {
return
}
x, err = writeSpaces(out, indent-cursor)
n += x
cursor += x
if err != nil {
return
}
x, err = write(out, h.Deprecation, "\n", "DEPRECATED: ")
n += x
cursor += x
if err != nil {
return
}
cursor = 0
}
if len(h.Experimental) != 0 {
x, err = wstr(out, prefix)
n += x
if err != nil {
return
}
x, err = writeSpaces(out, indent-cursor)
n += x
cursor += x
if err != nil {
return
}
x, err = write(out, h.Experimental, "\n", "EXPERIMENTAL: ")
n += x
cursor += x
if err != nil {
return
}
cursor = 0
}
return
}
// printlnValidFlag
func printlnValidFlag(
out io.Writer, route Route, linePrefix string,
indent int, info FlagInfo, groupHasShorthand bool,
) (cursor, n int, err error) {
if (len(info.Name) == 0 || IsShorthand(info.Name)) &&
(len(info.Shorthand) == 0 || !IsShorthand(info.Shorthand)) {
return
}
proute := noescape(&route)
_, flag, ok := FindFlag(proute, info.Name, info.Shorthand)
if !ok {
return
}
if ft, ok := flag.(HelperTerminal); ok {
n, err = ft.HelplnFlagTerminal(out, route, linePrefix, indent, info, groupHasShorthand)
return
} else if ft, ok = flag.Extra().(HelperTerminal); ok {
n, err = ft.HelplnFlagTerminal(out, route, linePrefix, indent, info, groupHasShorthand)
return
}
cursor, n, err = printFlagBasicInfo(out, route, linePrefix, indent, info, groupHasShorthand)
if err != nil {
return
}
x, err := wstr(out, "\n")
n += x
cursor = 0
return
}
func printFlagBasicInfo(
out io.Writer, route Route, prefix string, indent int, info FlagInfo, groupHasShorthand bool,
) (cursor, n int, err error) {
var (
x int
hasShort = IsShorthand(info.Shorthand)
)
if hasShort {
if len(prefix) != 0 {
x, err = wstr(out, prefix)
n += x
if err != nil {
return
}
}
x, err = wstr(out, "-")
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, info.Shorthand)
n += x
if err != nil {
return
}
cursor += 1
}
if len(info.Name) != 0 && !IsShorthand(info.Name) {
if hasShort {
x, err = wstr(out, " --")
} else {
if len(prefix) != 0 {
// doesn't count as cursor
x, err = wstr(out, prefix)
n += x
if err != nil {
return
}
}
if groupHasShorthand {
x, err = wstr(out, " --")
} else {
x, err = wstr(out, "--")
}
}
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, info.Name)
n += x
if err != nil {
return
}
cursor += utf8.RuneCountInString(info.Name)
} else if !hasShort {
// defensive check, should have been filtered out
return
}
proute := noescape(&route)
_, flag, ok := FindFlag(proute, info.Name, info.Shorthand)
if !ok {
return
}
typ, ok := flag.Type()
if ok && cursor > 0 && len(typ) != 0 {
x, err = write(out, typ, "", " ")
n += x
if err != nil {
return
}
cursor += 1 + utf8.RuneCountInString(typ)
}
cursor, x, err = printFlagRules(out, route, info, indent, cursor)
n += x
if err != nil {
return
}
if usage := flag.Usage(); len(usage) > 0 {
x, err = writeSpaces(out, indent-cursor)
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, usage)
n += x
cursor += utf8.RuneCountInString(usage)
if err != nil {
return
}
}
if len(info.DefaultValue) != 0 {
x, err = write(out, info.DefaultValue, ")", " (default: ")
n += x
cursor += x // approx
if err != nil {
return
}
} else if !flag.State().ValueChanged() && flag.HasValue() {
// default value implied by flag state
x, err = wstr(out, " (default: ")
n += x
cursor += x
if err != nil {
return
}
x, err = flag.PrintValue(out)
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, ")")
n += x
cursor += x
if err != nil {
return
}
}
return
}
func printFlagRules(out io.Writer, route Route, info FlagInfo, indent, cur int) (cursor, n int, err error) {
var x int
cursor = cur
proute := noescape(&route)
_, flag, ok := FindFlag(proute, info.Name, info.Shorthand)
if !ok {
return
}
if flag.State().Hidden() {
x, err = writeSpaces(out, indent-cursor)
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, "(hidden")
n += x
cursor += x
if err != nil {
return
}
}
hasTag := false
// 1st round: check if required
for i := len(route) - 1; i >= 0; i-- {
rule := route[i].FlagRule
if rule == nil {
continue
}
if RuleRequiresAny(rule, info.Name, info.Shorthand) {
if cursor > indent {
x, err = wstr(out, ", ")
} else {
x, err = writeSpaces(out, indent-cursor)
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, "(")
}
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, "required) ")
n += x
cursor += x
return
}
if !hasTag && RuleContainsAny(rule, info.Name, info.Shorthand) {
hasTag = true
}
}
if !hasTag {
goto Fixup
}
// 2nd round, only when the flag is not required: add non required tags
for i := len(route) - 1; i >= 0; i-- {
rule := route[i].FlagRule
if rule == nil {
continue
}
if RuleContainsAny(rule, info.Name, info.Shorthand) {
if cursor > indent {
x, err = wstr(out, ", ")
} else {
x, err = writeSpaces(out, indent-cursor)
n += x
cursor += x
if err != nil {
return
}
x, err = wstr(out, "(")
}
n += x
cursor += x
if err != nil {
return
}
x, err = callWriteFlagRule(rule, out, info.Name, info.Shorthand)
n += x
cursor += x
if err != nil {
return
}
}
}
Fixup:
if cursor > indent {
x, err = wstr(out, ") ")
n += x
cursor += x
return
}
return
}