Docs: add script that sorts wxStyledTextCtrl into categories

This commit is contained in:
neofelis2X
2025-02-01 15:19:10 +01:00
parent 0260250cea
commit c6311b6332
2 changed files with 249 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
import etgtools
import etgtools.tweaker_tools as tools
import sphinxtools.stc_doc_postprocess as postprocess
PACKAGE = "wx"
MODULE = "_stc"
@@ -259,6 +260,7 @@ def run():
#-----------------------------------------------------------------
tools.doCommonTweaks(module)
tools.runGenerators(module)
postprocess.categorise_methods()

View File

@@ -0,0 +1,247 @@
# -*- coding: utf-8 -*-
#---------------------------------------------------------------------------
# Name: sphinxtools/stc_doc_postprocess.py
# Author: Matthias (neofelis2X)
#
# Created: 27-Jan-2025
# Copyright: (c) 2010-2025
# License: wxWindows License
#---------------------------------------------------------------------------
"""
This script postprocesses the ReST documentation file of the
wx.stc.StyledTextCtrl class. This class has more than 760 methods,
so the 'Method Summary' is sorted into categories.
"""
import os
import xml.etree.ElementTree as ET
from sphinxtools.constants import XMLSRC, SPHINXROOT
STC_CLASS_XML = os.path.join(XMLSRC, "classwx_styled_text_ctrl.xml")
STC_RST = os.path.join(SPHINXROOT, "wx.stc.StyledTextCtrl.txt")
TBL_SEP = "======================================================" + \
"========================== ===========================" + \
"=====================================================\n"
def _parse_method_categories(xml_file: str):
"""
Parses values from an xml file containing categories, method
names and occasional additional category descriptions.
"""
tree = ET.parse(xml_file)
root = tree.getroot()
method_mapping = {}
current_category = "empty"
current_pretty = "Empty"
description = ''
new_header = False
for elem in root.iter():
if elem.tag == 'listofallmembers':
break
if elem.tag == "header" and isinstance(elem.text, str):
if "Raw variants" in elem.text:
current_category = "Raw Variants"
current_pretty = "Raw Variants"
else:
current_category = elem.text
current_pretty = _clean_category_title(current_category)
description = ''
new_header = True
elif elem.tag == "description" and new_header:
para = elem.findall("para")
description = _parse_description(para)
new_header = False
elif elem.tag == "name":
method_mapping[elem.text] = (current_pretty, description)
return method_mapping
def _parse_description(para):
"""
Goes through some extra steps to parse method descriptions from references.
"""
description = ''
if len(para) > 1:
txt = para[1].itertext()
sect = para[1].findall("simplesect")
if len(sect):
description = "".join(txt).split('(', maxsplit=1)[0].strip()
description = f".. seealso:: :meth:`~wx.stc.StyledTextCtrl.{description}`"
else:
description = "".join(txt).strip()
return description
def _parse_stcdoc_segments(file: str):
"""
Read the reStructuredText file and split relevant parts into textblocks.
"""
m_count = 0 # Count the collected methods
pretext = '' # All text before the 'Method Summary'
parse_pretext = True
links = [] #
index_links_done = False
methods = {}
current_method = ''
parse_methods = False
posttext = '' # All text after the 'Method Summary'
parse_posttext = False
with open(file, 'r', encoding="utf-8") as f:
for line in f:
if parse_posttext:
posttext += line
elif not index_links_done and line.startswith("- `"):
# Rewrite index links
new_link = line.split('<')[0].strip("-_ `")
new_link = _clean_category_title(new_link)
pretext += f"- `{new_link}`_\n"
links.append(new_link)
if "Constructors" in line:
awm = "Additional wxPython Methods"
pretext += f"- `{awm}`_\n"
links.append(awm)
elif "Text area methods" in line:
index_links_done = True
elif line.startswith(":meth:`~wx.stc.StyledTextCtrl."):
# Collect all methods from 'Method Summary'
m_count += 1
parse_pretext = False
parse_methods = True
current_method = line[30:].split('`')[0].strip()
if not current_method:
print("stc_doc_postprocess:: WARNING: Invalid method name")
else:
methods[current_method] = line
elif parse_methods and line.strip() == '|':
parse_methods = False
parse_posttext = True
posttext = '\n' + line
elif parse_pretext:
if not TBL_SEP.strip() in line:
pretext += line
# print(f"Debug: Read {m_count} methods from file.")
return (pretext, methods, posttext, links)
def _methods_to_categories(methods, mapping):
"""
Find the right category for each method. Around 20 methods are
unique in wxPython and will be put into their own group.
"""
grouped_methods = {}
for name, text in methods.items():
if name in ("__init__", "Create"):
category = "Constructors and Related Methods"
description = ''
text = text.replace("Ctor.", '')
elif name in mapping:
category = mapping[name][0]
description = mapping[name][1]
else:
category = "Additional wxPython Methods"
description = "In addition to the standard Scintilla " + \
"functions, wxPython includes the following " + \
"methods to better integrate better with other features."
if category in grouped_methods:
grouped_methods[category][0].append(text)
grouped_methods[category][1] = description
else:
grouped_methods[category] = [[text, ], '']
if description:
grouped_methods[category][1] = description
return grouped_methods
def _clean_category_title(raw_title):
"""
Applies proper title case to category titles.
"""
category_title = raw_title.strip().title().replace("And", "and")
category_title = category_title.replace("Wxstyledtextctrl", "wxStyledTextCtrl")
category_title = category_title.replace("Wxpython", "wxPython")
return category_title
def _assemble_method_category(category, cat_methods, cc):
"""
Assembles all method ReST directives that go into one category.
"""
group = ''
dashline = '-' * len(category)
group = f"\n{category}\n{dashline}\n\n"
if cat_methods[1]:
group += '\n' + cat_methods[1] + '\n\n'
group += TBL_SEP
for method in cat_methods[0]:
cc += 1
group += method
group += TBL_SEP + '\n'
return group, cc
def _output_reordered_doc(pretext, posttext, grouped_methods):
"""
Writes the formatted ReST to a file. Overwrites the original file.
"""
m_count = 0 # count the written methods
doc = pretext
for category, methods in grouped_methods.items():
cat, m_count = _assemble_method_category(category, methods, m_count)
doc += cat
doc += posttext
with open(STC_RST, 'w', encoding="utf-8") as f:
f.write(doc)
# print(f"Debug: Wrote {m_count} methods to new file.")
def categorise_methods():
"""
Loads the ReST file, categorises the method summary and saves a new file.
Thr original file is overwritten.
"""
mapping = _parse_method_categories(STC_CLASS_XML)
pre, methods, post, links = _parse_stcdoc_segments(STC_RST)
grouped_methods = _methods_to_categories(methods, mapping)
sorted_methods = {key: grouped_methods[key] for key in links}
_output_reordered_doc(pre, post, sorted_methods)
if __name__ == "__main__":
categorise_methods()