#!/usr/bin/python
import re
def get_config_key_descriptions():
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 = []
with open("../src/main/java/org/traccar/config/Keys.java", "r") as f:
code = f.read()
config = re.findall(
r"(/\*\*.*?\*/)\n\s+(public static final Config.*?;)", code, re.DOTALL
)
for i in config:
try:
key_match = key_match_re.search(i[1])
if key_match:
description = "
".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"""
{description}{f"
Default: {default}." if default else ""}