mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

Documentation/driver-api/infiniband.rst has a kernel-doc tag with "\" characters at the end: .. kernel-doc:: drivers/infiniband/ulp/iser/iscsi_iser.c :functions: iscsi_iser_pdu_alloc iser_initialize_task_headers \ iscsi_iser_task_init iscsi_iser_mtask_xmit iscsi_iser_task_xmit \ iscsi_iser_cleanup_task iscsi_iser_check_protection \ iscsi_iser_conn_create iscsi_iser_conn_bind \ iscsi_iser_conn_start iscsi_iser_conn_stop \ iscsi_iser_session_destroy iscsi_iser_session_create \ iscsi_iser_set_param iscsi_iser_ep_connect iscsi_iser_ep_poll \ iscsi_iser_ep_disconnect This is not handled well, as the "\" strings will be just stored inside Sphinx options. While the actual problem deserves being fixed, better to relax the keneldoc.py extension to silently strip "\" from the end of strings, as otherwise this may cause troubles when preparing arguments to be executed by kernel-doc. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/4c652d6c57b20500c135b95294e554d9e9a97f42.1744106242.git.mchehab+huawei@kernel.org
212 lines
7.2 KiB
Python
212 lines
7.2 KiB
Python
# coding=utf-8
|
|
#
|
|
# Copyright © 2016 Intel Corporation
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice (including the next
|
|
# paragraph) shall be included in all copies or substantial portions of the
|
|
# Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
# IN THE SOFTWARE.
|
|
#
|
|
# Authors:
|
|
# Jani Nikula <jani.nikula@intel.com>
|
|
#
|
|
# Please make sure this works on both python2 and python3.
|
|
#
|
|
|
|
import codecs
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import re
|
|
import glob
|
|
|
|
from docutils import nodes, statemachine
|
|
from docutils.statemachine import ViewList
|
|
from docutils.parsers.rst import directives, Directive
|
|
import sphinx
|
|
from sphinx.util.docutils import switch_source_input
|
|
from sphinx.util import logging
|
|
|
|
__version__ = '1.0'
|
|
|
|
def cmd_str(cmd):
|
|
"""
|
|
Helper function to output a command line that can be used to produce
|
|
the same records via command line. Helpful to debug troubles at the
|
|
script.
|
|
"""
|
|
|
|
cmd_line = ""
|
|
|
|
for w in cmd:
|
|
if w == "" or " " in w:
|
|
esc_cmd = "'" + w + "'"
|
|
else:
|
|
esc_cmd = w
|
|
|
|
if cmd_line:
|
|
cmd_line += " " + esc_cmd
|
|
continue
|
|
else:
|
|
cmd_line = esc_cmd
|
|
|
|
return cmd_line
|
|
|
|
class KernelDocDirective(Directive):
|
|
"""Extract kernel-doc comments from the specified file"""
|
|
required_argument = 1
|
|
optional_arguments = 4
|
|
option_spec = {
|
|
'doc': directives.unchanged_required,
|
|
'export': directives.unchanged,
|
|
'internal': directives.unchanged,
|
|
'identifiers': directives.unchanged,
|
|
'no-identifiers': directives.unchanged,
|
|
'functions': directives.unchanged,
|
|
}
|
|
has_content = False
|
|
logger = logging.getLogger('kerneldoc')
|
|
verbose = 0
|
|
|
|
def run(self):
|
|
env = self.state.document.settings.env
|
|
cmd = [env.config.kerneldoc_bin, '-rst', '-enable-lineno']
|
|
|
|
filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
|
|
export_file_patterns = []
|
|
|
|
verbose = os.environ.get("V")
|
|
if verbose:
|
|
try:
|
|
self.verbose = int(verbose)
|
|
except ValueError:
|
|
pass
|
|
|
|
# Tell sphinx of the dependency
|
|
env.note_dependency(os.path.abspath(filename))
|
|
|
|
tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
|
|
|
|
# 'function' is an alias of 'identifiers'
|
|
if 'functions' in self.options:
|
|
self.options['identifiers'] = self.options.get('functions')
|
|
|
|
# FIXME: make this nicer and more robust against errors
|
|
if 'export' in self.options:
|
|
cmd += ['-export']
|
|
export_file_patterns = str(self.options.get('export')).split()
|
|
elif 'internal' in self.options:
|
|
cmd += ['-internal']
|
|
export_file_patterns = str(self.options.get('internal')).split()
|
|
elif 'doc' in self.options:
|
|
cmd += ['-function', str(self.options.get('doc'))]
|
|
elif 'identifiers' in self.options:
|
|
identifiers = self.options.get('identifiers').split()
|
|
if identifiers:
|
|
for i in identifiers:
|
|
i = i.rstrip("\\").strip()
|
|
if not i:
|
|
continue
|
|
|
|
cmd += ['-function', i]
|
|
else:
|
|
cmd += ['-no-doc-sections']
|
|
|
|
if 'no-identifiers' in self.options:
|
|
no_identifiers = self.options.get('no-identifiers').split()
|
|
if no_identifiers:
|
|
for i in no_identifiers:
|
|
i = i.rstrip("\\").strip()
|
|
if not i:
|
|
continue
|
|
|
|
cmd += ['-nosymbol', i]
|
|
|
|
for pattern in export_file_patterns:
|
|
pattern = pattern.rstrip("\\").strip()
|
|
if not pattern:
|
|
continue
|
|
|
|
for f in glob.glob(env.config.kerneldoc_srctree + '/' + pattern):
|
|
env.note_dependency(os.path.abspath(f))
|
|
cmd += ['-export-file', f]
|
|
|
|
cmd += [filename]
|
|
|
|
if self.verbose >= 1:
|
|
print(cmd_str(cmd))
|
|
|
|
try:
|
|
self.logger.verbose("calling kernel-doc '%s'" % (" ".join(cmd)))
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
out, err = p.communicate()
|
|
|
|
out, err = codecs.decode(out, 'utf-8'), codecs.decode(err, 'utf-8')
|
|
|
|
if p.returncode != 0:
|
|
sys.stderr.write(err)
|
|
|
|
self.logger.warning("kernel-doc '%s' failed with return code %d"
|
|
% (" ".join(cmd), p.returncode))
|
|
return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
|
|
elif env.config.kerneldoc_verbosity > 0:
|
|
sys.stderr.write(err)
|
|
|
|
lines = statemachine.string2lines(out, tab_width, convert_whitespace=True)
|
|
result = ViewList()
|
|
|
|
lineoffset = 0;
|
|
line_regex = re.compile(r"^\.\. LINENO ([0-9]+)$")
|
|
for line in lines:
|
|
match = line_regex.search(line)
|
|
if match:
|
|
# sphinx counts lines from 0
|
|
lineoffset = int(match.group(1)) - 1
|
|
# we must eat our comments since the upset the markup
|
|
else:
|
|
doc = str(env.srcdir) + "/" + env.docname + ":" + str(self.lineno)
|
|
result.append(line, doc + ": " + filename, lineoffset)
|
|
lineoffset += 1
|
|
|
|
node = nodes.section()
|
|
self.do_parse(result, node)
|
|
|
|
return node.children
|
|
|
|
except Exception as e: # pylint: disable=W0703
|
|
self.logger.warning("kernel-doc '%s' processing failed with: %s" %
|
|
(" ".join(cmd), str(e)))
|
|
return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
|
|
|
|
def do_parse(self, result, node):
|
|
with switch_source_input(self.state, result):
|
|
self.state.nested_parse(result, 0, node, match_titles=1)
|
|
|
|
def setup(app):
|
|
app.add_config_value('kerneldoc_bin', None, 'env')
|
|
app.add_config_value('kerneldoc_srctree', None, 'env')
|
|
app.add_config_value('kerneldoc_verbosity', 1, 'env')
|
|
|
|
app.add_directive('kernel-doc', KernelDocDirective)
|
|
|
|
return dict(
|
|
version = __version__,
|
|
parallel_read_safe = True,
|
|
parallel_write_safe = True
|
|
)
|