forked from ComPWA/qrules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: abbreviate type aliases in API
- Loading branch information
Showing
3 changed files
with
158 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
# pylint: disable=import-error, import-outside-toplevel | ||
# pyright: reportMissingImports=false | ||
"""Abbreviated the annotations generated by sphinx-autodoc. | ||
It's not necessary to generate the full path of type hints, because they are | ||
rendered as clickable links. | ||
See also https://github.com/sphinx-doc/sphinx/issues/5868. | ||
""" | ||
|
||
from typing import List | ||
|
||
import sphinx.domains.python | ||
from docutils import nodes | ||
from sphinx.addnodes import pending_xref | ||
from sphinx.environment import BuildEnvironment | ||
|
||
__TARGET_SUBSTITUTIONS = { | ||
"a set-like object providing a view on D's items": "typing.ItemsView", | ||
"a set-like object providing a view on D's keys": "typing.KeysView", | ||
"an object providing a view on D's values": "typing.ValuesView", | ||
"typing_extensions.Protocol": "typing.Protocol", | ||
} | ||
__REF_TYPE_SUBSTITUTIONS = { | ||
"None": "obj", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.baryon_number": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.bottomness": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.c_parity": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.charge": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.charmness": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.electron_lepton_number": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.g_parity": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.isospin_magnitude": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.isospin_projection": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.mass": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.muon_lepton_number": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.parity": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.pid": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.spin_magnitude": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.spin_projection": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.strangeness": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.tau_lepton_number": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.topness": "attr", | ||
"qrules.quantum_numbers.EdgeQuantumNumbers.width": "attr", | ||
"qrules.quantum_numbers.NodeQuantumNumbers.l_magnitude": "attr", | ||
"qrules.quantum_numbers.NodeQuantumNumbers.l_projection": "attr", | ||
"qrules.quantum_numbers.NodeQuantumNumbers.parity_prefactor": "attr", | ||
"qrules.quantum_numbers.NodeQuantumNumbers.s_magnitude": "attr", | ||
"qrules.quantum_numbers.NodeQuantumNumbers.s_projection": "attr", | ||
"qrules.topology.EdgeType": "obj", | ||
"qrules.topology.KeyType": "obj", | ||
"qrules.topology.ValueType": "obj", | ||
} | ||
|
||
|
||
try: # Sphinx >=4.4.0 | ||
# https://github.com/sphinx-doc/sphinx/blob/v4.4.0/sphinx/domains/python.py#L110-L133 | ||
from sphinx.addnodes import pending_xref_condition | ||
from sphinx.domains.python import parse_reftarget | ||
|
||
def _new_type_to_xref( | ||
target: str, | ||
env: BuildEnvironment = None, | ||
suppress_prefix: bool = False, | ||
) -> pending_xref: | ||
"""Convert a type string to a cross reference node.""" | ||
reftype, target, title, refspecific = parse_reftarget( | ||
target, suppress_prefix | ||
) | ||
target = __TARGET_SUBSTITUTIONS.get(target, target) | ||
reftype = __REF_TYPE_SUBSTITUTIONS.get(target, reftype) | ||
|
||
assert env is not None | ||
return pending_xref( | ||
"", | ||
*__create_nodes(env, title), | ||
refdomain="py", | ||
reftype=reftype, | ||
reftarget=target, | ||
refspecific=refspecific, | ||
**__get_env_kwargs(env), | ||
) | ||
|
||
except ImportError: # Sphinx <4.4.0 | ||
# https://github.com/sphinx-doc/sphinx/blob/v4.3.2/sphinx/domains/python.py#L83-L107 | ||
def _new_type_to_xref( | ||
target: str, | ||
env: BuildEnvironment = None, | ||
suppress_prefix: bool = False, | ||
) -> pending_xref: | ||
# pylint: disable=unused-argument | ||
"""Convert a type string to a cross reference node.""" | ||
if target == "None": | ||
reftype = "obj" | ||
else: | ||
reftype = "class" | ||
|
||
target = __TARGET_SUBSTITUTIONS.get(target, target) | ||
reftype = __REF_TYPE_SUBSTITUTIONS.get(target, reftype) | ||
|
||
assert env is not None | ||
return pending_xref( | ||
"", | ||
*__create_nodes(env, target), | ||
refdomain="py", | ||
reftype=reftype, | ||
reftarget=target, | ||
**__get_env_kwargs(env), | ||
) | ||
|
||
|
||
def __get_env_kwargs(env: BuildEnvironment) -> dict: | ||
if env: | ||
return { | ||
"py:module": env.ref_context.get("py:module"), | ||
"py:class": env.ref_context.get("py:class"), | ||
} | ||
return {} | ||
|
||
|
||
def __create_nodes(env: BuildEnvironment, title: str) -> List[nodes.Node]: | ||
short_name = title.split(".")[-1] | ||
if env.config.python_use_unqualified_type_names: | ||
return [ | ||
pending_xref_condition("", short_name, condition="resolved"), | ||
pending_xref_condition("", title, condition="*"), | ||
] | ||
return [nodes.Text(short_name)] | ||
|
||
|
||
def relink_references() -> None: | ||
sphinx.domains.python.type_to_xref = _new_type_to_xref |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters