-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreatedoc.py
181 lines (150 loc) · 6.26 KB
/
createdoc.py
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
import json
import os
from mdutils.mdutils import MdUtils
input_folder = "schemas"
output_folder = "docs"
# markdown_filename =
ObjTypeDesc = {
"object": "AFrame 3D Object",
"program": "ARENA program data",
"scene-options": "ARENA scene options",
"landmarks": "ARENA landmarks",
"camera-override": "ARENA camera override data",
}
class Table:
heading = ["Attribute", "Type", "Default", "Description", "Required"]
cols = type("Columns", (object,), {"ATTR": 0, "TYPE": 1, "DFT": 2, "DESC": 3, "REQ": 4})()
def format_value(obj, value):
type = "object"
if "type" in obj:
type = obj["type"]
if type == "string":
return f"```'{value}'```"
return f"```{value}```"
def object_table(mdFile, md_title, obj, definitions={}):
prop_list = {}
if "properties" in obj:
prop_list.update(obj["properties"])
if "patternProperties" in obj:
prop_list.update(obj["patternProperties"])
if prop_list == {}:
return
required = []
default = []
if "definitions" in obj:
definitions = obj["definitions"]
if "required" in obj:
required = obj["required"]
if "default" in obj:
default = obj["default"]
table_lines = Table.heading.copy()
for prop, prop_obj in prop_list.items():
line = [""] * 5
line[Table.cols.ATTR] = f"**{prop}**"
line[Table.cols.REQ] = "No"
if "type" in prop_obj:
line[Table.cols.TYPE] = prop_obj["type"]
if prop == "data":
line[Table.cols.DESC] = f"{md_title} object data properties as defined below"
line[Table.cols.REQ] = "Yes"
line[Table.cols.TYPE] = f"{md_title} data"
elif "default" in prop_obj:
line[Table.cols.DFT] = format_value(prop_obj, prop_obj["default"])
if "description" in prop_obj:
line[Table.cols.DESC] = prop_obj["description"].replace(" (derived from 'type' select above)", "")
elif "title" in prop_obj:
line[Table.cols.DESC] = prop_obj["title"]
else:
line[Table.cols.DESC] = prop
if "enum" in prop_obj:
if len(prop_obj["enum"]) == 1:
type = prop_obj["enum"][0]
if type in ObjTypeDesc:
line[Table.cols.DESC] = ObjTypeDesc[type]
line[Table.cols.TYPE] = f"{line[Table.cols.TYPE]}; Must be: ```{type}```"
line[Table.cols.DFT] = format_value(prop_obj, type)
else:
line[Table.cols.TYPE] = f'{line[Table.cols.TYPE]}; One of: ```{prop_obj["enum"]}```'
if prop in required:
line[Table.cols.REQ] = "Yes"
if prop in default:
line[Table.cols.DFT] = format_value(default, default[prop])
if "$ref" in prop_obj:
obj_name = prop_obj["$ref"][len("#/definitions/") :]
if obj_name in definitions and "description" in definitions[obj_name]:
line[Table.cols.DESC] = definitions[obj_name]["description"].split("\n")[0]
# else:
# line[Table.cols.DESC] = obj_name
line[Table.cols.TYPE] = f"[{obj_name}]({obj_name})"
if obj_name in definitions:
write_md(
definitions[obj_name],
os.path.join(output_folder, f"{obj_name}.md"),
overwrite=False,
wire_obj=False,
)
if "deprecated" in prop_obj:
for col in range(Table.cols.REQ + 1):
if line[col]:
line[col] = f"~~{line[col]}~~"
elif "type" in prop_obj and prop_obj["type"] == "object":
if "properties" in obj:
write_md(
obj["properties"][prop],
os.path.join(output_folder, f"{prop}.md"),
overwrite=True,
wire_obj=False,
)
table_lines.extend(line)
mdFile.new_table(
columns=len(Table.heading), rows=len(table_lines) // len(Table.heading), text=table_lines, text_align="left"
)
def write_md(json_obj, md_fn, overwrite=True, wire_obj=True):
if not overwrite:
if os.path.isfile(md_fn):
return
print("->", md_fn)
md_title = json_obj["title"]
mdFile = MdUtils(file_name=md_fn, title=md_title)
desc = md_title
if "description" in json_obj:
desc = json_obj["description"]
mdFile.new_paragraph(desc)
if wire_obj:
mdFile.new_paragraph(
"All wire objects have a set of basic attributes ```{object_id, action, type, persist, data}```. The ```data``` attribute defines the object-specific attributes"
)
mdFile.new_header(level=2, title=f"\n{md_title} Attributes", style="setext", add_table_of_contents="n")
object_table(mdFile, md_title, json_obj)
if "example" in json_obj:
mdFile.new_header(level=2, title=f"\n{md_title} Example", style="setext", add_table_of_contents="n")
mdFile.insert_code(code=json.dumps(json_obj["example"], indent=4), language="json")
if not "properties" in json_obj:
mdFile.create_md_file()
return
if not "data" in json_obj["properties"]:
mdFile.create_md_file()
return
mdFile.new_header(level=3, title=f"{md_title} Data Attributes", add_table_of_contents="n")
if "$ref" in json_obj["properties"]["data"]:
obj_name = json_obj["properties"]["data"]["$ref"][len("#/definitions/") :]
object_table(mdFile, md_title, json_obj["definitions"][obj_name], json_obj["definitions"])
else:
object_table(mdFile, md_title, json_obj["properties"]["data"], json_obj["definitions"])
mdFile.create_md_file()
def main():
dir = os.fsencode(input_folder)
for file in os.listdir(dir):
filename = os.fsdecode(file)
if filename.endswith(".json") and not filename.startswith("arena-schema-files"):
json_filename = os.path.join(input_folder, filename)
filename_noext = os.fsdecode(os.path.splitext(file)[0])
md_filename = os.path.join(output_folder, f"{filename_noext}.md")
with open(json_filename) as f:
json_obj = json.load(f)
write_md(json_obj, md_filename)
continue
else:
continue
if __name__ == "__main__":
main()