Commit 1ac4cfb2 authored by Nícolas F. R. A. Prado's avatar Nícolas F. R. A. Prado Committed by Jonathan Corbet

docs: Allow multiple automarkup functions

The automarkup script previously matched expressions and substituted
them with markup to enable automatic cross-reference all in the same
function.

Split the expression matching iteration and the markup substitution into
different functions to make it easier to add new regular expressions and
functions to treat each of them.
Signed-off-by: default avatarNícolas F. R. A. Prado <nfraprado@protonmail.com>
Link: https://lore.kernel.org/r/20200911133339.327721-2-nfraprado@protonmail.comSigned-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent 78ff97eb
...@@ -36,40 +36,58 @@ Skipfuncs = [ 'open', 'close', 'read', 'write', 'fcntl', 'mmap', ...@@ -36,40 +36,58 @@ Skipfuncs = [ 'open', 'close', 'read', 'write', 'fcntl', 'mmap',
'select', 'poll', 'fork', 'execve', 'clone', 'ioctl', 'select', 'poll', 'fork', 'execve', 'clone', 'ioctl',
'socket' ] 'socket' ]
# def markup_refs(docname, app, node):
# Find all occurrences of C references (function() and struct/union/enum/typedef
# type_name) and try to replace them with appropriate cross references.
#
def markup_c_refs(docname, app, node):
class_str = {RE_function: 'c-func', RE_type: 'c-type'}
reftype_str = {RE_function: 'function', RE_type: 'type'}
cdom = app.env.domains['c']
t = node.astext() t = node.astext()
done = 0 done = 0
repl = [ ] repl = [ ]
# #
# Sort all C references by the starting position in text # Associate each regex with the function that will markup its matches
#
markup_func = {RE_type: markup_c_ref,
RE_function: markup_c_ref}
match_iterators = [regex.finditer(t) for regex in markup_func]
# #
sorted_matches = sorted(chain(RE_type.finditer(t), RE_function.finditer(t)), # Sort all references by the starting position in text
key=lambda m: m.start()) #
sorted_matches = sorted(chain(*match_iterators), key=lambda m: m.start())
for m in sorted_matches: for m in sorted_matches:
# #
# Include any text prior to match as a normal text node. # Include any text prior to match as a normal text node.
# #
if m.start() > done: if m.start() > done:
repl.append(nodes.Text(t[done:m.start()])) repl.append(nodes.Text(t[done:m.start()]))
#
# Call the function associated with the regex that matched this text and
# append its return to the text
#
repl.append(markup_func[m.re](docname, app, m))
done = m.end()
if done < len(t):
repl.append(nodes.Text(t[done:]))
return repl
#
# Try to replace a C reference (function() or struct/union/enum/typedef
# type_name) with an appropriate cross reference.
#
def markup_c_ref(docname, app, match):
class_str = {RE_function: 'c-func', RE_type: 'c-type'}
reftype_str = {RE_function: 'function', RE_type: 'type'}
cdom = app.env.domains['c']
# #
# Go through the dance of getting an xref out of the C domain # Go through the dance of getting an xref out of the C domain
# #
target = m.group(2) target = match.group(2)
target_text = nodes.Text(m.group(0)) target_text = nodes.Text(match.group(0))
xref = None xref = None
if not (m.re == RE_function and target in Skipfuncs): if not (match.re == RE_function and target in Skipfuncs):
lit_text = nodes.literal(classes=['xref', 'c', class_str[m.re]]) lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
lit_text += target_text lit_text += target_text
pxref = addnodes.pending_xref('', refdomain = 'c', pxref = addnodes.pending_xref('', refdomain = 'c',
reftype = reftype_str[m.re], reftype = reftype_str[match.re],
reftarget = target, modname = None, reftarget = target, modname = None,
classname = None) classname = None)
# #
...@@ -78,22 +96,17 @@ def markup_c_refs(docname, app, node): ...@@ -78,22 +96,17 @@ def markup_c_refs(docname, app, node):
# #
try: try:
xref = cdom.resolve_xref(app.env, docname, app.builder, xref = cdom.resolve_xref(app.env, docname, app.builder,
reftype_str[m.re], target, pxref, reftype_str[match.re], target, pxref,
lit_text) lit_text)
except NoUri: except NoUri:
xref = None xref = None
# #
# Toss the xref into the list if we got it; otherwise just put # Return the xref if we got it; otherwise just return the plain text.
# the function text.
# #
if xref: if xref:
repl.append(xref) return xref
else: else:
repl.append(target_text) return target_text
done = m.end()
if done < len(t):
repl.append(nodes.Text(t[done:]))
return repl
def auto_markup(app, doctree, name): def auto_markup(app, doctree, name):
# #
...@@ -108,7 +121,7 @@ def auto_markup(app, doctree, name): ...@@ -108,7 +121,7 @@ def auto_markup(app, doctree, name):
for para in doctree.traverse(nodes.paragraph): for para in doctree.traverse(nodes.paragraph):
for node in para.traverse(nodes.Text): for node in para.traverse(nodes.Text):
if not isinstance(node.parent, nodes.literal): if not isinstance(node.parent, nodes.literal):
node.parent.replace(node, markup_c_refs(name, app, node)) node.parent.replace(node, markup_refs(name, app, node))
def setup(app): def setup(app):
app.connect('doctree-resolved', auto_markup) app.connect('doctree-resolved', auto_markup)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment