-
Notifications
You must be signed in to change notification settings - Fork 32
/
documentation.go
632 lines (544 loc) · 15.9 KB
/
documentation.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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
// Copyright 2012-2022 Canonical Ltd.
// Licensed under the LGPLv3, see LICENSE file for details.
package cmd
import (
"bufio"
"errors"
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strings"
"github.com/juju/gnuflag"
)
const (
DocumentationFileName = "documentation.md"
DocumentationIndexFileName = "index.md"
)
var doc string = `
This command generates a markdown formatted document with all the commands, their descriptions, arguments, and examples.
`
var documentationExamples = `
juju documentation
juju documentation --split
juju documentation --split --no-index --out /tmp/docs
To render markdown documentation using a list of existing
commands, you can use a file with the following syntax
command1: id1
command2: id2
commandN: idN
For example:
add-cloud: 1183
add-secret: 1284
remove-cloud: 4344
Then, the urls will be populated using the ids indicated
in the file above.
juju documentation --split --no-index --out /tmp/docs --discourse-ids /tmp/docs/myids
`
type documentationCommand struct {
CommandBase
super *SuperCommand
out string
noIndex bool
split bool
url string
idsPath string
// ids is contains a numeric id of every command
// add-cloud: 1112
// remove-user: 3333
// etc...
ids map[string]string
// reverseAliases maintains a reverse map of the alias and the
// targetting command. This is used to find the ids corresponding
// to a given alias
reverseAliases map[string]string
}
func newDocumentationCommand(s *SuperCommand) *documentationCommand {
return &documentationCommand{super: s}
}
func (c *documentationCommand) Info() *Info {
return &Info{
Name: "documentation",
Args: "--out <target-folder> --no-index --split --url <base-url> --discourse-ids <filepath>",
Purpose: "Generate the documentation for all commands",
Doc: doc,
Examples: documentationExamples,
}
}
// SetFlags adds command specific flags to the flag set.
func (c *documentationCommand) SetFlags(f *gnuflag.FlagSet) {
f.StringVar(&c.out, "out", "", "Documentation output folder if not set the result is displayed using the standard output")
f.BoolVar(&c.noIndex, "no-index", false, "Do not generate the commands index")
f.BoolVar(&c.split, "split", false, "Generate a separate Markdown file for each command")
f.StringVar(&c.url, "url", "", "Documentation host URL")
f.StringVar(&c.idsPath, "discourse-ids", "", "File containing a mapping of commands and their discourse ids")
}
func (c *documentationCommand) Run(ctx *Context) error {
if c.split {
if c.out == "" {
return errors.New("when using --split, you must set the output folder using --out=<folder>")
}
return c.dumpSeveralFiles()
}
return c.dumpOneFile(ctx)
}
// dumpOneFile is invoked when the output is contained in a single output
func (c *documentationCommand) dumpOneFile(ctx *Context) error {
var writer io.Writer
if c.out != "" {
_, err := os.Stat(c.out)
if err != nil {
return err
}
target := fmt.Sprintf("%s/%s", c.out, DocumentationFileName)
f, err := os.Create(target)
if err != nil {
return err
}
defer f.Close()
writer = f
} else {
writer = ctx.Stdout
}
return c.dumpEntries(writer)
}
// getSortedListCommands returns an array with the sorted list of
// command names
func (c *documentationCommand) getSortedListCommands() []string {
// sort the commands
sorted := make([]string, len(c.super.subcmds))
i := 0
for k := range c.super.subcmds {
sorted[i] = k
i++
}
sort.Strings(sorted)
return sorted
}
func (c *documentationCommand) computeReverseAliases() {
c.reverseAliases = make(map[string]string)
for name, content := range c.super.subcmds {
for _, alias := range content.command.Info().Aliases {
c.reverseAliases[alias] = name
}
}
}
// dumpSeveralFiles is invoked when every command is dumped into
// a separated entity
func (c *documentationCommand) dumpSeveralFiles() error {
if len(c.super.subcmds) == 0 {
fmt.Printf("No commands found for %s", c.super.Name)
return nil
}
// Attempt to create output directory. This will fail if:
// - we don't have permission to create the dir
// - a file already exists at the given path
err := os.MkdirAll(c.out, os.ModePerm)
if err != nil {
return err
}
if c.idsPath != "" {
// get the list of ids
c.ids, err = c.readFileIds(c.idsPath)
if err != nil {
return err
}
}
// create index if indicated
if !c.noIndex {
target := fmt.Sprintf("%s/%s", c.out, DocumentationIndexFileName)
f, err := os.Create(target)
if err != nil {
return err
}
err = c.writeIndex(f)
if err != nil {
return fmt.Errorf("writing index: %w", err)
}
f.Close()
}
return c.writeDocs(c.out, []string{c.super.Name}, true)
}
// writeDocs (recursively) writes docs for all commands in the given folder.
func (c *documentationCommand) writeDocs(folder string, superCommands []string, printDefaultCommands bool) error {
c.computeReverseAliases()
for name, ref := range c.super.subcmds {
if !printDefaultCommands && isDefaultCommand(name) {
continue
}
commandSeq := append(superCommands, name)
sc, isSuperCommand := ref.command.(*SuperCommand)
if !isSuperCommand || (isSuperCommand && !sc.SkipCommandDoc) {
target := fmt.Sprintf("%s.md", strings.Join(commandSeq[1:], "_"))
if err := c.writeDoc(folder, target, ref, commandSeq); err != nil {
return err
}
}
// Handle subcommands
if !isSuperCommand {
continue
}
if err := sc.documentation.writeDocs(folder, commandSeq, false); err != nil {
return err
}
}
return nil
}
func (c *documentationCommand) writeDoc(folder, target string, ref commandReference, commandSeq []string) error {
target = strings.ReplaceAll(target, " ", "_")
target = filepath.Join(folder, target)
f, err := os.Create(target)
if err != nil {
return err
}
defer func() { _ = f.Close() }()
formatted := c.formatCommand(ref, false, commandSeq)
if _, err = fmt.Fprintln(f, formatted); err != nil {
return err
}
_ = f.Sync()
return nil
}
func (c *documentationCommand) readFileIds(path string) (map[string]string, error) {
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()
reader := bufio.NewScanner(f)
ids := make(map[string]string)
for reader.Scan() {
line := reader.Text()
items := strings.Split(line, ":")
if len(items) != 2 {
return nil, fmt.Errorf("malformed line [%s]", line)
}
command := strings.TrimSpace(items[0])
id := strings.TrimSpace(items[1])
ids[command] = id
}
return ids, nil
}
func (c *documentationCommand) dumpEntries(w io.Writer) error {
if len(c.super.subcmds) == 0 {
fmt.Printf("No commands found for %s", c.super.Name)
return nil
}
if !c.noIndex {
err := c.writeIndex(w)
if err != nil {
return fmt.Errorf("writing index: %w", err)
}
}
return c.writeSections(w, []string{c.super.Name}, true)
}
// writeSections (recursively) writes sections for all commands to the given file.
func (c *documentationCommand) writeSections(w io.Writer, superCommands []string, printDefaultCommands bool) error {
sorted := c.getSortedListCommands()
for _, name := range sorted {
if !printDefaultCommands && isDefaultCommand(name) {
continue
}
ref := c.super.subcmds[name]
commandSeq := append(superCommands, name)
// This is a bit messy, because we want to keep the order of the
// documentation the same.
sc, isSuperCommand := ref.command.(*SuperCommand)
if !isSuperCommand || (isSuperCommand && !sc.SkipCommandDoc) {
if _, err := fmt.Fprintf(w, "%s", c.formatCommand(ref, true, commandSeq)); err != nil {
return err
}
}
// Handle subcommands
if !isSuperCommand {
continue
}
if err := sc.documentation.writeSections(w, commandSeq, false); err != nil {
return err
}
}
return nil
}
// writeIndex writes the command index to the specified writer.
func (c *documentationCommand) writeIndex(w io.Writer) error {
_, err := fmt.Fprintf(w, "# Index\n")
if err != nil {
return err
}
listCommands := c.getSortedListCommands()
for id, name := range listCommands {
if isDefaultCommand(name) {
continue
}
_, err = fmt.Fprintf(w, "%d. [%s](%s)\n", id, name, c.linkForCommand(name))
if err != nil {
return err
}
// TODO: handle subcommands ??
}
_, err = fmt.Fprintf(w, "---\n\n")
return err
}
// Return the URL/location for the given command
func (c *documentationCommand) linkForCommand(cmd string) string {
prefix := "#"
if c.ids != nil {
prefix = "/t/"
}
if c.url != "" {
prefix = c.url + "/"
}
target, err := c.getTargetCmd(cmd)
if err != nil {
fmt.Printf("[ERROR] command [%s] has no id, please add it to the list\n", cmd)
return ""
}
return prefix + target
}
// formatCommand returns a string representation of the information contained
// by a command in Markdown format. The title param can be used to set
// whether the command name should be a title or not. This is particularly
// handy when splitting the commands in different files.
func (c *documentationCommand) formatCommand(ref commandReference, title bool, commandSeq []string) string {
formatted := ""
if title {
formatted = "# " + strings.ToUpper(strings.Join(commandSeq[1:], " ")) + "\n"
}
var info *Info
if ref.name == "documentation" {
info = c.Info()
} else {
info = ref.command.Info()
}
// See Also
if len(info.SeeAlso) > 0 {
formatted += "> See also: "
prefix := "#"
if c.ids != nil {
prefix = "/t/"
}
if c.url != "" {
prefix = c.url + "t/"
}
for i, s := range info.SeeAlso {
target, err := c.getTargetCmd(s)
if err != nil {
fmt.Println(err.Error())
}
formatted += fmt.Sprintf("[%s](%s%s)", s, prefix, target)
if i < len(info.SeeAlso)-1 {
formatted += ", "
}
}
formatted += "\n"
}
if ref.alias != "" {
formatted += "**Alias:** " + ref.alias + "\n"
}
if ref.check != nil && ref.check.Obsolete() {
formatted += "*This command is deprecated*\n"
}
formatted += "\n"
// Summary
formatted += "## Summary\n" + info.Purpose + "\n\n"
// Usage
if strings.TrimSpace(info.Args) != "" {
formatted += fmt.Sprintf(`## Usage
`+"```"+`%s [options] %s`+"```"+`
`, strings.Join(commandSeq, " "), info.Args)
}
// Options
formattedFlags := c.formatFlags(ref.command, info)
if len(formattedFlags) > 0 {
formatted += "### Options\n" + formattedFlags + "\n"
}
// Examples
examples := info.Examples
if strings.TrimSpace(examples) != "" {
formatted += "## Examples\n" + examples + "\n\n"
}
// Details
doc := EscapeMarkdown(info.Doc)
if strings.TrimSpace(doc) != "" {
formatted += "## Details\n" + doc + "\n\n"
}
formatted += c.formatSubcommands(info.Subcommands, commandSeq)
formatted += "---\n\n"
return formatted
}
// getTargetCmd is an auxiliary function that returns the target command or
// the corresponding id if available.
func (d *documentationCommand) getTargetCmd(cmd string) (string, error) {
// no ids were set, return the original command
if d.ids == nil {
return cmd, nil
}
target, found := d.ids[cmd]
if found {
return target, nil
} else {
// check if this is an alias
targetCmd, found := d.reverseAliases[cmd]
fmt.Printf("use alias %s -> %s\n", cmd, targetCmd)
if !found {
// if we're working with ids, and we have to mmake the translation,
// we need to have an id per every requested command
return "", fmt.Errorf("requested id for command %s was not found", cmd)
}
return targetCmd, nil
}
}
// formatFlags is an internal formatting solution similar to
// the gnuflag.PrintDefaults. The code is extended here
// to permit additional formatting without modifying the
// gnuflag package.
func (d *documentationCommand) formatFlags(c Command, info *Info) string {
flagsAlias := FlagAlias(c, "")
if flagsAlias == "" {
// For backward compatibility, the default is 'flag'.
flagsAlias = "flag"
}
f := gnuflag.NewFlagSetWithFlagKnownAs(info.Name, gnuflag.ContinueOnError, flagsAlias)
// if we are working with the documentation command,
// we have to set flags on a new instance, otherwise
// we will overwrite the current flag values
if info.Name != "documentation" {
c.SetFlags(f)
} else {
c = newDocumentationCommand(d.super)
c.SetFlags(f)
}
// group together all flags for a given value, meaning that flag which sets the same value are
// grouped together and displayed with the same description, as below:
//
// -s, --short, --alternate-string | default value | some description.
flags := make(map[interface{}]flagsByLength)
f.VisitAll(func(f *gnuflag.Flag) {
flags[f.Value] = append(flags[f.Value], f)
})
if len(flags) == 0 {
return ""
}
// sort the output flags by shortest name for each group.
// Caution: this mean that description/default value displayed in documentation will
// be the one of the shortest alias. Other will be discarded. Be careful to have the same default
// values between each alias, and put the description on the shortest alias.
var byName flagsByName
for _, fl := range flags {
sort.Sort(fl)
byName = append(byName, fl)
}
sort.Sort(byName)
formatted := "| Flag | Default | Usage |\n"
formatted += "| --- | --- | --- |\n"
for _, fs := range byName {
// Collect all flag aliases (usually a short one and a plain one, like -v / --verbose)
formattedFlags := ""
for i, f := range fs {
if i > 0 {
formattedFlags += ", "
}
if len(f.Name) == 1 {
formattedFlags += fmt.Sprintf("`-%s`", f.Name)
} else {
formattedFlags += fmt.Sprintf("`--%s`", f.Name)
}
}
// display all the flags aliases and the default value and description of the shortest one.
// Escape Markdown in description in order to display it cleanly in the final documentation.
formatted += fmt.Sprintf("| %s | %s | %s |\n", formattedFlags,
EscapeMarkdown(fs[0].DefValue),
strings.ReplaceAll(EscapeMarkdown(fs[0].Usage), "\n", " "),
)
}
return formatted
}
// flagsByLength is a slice of flags implementing sort.Interface,
// sorting primarily by the length of the flag, and secondarily
// alphabetically.
type flagsByLength []*gnuflag.Flag
func (f flagsByLength) Less(i, j int) bool {
s1, s2 := f[i].Name, f[j].Name
if len(s1) != len(s2) {
return len(s1) < len(s2)
}
return s1 < s2
}
func (f flagsByLength) Swap(i, j int) {
f[i], f[j] = f[j], f[i]
}
func (f flagsByLength) Len() int {
return len(f)
}
// flagsByName is a slice of slices of flags implementing sort.Interface,
// alphabetically sorting by the name of the first flag in each slice.
type flagsByName [][]*gnuflag.Flag
func (f flagsByName) Less(i, j int) bool {
return f[i][0].Name < f[j][0].Name
}
func (f flagsByName) Swap(i, j int) {
f[i], f[j] = f[j], f[i]
}
func (f flagsByName) Len() int {
return len(f)
}
// EscapeMarkdown returns a copy of the input string, in which any special
// Markdown characters (e.g. < > |) are escaped.
func EscapeMarkdown(raw string) string {
escapeSeqs := map[rune]string{
'<': "<",
'>': ">",
'&': "&",
'|': "|",
}
var escaped strings.Builder
escaped.Grow(len(raw))
lines := strings.Split(raw, "\n")
for i, line := range lines {
if strings.HasPrefix(line, " ") {
// Literal code block - don't escape anything
escaped.WriteString(line)
} else {
// Keep track of whether we are inside a code span `...`
// If so, don't escape characters
insideCodeSpan := false
for _, c := range line {
if c == '`' {
insideCodeSpan = !insideCodeSpan
}
if !insideCodeSpan {
if escapeSeq, ok := escapeSeqs[c]; ok {
escaped.WriteString(escapeSeq)
continue
}
}
escaped.WriteRune(c)
}
}
if i < len(lines)-1 {
escaped.WriteRune('\n')
}
}
return escaped.String()
}
func (c *documentationCommand) formatSubcommands(subcommands map[string]string, commandSeq []string) string {
var output string
sorted := []string{}
for name := range subcommands {
if isDefaultCommand(name) {
continue
}
sorted = append(sorted, name)
}
sort.Strings(sorted)
if len(sorted) > 0 {
output += "## Subcommands\n"
for _, name := range sorted {
output += fmt.Sprintf("- [%s](%s)\n", name,
c.linkForCommand(strings.Join(append(commandSeq[1:], name), "_")))
}
output += "\n"
}
return output
}