-
Notifications
You must be signed in to change notification settings - Fork 14
/
dumpmd.go
293 lines (242 loc) · 5.96 KB
/
dumpmd.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
//go:build dumpmd
package main
import (
"fmt"
"io"
"os"
"slices"
"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() }()
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 := cmdFullName(shorts.Node(key))
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("gs" + 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.print("**Global flags**\n\n")
for _, flag := range app.Flags {
cmd.dumpFlag(flag)
}
cmd.println()
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, cmdFullName(node))
cmd.println("```")
cmd.println("gs " + node.Summary())
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.print("**Flags**\n\n")
for _, flag := range node.Flags {
cmd.dumpFlag(flag)
}
cmd.println()
}
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 {
key := flag.Tag.Get("config")
if key == "" {
continue
}
configKeys = append(configKeys, key)
}
if len(configKeys) == 0 {
return
}
cmd.print("**Configuration**:")
defer cmd.printf("\n\n")
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) dumpFlag(flag *kong.Flag) {
if flag.Hidden {
return
}
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 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\n", flag.Help)
}
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 {
var parts []string
for n := node; n != nil && n.Type == kong.CommandNode; n = n.Parent {
parts = append(parts, n.Name)
}
parts = append(parts, "gs")
slices.Reverse(parts)
return strings.Join(parts, " ")
}