summaryrefslogtreecommitdiff
path: root/genexportsdoc.py
blob: ecbfd8de8247358f7bb294130b1b9f9ebf069b11 (plain)
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
#!/usr/bin/env python3

import subprocess

cmd = ["go", "doc", "--all", "exports"]

output = subprocess.check_output(cmd).decode("utf-8")

section = [""]
package_doc = ""

in_section = True

num = 0
for out in output.splitlines():
    line = out + "\n"
    if line.startswith(" "):
        line = line[4:]
    if out.startswith("FUNCTIONS") or out.startswith("VARIABLES"):
        in_section = False
    if out.startswith("func"):
        in_section = True
        section.append(line)
        num += 1
        continue
    if in_section:
        section[num] += line


def func_name(signature: str) -> str:
    idx = signature.index("(")
    return signature[len("func ") : idx]


toc = ""
first = True

gen_sections = []
for sec in section:
    if first:
        gen_sections.append(("About the API", sec))
        first = False
        continue
    lines = sec.splitlines()

    # parse multi-line function names
    # detect end of line if we get a )
    # hacky but works for our use case
    signature_len = 1
    for line in lines:
        if not ")" in line:
            signature_len += 1
        else:
            break
    signature, doc = "\n".join(lines[:signature_len]), "\n".join(lines[signature_len:])
    body = f"Signature:\n\n```go\n{signature}\n```\n\n{doc}"
    gen_sections.append((func_name(signature), body))

data = "This document was automatically generated from the exports/exports.go file\n\n"
first = True
for title, body in gen_sections:
    if first:
        data += f"# {title}\n"
        data += f"{body}\n"
        data += "# Functions\n"
        first = False
        continue
    data += f"## {title}\n"
    data += f"{body}\n"

with open("docs/md/apidocs.md", "w+") as f:
    f.write(data)