-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathdumpmd.go
More file actions
399 lines (338 loc) · 8.77 KB
/
Copy pathdumpmd.go
File metadata and controls
399 lines (338 loc) · 8.77 KB
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
//go:build dumpmd
package main
import (
"fmt"
"io"
"os"
"slices"
"sort"
"strings"
"github.com/alecthomas/kong"
"go.abhg.dev/gs/internal/cli/shorthand"
)
// dumpMarkdownCmd is a hidden commnad that dumps
// a Markdown reference to stdout and exit.
type dumpMarkdownCmd struct {
Ref string `name:"ref" help:"Output file for command reference."`
Shorthands string `name:"shorthands" help:"Output file for shorthands table."`
}
func (cmd *dumpMarkdownCmd) Run(app *kong.Kong, shorts *shorthand.BuiltinSource) (err error) {
ref, err := os.Create(cmd.Ref)
if err != nil {
return err
}
defer func() { _ = ref.Close() }()
if help := app.Model.HelpFlag; help != nil {
help.Help = "Show help for the command"
help.Group = &kong.Group{
Key: "globals",
Title: "Global Flags:",
}
}
d := cliDumper{w: ref}
d.dump(app.Model)
if cmd.Shorthands != "" {
f, err := os.Create(cmd.Shorthands)
if err != nil {
return err
}
defer func() { _ = f.Close() }()
dumpShorthands(f, shorts)
}
return nil
}
func dumpShorthands(w io.Writer, shorts *shorthand.BuiltinSource) {
keys := slices.Sorted(shorts.Keys())
var t table
t.appendHeaders("Shorthand", "Long form")
for _, key := range keys {
cmd := cmdFullNameWithPrefix(shorts.Node(key), "gs")
link := fmt.Sprintf("[%v](/cli/reference.md#%v)", cmd, strings.ReplaceAll(cmd, " ", "-"))
t.addRow("gs "+key, link)
}
t.dump(w)
}
type table struct {
headers []string
rows [][]string
headerColumn bool
}
func (t *table) appendHeaders(headers ...string) {
t.headers = append(t.headers, headers...)
}
func (t *table) addRow(row ...string) {
t.rows = append(t.rows, row)
}
func (t *table) dump(w io.Writer) {
fmt.Fprint(w, "|")
for _, h := range t.headers {
fmt.Fprintf(w, " **%s** |", h)
}
fmt.Fprintln(w)
fmt.Fprintln(w, "|", strings.Repeat(" --- |", len(t.headers)))
for _, row := range t.rows {
if t.headerColumn {
row[0] = "**" + row[0] + "**"
}
fmt.Fprintln(w, "|", strings.Join(row, " | "), "|")
}
}
type cliDumper struct {
w io.Writer
}
func (cmd *cliDumper) dump(app *kong.Application) {
// H1 is filled by the Markdown file that includes the result.
var groupKeys, groupTitles []string
cmdByGroup := make(map[string][]*kong.Node)
for _, subcmd := range app.Leaves(true) {
var key, title string
if grp := subcmd.ClosestGroup(); grp != nil {
key = grp.Key
title = grp.Title
}
if _, ok := cmdByGroup[key]; !ok {
groupKeys = append(groupKeys, key)
groupTitles = append(groupTitles, title)
}
cmdByGroup[key] = append(cmdByGroup[key], subcmd)
}
cmd.println("```")
cmd.println("git-spice" + app.Summary())
cmd.println("```")
cmd.println()
if app.Help != "" {
cmd.println(app.Help)
cmd.println()
}
if app.Detail != "" {
cmd.println(app.Detail)
cmd.println()
}
cmd.dumpFlags("Global flags", app.Flags)
cmd.dumpConfigFooter(app.Node)
for i, key := range groupKeys {
lvl := 2
title := groupTitles[i]
if title != "" {
cmd.header(lvl, title)
lvl++
}
for _, subcmd := range cmdByGroup[key] {
cmd.dumpCommand(subcmd, lvl)
}
}
}
func (cmd cliDumper) dumpCommand(node *kong.Node, level int) {
if node.Hidden {
return
}
cmd.header(level, fmt.Sprintf("%s {#%s}", cmdFullName(node), cmdLegacyAnchor(node)))
cmd.println("```")
cmd.println("gs " + node.Summary())
cmd.println("```")
cmd.println()
// Badges all on one line:
var hasBadge bool
if version := node.Tag.Get("released"); version != "" {
hasBadge = true
icon := ":material-tag:"
text := version
href := fmt.Sprintf("/changelog.md#%s", version)
if version == "unreleased" {
icon = ":material-tag-hidden:"
text = "Unreleased"
href = ""
}
cmd.printf(`<span class="mdx-badge">`)
cmd.printf(`<span class="mdx-badge__icon">`)
cmd.printf(`%s{ title="Released in version" }`, icon)
cmd.printf(`</span>`)
cmd.printf(`<span class="mdx-badge__text">`)
if href != "" {
cmd.printf("[%s](%s)", text, href)
} else {
cmd.printf("%s", text)
}
cmd.printf(`</span>`)
cmd.printf("</span>")
}
if experiment := node.Tag.Get("experiment"); experiment != "" {
hasBadge = true
icon := ":material-test-tube:"
text := experiment
href := fmt.Sprintf("/cli/experiments.md#%s", strings.ToLower(experiment))
cmd.printf(`<span class="mdx-badge mdx-badge--experiment">`)
cmd.printf(`<span class="mdx-badge__icon">`)
cmd.printf(`%s{ title="Experimental" }`, icon)
cmd.printf(`</span>`)
cmd.printf(`<span class="mdx-badge__text">`)
cmd.printf("[%s](%s)", text, href)
cmd.printf(`</span>`)
cmd.printf(`</span>`)
}
if hasBadge {
cmd.println()
cmd.println()
}
if node.Help != "" {
cmd.println(node.Help)
cmd.println()
}
if node.Detail != "" {
cmd.println(node.Detail)
cmd.println()
}
if len(node.Positional) > 0 {
cmd.print("**Arguments**\n\n")
for _, arg := range node.Positional {
cmd.dumpArg(arg)
}
cmd.println()
}
if len(node.Flags) > 0 {
// TODO: flag groups
cmd.dumpFlags("Flags", node.Flags)
}
cmd.dumpConfigFooter(node)
for _, child := range node.Children {
cmd.dumpCommand(child, level+1)
}
}
func (cmd cliDumper) dumpConfigFooter(node *kong.Node) {
var configKeys []string
for _, flag := range node.Flags {
if flag.Tag.Has("deprecated") {
continue
}
key := flag.Tag.Get("config")
if key == "" || key[0] == '@' {
// "@" is for git configuration keys.
continue
}
configKeys = append(configKeys, key)
}
if len(configKeys) == 0 {
return
}
cmd.print("**Configuration**:")
defer cmd.printf("\n\n")
sort.Strings(configKeys)
for i, key := range configKeys {
key := "spice." + key
id := strings.ToLower(strings.ReplaceAll(key, ".", ""))
if i > 0 {
cmd.print(",")
}
cmd.printf(" [%v](/cli/config.md#%s)", key, id)
}
}
func (cmd cliDumper) dumpArg(arg *kong.Positional) {
cmd.printf("* `%s`: %s\n", arg.Name, arg.Help)
}
func (cmd cliDumper) dumpFlags(header string, flags []*kong.Flag) {
var wroteHeader bool
for _, flag := range flags {
if flag.Hidden {
continue
}
if !wroteHeader {
cmd.printf("**%s**\n\n", header)
wroteHeader = true
}
cmd.dumpFlag(flag)
}
if wroteHeader {
cmd.println()
}
}
func (cmd cliDumper) dumpFlag(flag *kong.Flag) {
name := flag.Name
cmd.print("* ")
// short flag
if flag.Short != 0 {
cmd.printf("`-%c`, ", flag.Short)
}
// long flag
cmd.print("`--")
if flag.IsBool() && flag.Tag.Negatable != "" {
// Value is "_" for "--no-<flag>",
// and anything else for "--<neg>".
if flag.Tag.Negatable == "_" {
cmd.print("[no-]")
} else {
// Don't need this yet, so don't bother.
panic("not yet implemented")
}
}
cmd.print(name)
// =value
if !flag.IsBool() && !flag.IsCounter() {
cmd.printf("=%s", flag.FormatPlaceHolder())
}
cmd.printf("`")
// If the flag can be set with an environment variable,
// mention that here.
if env := flag.Tag.Get("env"); env != "" {
cmd.printf(", `$%s`", env)
}
// If the flag can also be set by configuration,
// add a link to /cli/config.md#<key>.
// This will ensure all configuration keys are documented.
if key := flag.Tag.Get("config"); key != "" {
key = "spice." + key
anchor := strings.ToLower(strings.ReplaceAll(key, ".", ""))
cmd.printf(" ([:material-wrench:{ .middle title=%q }](/cli/config.md#%s))", key, anchor)
}
cmd.printf(": %s", flag.Help)
// If the flag specifies when it was released, include that too.
if version := flag.Tag.Get("released"); version != "" {
icon := ":material-tag:"
text := version
href := fmt.Sprintf("/changelog.md#%s", version)
if version == "unreleased" {
icon = ":material-tag-hidden:"
text = "Unreleased"
href = ""
}
cmd.printf(` <span class="mdx-badge">`)
cmd.printf(`<span class="mdx-badge__icon">`)
cmd.printf(`%s{ title="Released in version" }`, icon)
cmd.printf(`</span>`)
cmd.printf(`<span class="mdx-badge__text">`)
if href != "" {
cmd.printf("[%s](%s)", text, href)
} else {
cmd.printf("%s", text)
}
cmd.printf(`</span>`)
}
cmd.println()
}
func (cmd cliDumper) header(level int, text string) {
cmd.printf("%s %s\n\n", strings.Repeat("#", level), text)
}
func (cmd cliDumper) println(args ...interface{}) {
fmt.Fprintln(cmd.w, args...)
}
func (cmd cliDumper) print(args ...interface{}) {
fmt.Fprint(cmd.w, args...)
}
func (cmd cliDumper) printf(format string, args ...interface{}) {
fmt.Fprintf(cmd.w, format, args...)
}
func cmdFullName(node *kong.Node) string {
return cmdFullNameWithPrefix(node, "git-spice")
}
func cmdLegacyAnchor(node *kong.Node) string {
full := cmdFullNameWithPrefix(node, "gs")
return strings.ReplaceAll(full, " ", "-")
}
func cmdFullNameWithPrefix(node *kong.Node, prefix string) string {
var parts []string
for n := node; n != nil && n.Type == kong.CommandNode; n = n.Parent {
parts = append(parts, n.Name)
}
parts = append(parts, prefix)
slices.Reverse(parts)
return strings.Join(parts, " ")
}