colmena/manual/preprocess.py

74 lines
1.9 KiB
Python
Raw Normal View History

2021-11-18 22:15:20 +01:00
# Markdown preprocessor
#
# 1. Removes marked blocks from markdown files
# (unstable-only text from stable versions and vice versa)
# 2. Substitutes @version@ in text with the full version
# 3. Substitutes @apiVersion@ in text with major.minor
#
# Environment:
# - COLMENA_VERSION=${fullVersion}
# - COLMENA_UNSTABLE="1" or unset
import json
import os
import re
import sys
2022-06-25 02:34:37 +02:00
2021-11-18 22:15:20 +01:00
def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
2022-06-25 02:34:37 +02:00
2021-11-18 22:15:20 +01:00
def process(book, version, unstable):
marker_to_remove = "STABLE" if unstable else "UNSTABLE"
2022-06-25 02:34:37 +02:00
api_version = re.match(r"^[0-9]+\.[0-9]+(?=$|\.[0-9]+(.*)?$)", version)
2021-11-18 22:15:20 +01:00
if api_version:
api_version = api_version.group()
else:
api_version = version
2022-06-25 02:34:37 +02:00
version_debug = f"{version} " \
f"(apiVersion={api_version}, unstable={str(unstable)})"
2021-11-18 22:15:20 +01:00
def replace_version_markers(s):
s = s.replace("@version@", version)
s = s.replace("@apiVersion@", api_version)
return s
def process_item(item):
chapter = item["Chapter"]
for sub_item in chapter["sub_items"]:
process_item(sub_item)
2022-06-25 02:34:37 +02:00
regex = r".*\b{marker}_BEGIN\b(.|\n|\r)*?\b{marker}_END\b.*" \
.format(marker=marker_to_remove)
2021-11-18 22:15:20 +01:00
2022-06-25 02:34:37 +02:00
chapter["content"] = \
f"<!-- Generated from version {version_debug} -->\n" \
+ replace_version_markers(re.sub(regex, "", chapter["content"]))
2021-11-18 22:15:20 +01:00
eprint(f"Version is {version_debug}")
for section in book['sections']:
process_item(section)
2022-06-25 02:34:37 +02:00
2021-11-18 22:15:20 +01:00
if __name__ == "__main__":
if len(sys.argv) > 1:
if sys.argv[1] == "supports":
sys.exit(0)
version = os.environ.get("COLMENA_VERSION", "unstable")
unstable = bool(os.environ.get("COLMENA_UNSTABLE", ""))
2022-06-25 02:34:37 +02:00
if version in ["", "unstable"]:
2021-11-18 22:15:20 +01:00
unstable = True
context, book = json.load(sys.stdin)
process(book, version, unstable)
print(json.dumps(book))