-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.go
503 lines (440 loc) · 11.3 KB
/
help.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
// Copyright (C) 2023 Takayuki Sato. All Rights Reserved.
// This program is free software under MIT License.
// See the file LICENSE in this distribution for more details.
package cliargs
import (
"fmt"
"strings"
"github.com/sttk/linebreak"
)
// Help is a struct type which holds help text blocks and help options block.
type Help struct {
marginLeft int
marginRight int
blocks []block
}
type block struct {
indent int
marginLeft int
marginRight int
bodies []blockBody
}
type blockBody struct {
firstIndent int
text string
}
// NewHelp is a function to construct a Help instance.
func NewHelp() Help {
var help Help
help.blocks = make([]block, 0, 2)
return help
}
// NewHelpWithMargins is a function to construct a Help instance with setting left and right
// margins.
func NewHelpWithMargins(marginLeft, marginRight int) Help {
var help Help
help.marginLeft = marginLeft
help.marginRight = marginRight
help.blocks = make([]block, 0, 2)
return help
}
// AddText is a method which adds a text to this Help instance.
func (help *Help) AddText(text string) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.bodies = []blockBody{
blockBody{firstIndent: 0, text: text},
}
help.blocks = append(help.blocks, b)
}
// AddTextWithIndent is a method which adds a text with indent size to this Help instance.
func (help *Help) AddTextWithIndent(text string, indent int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.indent = indent
b.bodies = []blockBody{
blockBody{firstIndent: 0, text: text},
}
help.blocks = append(help.blocks, b)
}
// AddTextWithMargins is a method which adds a text with left and right mergins to this Help
// instance.
func (help *Help) AddTextWithMargins(text string, marginLeft, marginRight int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.marginLeft += marginLeft
b.marginRight += marginRight
b.bodies = []blockBody{
blockBody{firstIndent: 0, text: text},
}
help.blocks = append(help.blocks, b)
}
// AddTextWithIndnetAndMargins is a method which adds a text with indent size and left and right
// mergins to this Help instance.
func (help *Help) AddTextWithIndentAndMargins(text string, indent, marginLeft, marginRight int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.indent = indent
b.marginLeft += marginLeft
b.marginRight += marginRight
b.bodies = []blockBody{
blockBody{firstIndent: 0, text: text},
}
help.blocks = append(help.blocks, b)
}
// AddTexts is a method which adds an array of texts to this Help instance.
func (help *Help) AddTexts(texts []string) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
bodies := make([]blockBody, 0, len(texts))
for _, text := range texts {
bodies = append(bodies, blockBody{firstIndent: 0, text: text})
}
b.bodies = bodies
help.blocks = append(help.blocks, b)
}
// AddTextsWithIndent is a method which adds an array of texts with indent size to this Help
// instance.
func (help *Help) AddTextsWithIndent(texts []string, indent int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.indent = indent
bodies := make([]blockBody, 0, len(texts))
for _, text := range texts {
bodies = append(bodies, blockBody{firstIndent: 0, text: text})
}
b.bodies = bodies
help.blocks = append(help.blocks, b)
}
// AddTextsWithMargins is a method which adds an array of texts with left and right mergins to
// this Help instance.
func (help *Help) AddTextsWithMargins(texts []string, marginLeft, marginRight int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.marginLeft += marginLeft
b.marginRight += marginRight
bodies := make([]blockBody, 0, len(texts))
for _, text := range texts {
bodies = append(bodies, blockBody{firstIndent: 0, text: text})
}
b.bodies = bodies
help.blocks = append(help.blocks, b)
}
// AddTextsWithIndnetAndMargins is a method which adds an array of texts with indent size and left
// and right mergins to this Help instance.
func (help *Help) AddTextsWithIndentAndMargins(
texts []string, indent, marginLeft, marginRight int,
) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.indent = indent
b.marginLeft += marginLeft
b.marginRight += marginRight
bodies := make([]blockBody, 0, len(texts))
for _, text := range texts {
bodies = append(bodies, blockBody{firstIndent: 0, text: text})
}
b.bodies = bodies
help.blocks = append(help.blocks, b)
}
// AddOpts is a method which adds OptCfg(s) to this Help instance.
func (help *Help) AddOpts(optCfgs []OptCfg) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.bodies = createOptsHelp(optCfgs, &b.indent)
help.blocks = append(help.blocks, b)
}
// AddOptsWithIndent is a method which adds OptCfg(s) with indent size to this Help instance.
func (help *Help) AddOptsWithIndent(optCfgs []OptCfg, indent int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.indent = indent
b.bodies = createOptsHelp(optCfgs, &b.indent)
help.blocks = append(help.blocks, b)
}
// AddOptsWithMargins is a method which adds OptCfg(s) with left and right margins to this Help
// instance.
func (help *Help) AddOptsWithMargins(optCfgs []OptCfg, marginLeft, marginRight int) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.marginLeft += marginLeft
b.marginRight += marginRight
b.bodies = createOptsHelp(optCfgs, &b.indent)
help.blocks = append(help.blocks, b)
}
// AddOptsWithIndentAndMargins is a method which adds OptCfg(s) with indent size, left and right
// margins to this Help instance.
func (help *Help) AddOptsWithIndentAndMargins(
optCfgs []OptCfg, indent, marginLeft, marginRight int,
) {
b := block{
marginLeft: help.marginLeft,
marginRight: help.marginRight,
}
b.indent = indent
b.marginLeft += marginLeft
b.marginRight += marginRight
b.bodies = createOptsHelp(optCfgs, &b.indent)
help.blocks = append(help.blocks, b)
}
// Iter is a method which creates a HelpIter instance.
func (help Help) Iter() HelpIter {
if len(help.blocks) == 0 {
return HelpIter{}
}
lineWidth := linebreak.TermCols()
return HelpIter{
lineWidth: lineWidth,
blocks: help.blocks,
blockIter: newBlockIter(help.blocks[0], lineWidth),
}
}
// Print is a method which prints help texts to standard output.
func (help Help) Print() {
iter := help.Iter()
for {
line, exists := iter.Next()
if !exists {
break
}
fmt.Println(line)
}
}
func createOptsHelp(optCfgs []OptCfg, indent *int) []blockBody {
bodies := make([]blockBody, 0, len(optCfgs))
const ANY_OPT string = "*"
if *indent > 0 {
for _, cfg := range optCfgs {
var names []string
for _, nm := range cfg.Names {
if len(nm) > 0 {
names = append(names, nm)
break
}
}
storeKey := cfg.StoreKey
if len(storeKey) == 0 && len(names) > 0 {
storeKey = names[0]
}
if len(storeKey) == 0 {
continue
}
if storeKey == ANY_OPT {
continue
}
firstIndent, text := makeOptTitle(cfg)
width := firstIndent + linebreak.TextWidth(text)
if len(cfg.Desc) > 0 {
if width+2 > *indent {
text += "\n" + strings.Repeat(" ", *indent) + cfg.Desc
} else {
text += strings.Repeat(" ", *indent-width) + cfg.Desc
}
}
bodies = append(bodies, blockBody{firstIndent, text})
}
} else {
widths := make([]int, 0, len(bodies))
maxIndent := 0
for _, cfg := range optCfgs {
var names []string
for _, nm := range cfg.Names {
if len(nm) > 0 {
names = append(names, nm)
break
}
}
storeKey := cfg.StoreKey
if len(storeKey) == 0 && len(names) > 0 {
storeKey = names[0]
}
if len(storeKey) == 0 {
continue
}
if storeKey == ANY_OPT {
continue
}
firstIndent, text := makeOptTitle(cfg)
width := firstIndent + linebreak.TextWidth(text)
if maxIndent < width {
maxIndent = width
}
bodies = append(bodies, blockBody{firstIndent, text})
widths = append(widths, width)
}
maxIndent += 2
*indent = maxIndent
i := 0
for _, cfg := range optCfgs {
var names []string
for _, nm := range cfg.Names {
if len(nm) > 0 {
names = append(names, nm)
break
}
}
storeKey := cfg.StoreKey
if len(storeKey) == 0 && len(names) > 0 {
storeKey = names[0]
}
if len(storeKey) == 0 {
continue
}
if storeKey == ANY_OPT {
continue
}
if len(cfg.Desc) > 0 {
bodies[i].text += strings.Repeat(" ", maxIndent-widths[i]) + cfg.Desc
}
i += 1
}
}
return bodies
}
func makeOptTitle(cfg OptCfg) (int, string) {
headSpaces := 0
lastSpaces := 0
title := ""
useStoreKey := true
n := len(cfg.Names)
for i, name := range cfg.Names {
switch len(name) {
case 0:
if len(title) == 0 {
headSpaces += 4
} else if i != n-1 {
lastSpaces += 4
} else {
lastSpaces += 2
}
case 1:
if lastSpaces > 0 {
title += "," + strings.Repeat(" ", lastSpaces-1)
}
lastSpaces = 0
title += "-" + name
if i != n-1 {
lastSpaces += 2
}
useStoreKey = false
default:
if lastSpaces > 0 {
title += "," + strings.Repeat(" ", lastSpaces-1)
}
lastSpaces = 0
title += "--" + name
if i != n-1 {
lastSpaces += 2
}
useStoreKey = false
}
}
if useStoreKey {
switch len(cfg.StoreKey) {
case 0:
case 1:
if lastSpaces > 0 {
title += "," + strings.Repeat(" ", lastSpaces-1)
}
title += "-" + cfg.StoreKey
default:
if lastSpaces > 0 {
title += "," + strings.Repeat(" ", lastSpaces-1)
}
title += "--" + cfg.StoreKey
}
}
if len(cfg.ArgInHelp) > 0 {
title += " " + cfg.ArgInHelp
}
return headSpaces, title
}
// HelpIter is a struct type to iterate lines of help texts.
type HelpIter struct {
lineWidth int
blocks []block
blockIter blockIter
}
type blockIter struct {
bodies []blockBody
index int
indent string
margin string
lineIter linebreak.LineIter
isEnded bool
}
// Next is a method that returns a line of a help text and a flag which indicates the line is not
// end.
func (iter *HelpIter) Next() (string, bool) {
for {
line, exists := iter.blockIter.next()
if exists {
return line, true
}
if len(iter.blocks) <= 1 {
return "", false
}
iter.blocks = iter.blocks[1:]
iter.blockIter = newBlockIter(iter.blocks[0], iter.lineWidth)
}
}
func newBlockIter(block block, lineWidth int) blockIter {
printWidth := lineWidth - block.marginLeft - block.marginRight
if len(block.bodies) == 0 || printWidth <= block.indent {
return blockIter{}
}
body := block.bodies[0]
lineIter := linebreak.New(body.text, printWidth)
lineIter.SetIndent(strings.Repeat(" ", body.firstIndent))
return blockIter{
bodies: block.bodies,
index: 0,
indent: strings.Repeat(" ", block.indent),
margin: strings.Repeat(" ", block.marginLeft),
lineIter: lineIter,
}
}
func (iter *blockIter) next() (string, bool) {
if len(iter.bodies) == 0 {
return "", false
}
for {
line, exists := iter.lineIter.Next()
iter.lineIter.SetIndent(iter.indent)
if len(line) > 0 {
line = iter.margin + line
}
if exists {
return line, true
}
iter.index++
if iter.index >= len(iter.bodies) {
return "", false
}
body := iter.bodies[iter.index]
iter.lineIter.Init(body.text)
iter.lineIter.SetIndent(strings.Repeat(" ", body.firstIndent))
}
}