source: rtems-central/rtemsqual/glossary.py @ 9144b6b

Last change on this file since 9144b6b was 9144b6b, checked in by Sebastian Huber <sebastian.huber@…>, on 03/17/20 at 14:50:14

content: Make lines for definition item

  • Property mode set to 100644
File size: 5.5 KB
Line 
1# SPDX-License-Identifier: BSD-2-Clause
2""" This module provides functions for glossary of terms generation. """
3
4# Copyright (C) 2019, 2020 embedded brains GmbH (http://www.embedded-brains.de)
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in the
13#    documentation and/or other materials provided with the distribution.
14#
15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25# POSSIBILITY OF SUCH DAMAGE.
26
27import glob
28import re
29from typing import Dict
30
31from rtemsqual.content import MacroToSphinx, SphinxContent
32from rtemsqual.items import Item, ItemCache
33
34ItemMap = Dict[str, Item]
35
36
37def _gather_glossary_groups(item: Item, glossary_groups: ItemMap) -> None:
38    for child in item.children:
39        _gather_glossary_groups(child, glossary_groups)
40    if item["type"] == "glossary" and item["glossary-type"] == "group":
41        glossary_groups[item.uid] = item
42
43
44def _gather_glossary_terms(item: Item, glossary_terms: ItemMap) -> None:
45    for child in item.children:
46        _gather_glossary_terms(child, glossary_terms)
47    if item["type"] == "glossary" and item["glossary-type"] == "term":
48        glossary_terms[item.uid] = item
49
50
51def _generate_glossary_content(terms: ItemMap) -> SphinxContent:
52    content = SphinxContent()
53    content.add_header("Glossary", level="*")
54    content.add_blank_line()
55    content.add_line(".. glossary::")
56    content.add_line(":sorted:", indent=1)
57    macro_to_sphinx = MacroToSphinx()
58    macro_to_sphinx.set_terms(terms)
59    for item in sorted(terms.values(),
60                       key=lambda x: x["glossary-term"].lower()):
61        text = macro_to_sphinx.substitute(item["text"].strip())
62        content.register_license(item["SPDX-License-Identifier"])
63        for statement in item["copyrights"]:
64            content.register_copyright(statement)
65        content.add_definition_item(item["glossary-term"], text, indent=1)
66    content.add_licence_and_copyrights()
67    return content
68
69
70def _make_glossary_term_uid(term: str) -> str:
71    return ("RTEMS-GLOS-TERM-" +
72            re.sub(r"[^a-zA-Z0-9]+", "", term.replace("+", "X")).upper())
73
74
75def _find_glossary_terms(path: str, document_terms: ItemMap,
76                         project_terms: ItemMap) -> None:
77    for src in glob.glob(path + "/**/*.rst", recursive=True):
78        if src.endswith("glossary.rst"):
79            continue
80        with open(src, "r") as out:
81            for term in re.findall(":term:`([^`]+)`", out.read()):
82                uid = _make_glossary_term_uid(term)
83                document_terms[uid] = project_terms[uid]
84
85
86def _resolve_glossary_term(document_terms: ItemMap, project_terms: ItemMap,
87                           term: Item) -> None:
88    for match in re.findall(r"@@|@([a-z]+){([^}]+)}", term["text"]):
89        if match[1] and match[1] not in document_terms:
90            new_term = project_terms[match[1]]
91            document_terms[match[1]] = new_term
92            _resolve_glossary_term(document_terms, project_terms, new_term)
93
94
95def _resolve_glossary_terms(document_terms: ItemMap,
96                            project_terms: ItemMap) -> None:
97    for term in list(document_terms.values()):
98        _resolve_glossary_term(document_terms, project_terms, term)
99
100
101def _generate_project_glossary(target: str, project_terms: ItemMap) -> None:
102    if target:
103        content = _generate_glossary_content(project_terms)
104        content.write(target)
105
106
107def _generate_document_glossary(config: dict, project_terms: ItemMap) -> None:
108    document_terms = {}  # type: ItemMap
109    for path in config["rest-source-paths"]:
110        _find_glossary_terms(path, document_terms, project_terms)
111    _resolve_glossary_terms(document_terms, project_terms)
112    content = _generate_glossary_content(document_terms)
113    content.write(config["target"])
114
115
116def generate(config: dict, item_cache: ItemCache) -> None:
117    """
118    Generates glossaries of terms according to the configuration.
119
120    :param config: A dictionary with configuration entries.
121    :param item_cache: The specification item cache containing the glossary
122                       groups and terms.
123    """
124    groups = {}  # type: ItemMap
125    for item in item_cache.top_level.values():
126        _gather_glossary_groups(item, groups)
127
128    project_terms = {}  # type: ItemMap
129    for group in config["project-groups"]:
130        _gather_glossary_terms(groups[group], project_terms)
131
132    _generate_project_glossary(config["project-target"], project_terms)
133
134    for document_config in config["documents"]:
135        _generate_document_glossary(document_config, project_terms)
Note: See TracBrowser for help on using the repository browser.