aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2022-01-01 09:47:43 -0800
committerGitHub <noreply@github.com>2022-01-01 09:47:43 -0800
commit605374f7e8ef48b4bf6de445d536378f6be9ae1c (patch)
treefa52b1b7b868e4ab0efbe1aabde46693487bfc64
parent8e36f5f968d5371080d9901403a16ea48fd2f3eb (diff)
parent3690950850c388373870dd973ec12e1b8412ec0f (diff)
downloadtrackermap-server-605374f7e8ef48b4bf6de445d536378f6be9ae1c.tar.gz
trackermap-server-605374f7e8ef48b4bf6de445d536378f6be9ae1c.tar.bz2
trackermap-server-605374f7e8ef48b4bf6de445d536378f6be9ae1c.zip
Merge pull request #4788 from sunhoww/doc-scripts
Generate config keys as pug
-rw-r--r--tools/gen_config_doc.py93
1 files changed, 69 insertions, 24 deletions
diff --git a/tools/gen_config_doc.py b/tools/gen_config_doc.py
index e309da942..98266386e 100644
--- a/tools/gen_config_doc.py
+++ b/tools/gen_config_doc.py
@@ -2,56 +2,101 @@
import re
import os
-
+import argparse
_KEYS_FILE = os.path.join(
os.path.dirname(__file__), "../src/main/java/org/traccar/config/Keys.java"
)
-def get_config_key_descriptions():
+
+def get_config_keys():
+ """Parses Keys.java to extract keys to be used in configuration files
+
+ Args: None
+
+ Returns:
+ list: A list of dict containing the following keys -
+ 'key': A dot separated name of the config key
+ 'description': A list of str
+ """
desc_re = re.compile(r"(/\*\*\n|\s+\*/|\s+\*)")
key_match_re = re.compile(r"\(\n(.+)\);", re.DOTALL)
key_split_re = re.compile(r",\s+", re.DOTALL)
- snippets = []
+ keys = []
with open(_KEYS_FILE, "r") as f:
- code = f.read()
config = re.findall(
- r"(/\*\*.*?\*/)\n\s+(public static final Config.*?;)", code, re.DOTALL
+ r"(/\*\*.*?\*/)\n\s+(public static final Config.*?;)", f.read(), re.DOTALL
)
for i in config:
try:
key_match = key_match_re.search(i[1])
if key_match:
- description = "<br /> ".join(
- [
- x.strip().replace("\n", "")
- for x in desc_re.sub("\n", i[0]).strip().split("\n\n")
- ]
- )
terms = [x.strip() for x in key_split_re.split(key_match.group(1))]
key = terms[0].replace('"', "")
- default = terms[2] if len(terms) == 3 else None
- snippets.append(
- f""" <div class="card mt-3">
+ description = [
+ x.strip().replace("\n", "")
+ for x in desc_re.sub("\n", i[0]).strip().split("\n\n")
+ ]
+ if len(terms) == 3:
+ description.append(f"Default: {terms[2]}")
+ keys.append(
+ {
+ "key": key,
+ "description": description,
+ }
+ )
+ except IndexError:
+ # will continue if key_match.group(1) or terms[0] does not exist
+ # for some reason
+ pass
+
+ return keys
+
+
+def get_html():
+ return ("\n").join(
+ [
+ f""" <div class="card mt-3">
<div class="card-body">
<h5 class="card-title">
- {key} <span class="badge badge-dark">config</span>
+ {x["key"]} <span class="badge badge-dark">config</span>
</h5>
<p class="card-text">
- {description}{f"<br/ > Default: {default}." if default else ""}
+ {"<br /> ".join(x["description"])}
</p>
</div>
</div>"""
- )
- except IndexError:
- # will continue if key_match.group(1) or terms[0] does not exist
- # for some reason
- pass
+ for x in get_config_keys()
+ ]
+ )
+
- return ("\n").join(snippets)
+def get_pug():
+ return ("\n").join(
+ [
+ f""" div(class='card mt-3')
+ div(class='card-body')
+ h5(class='card-title') {x["key"]} #[span(class='badge badge-dark') config]
+ p(class='card-text') {"#[br] ".join(x["description"])}"""
+ for x in get_config_keys()
+ ]
+ )
if __name__ == "__main__":
- html = get_config_key_descriptions()
- print(html)
+ parser = argparse.ArgumentParser(
+ description="Parses Keys.java to extract keys to be used in configuration files"
+ )
+ parser.add_argument(
+ "--format", choices=["pug", "html"], default="pug", help="default: 'pug'"
+ )
+ args = parser.parse_args()
+
+ def get_output():
+ if args.format == 'html':
+ return get_html()
+
+ return get_pug()
+
+ print(get_output()) \ No newline at end of file