forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add feature to convert json schema to markdown table (autowaref…
…oundation#4656) * feat: add feature to convert json schema to markdown table Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> * fix: fix typo Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> * style(pre-commit): autofix * fix: rename main.py and add some comments for the file Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> * style(pre-commit): autofix * fix: use simplified symbols for minimum and maximum Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> * fix: Capitalize the first letter in columns' headers Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> --------- Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8e6d440
commit 63033be
Showing
3 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import json | ||
|
||
from tabulate import tabulate | ||
|
||
# This file is for defining macros for mkdocs-macros plugin | ||
# Check https://mkdocs-macros-plugin.readthedocs.io/en/latest/macros/ for the details | ||
|
||
|
||
def format_param_type(param_type): | ||
if param_type == "number": | ||
return "float" | ||
else: | ||
return param_type | ||
|
||
|
||
def format_param_range(param): | ||
list_of_range = [] | ||
if "enum" in param.keys(): | ||
list_of_range.append(param["enum"]) | ||
if "minimum" in param.keys(): | ||
list_of_range.append("≥" + str(param["minimum"])) | ||
if "exclusiveMinimum" in param.keys(): | ||
list_of_range.append(">" + str(param["exclusiveMinimum"])) | ||
if "maximum" in param.keys(): | ||
list_of_range.append("≤" + str(param["maximum"])) | ||
if "exclusiveMaximum" in param.keys(): | ||
list_of_range.append("<" + str(param["exclusiveMaximum"])) | ||
if "exclusive" in param.keys(): | ||
list_of_range.append("≠" + str(param["exclusive"])) | ||
|
||
if len(list_of_range) == 0: | ||
return "N/A" | ||
else: | ||
range_in_text = "" | ||
for item in list_of_range: | ||
if range_in_text != "": | ||
range_in_text += "<br/>" | ||
range_in_text += str(item) | ||
return range_in_text | ||
|
||
|
||
def extract_parameter_info(parameters, namespace=""): | ||
params = [] | ||
for k, v in parameters.items(): | ||
if v["type"] != "object": | ||
param = {} | ||
param["Name"] = namespace + k | ||
param["Type"] = format_param_type(v["type"]) | ||
param["Description"] = v["description"] | ||
param["Default"] = v["default"] | ||
param["Range"] = format_param_range(v) | ||
params.append(param) | ||
else: # if the object is namespace, then dive deeper in to json value | ||
params.extend(extract_parameter_info(v["properties"], k + ".")) | ||
return params | ||
|
||
|
||
def format_json(json_data): | ||
parameters = list(json_data["definitions"].values())[0]["properties"] | ||
# cspell: ignore tablefmt | ||
markdown_table = tabulate(extract_parameter_info(parameters), headers="keys", tablefmt="github") | ||
return markdown_table | ||
|
||
|
||
def define_env(env): | ||
@env.macro | ||
def json_to_markdown(json_schema_file_path): | ||
with open(json_schema_file_path) as f: | ||
data = json.load(f) | ||
return format_json(data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters