From nobody Sat Oct 4 01:42:21 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AEEF728467D; Thu, 21 Aug 2025 14:21:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755786099; cv=none; b=SpXqYTKC+zZ2f0yRtftW7rqqXkcZ7HjUcj/tVpjm91HTfwQxJ9T5DChx2fUdX4yYPC1k1YnWfvFL9pKuXazq4TOAnMAzeKcCvd5QFxza5c3fpAK32t2At8byea8D+8auW+7JvVW3Drg4cxrwvO91gG/7y/MsYWn1wF7pRfCfE0U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755786099; c=relaxed/simple; bh=DL+ejH7HzWPaC/HHDV1RfIxKyreXW8+q4TsBZyqpgb0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DrNENVUIgUUSSWpF5xk14CTrxyjxBgmtM58PA+qxfdmb/qcPdzX7/WhNDLlZ8TeZb9Ip86/XjNVWZ+P7elbm7q6Lze9lpBWxJnOlod85JG7MCkVM5ggzeVa4hMy4ghTZREWfGU38+L5Zt/tNCnlI5JGZ6+DsUI1XK3lV4scRzbQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Xpdtc4Bf; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Xpdtc4Bf" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2A7E3C2BC9E; Thu, 21 Aug 2025 14:21:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755786099; bh=DL+ejH7HzWPaC/HHDV1RfIxKyreXW8+q4TsBZyqpgb0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Xpdtc4BfErkzjj+NKJxwbMyjP6bV2A1wbvwX1jSuCEit5IQ07vXMw5qQKRzQ5r8VN nYaSB/7L2jfjjGeoj8cWGM9e+xA971ho2oFg3zo0BYT2FLABE4wCVwxjsjx6in7gfb KwZLb/6YqG1eG3ibCkh2RTjP1YabhFKWRcalCkf2Yc8ihmCAlKsXH+XfQnLYAZngDp ohW/EjThMSmlOgj50dPmu0ue4ZIGD6FZbGHchFF4OdYPF40JScA9v2H43XFIC640lb wJu2CBfp+F7SpJOR7GpYQ4m8w6kvzV4/GbNh8lsh6zfBmXZRxLYza+2g5Sk595iXMQ 2sivLNi52bPeQ== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1up6Ab-0000000BT8q-1LWT; Thu, 21 Aug 2025 16:21:37 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , Kees Cook , linux-kernel@vger.kernel.org Subject: [PATCH 13/24] docs: kernel_include.py: move rawtext logic to separate functions Date: Thu, 21 Aug 2025 16:21:19 +0200 Message-ID: X-Mailer: git-send-email 2.50.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" The run function is too complex. merge run() and _run() into a single function and move the read logic to separate functions. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx/kernel_include.py | 82 ++++++++++++++------------ 1 file changed, 43 insertions(+), 39 deletions(-) diff --git a/Documentation/sphinx/kernel_include.py b/Documentation/sphinx/= kernel_include.py index 0a3e5377dd1e..ef86ee9e79d6 100755 --- a/Documentation/sphinx/kernel_include.py +++ b/Documentation/sphinx/kernel_include.py @@ -92,7 +92,47 @@ class KernelInclude(Include): 'exception-file': directives.unchanged, }) =20 + def read_rawtext(self, path, encoding): + """Read and process file content with error handling""" + try: + self.state.document.settings.record_dependencies.add(path) + include_file =3D io.FileInput(source_path=3Dpath, + encoding=3Dencoding, + error_handler=3Dself.state.doc= ument.settings.input_encoding_error_handler) + except UnicodeEncodeError: + raise self.severe('Problems with directive path:\n' + 'Cannot encode input file path "%s" ' + '(wrong locale?).' % SafeString(path)) + except IOError as error: + raise self.severe('Problems with directive path:\n%s.' % E= rrorString(error)) + + try: + return include_file.read() + except UnicodeError as error: + raise self.severe('Problem with directive:\n%s' % ErrorStr= ing(error)) + + def read_rawtext_with_xrefs(self, env, path): + parser =3D ParseDataStructs() + parser.parse_file(path) + + if 'exception-file' in self.options: + source_dir =3D os.path.dirname(os.path.abspath( + self.state_machine.input_lines.source( + self.lineno - self.state_machine.input_offset - 1))) + exceptions_file =3D os.path.join(source_dir, self.options['exc= eption-file']) + parser.process_exceptions(exceptions_file) + + if self.options.get("start-line") or self.options.get("end-line"): + raise self.severe('generate-cross-refs can\'t be used with "st= art-line" or "end-line"') + + # Store references on a symbol dict to be used at check time + if 'warn-broken' in self.options: + env._xref_files.add(path) + + return parser.gen_output() + def run(self): + """Include a file as part of the content of this reST file.""" env =3D self.state.document.settings.env path =3D os.path.realpath(os.path.expandvars(self.arguments[0])) =20 @@ -105,12 +145,6 @@ class KernelInclude(Include): =20 env.note_dependency(os.path.abspath(path)) =20 - # return super(KernelInclude, self).run() # won't work, see HINTs = in _run() - return self._run(env) - - def _run(self, env): - """Include a file as part of the content of this reST file.""" - # HINT: I had to copy&paste the whole Include.run method. I'am not= happy # with this, but due to security reasons, the Include.run method d= oes # not allow absolute or relative pathnames pointing to locations *= above* @@ -139,47 +173,17 @@ class KernelInclude(Include): =20 # Get optional arguments to related to cross-references generation if 'generate-cross-refs' in self.options: - parser =3D ParseDataStructs() - parser.parse_file(path) - - exceptions_file =3D self.options.get('exception-file') - if exceptions_file: - exceptions_file =3D os.path.join(source_dir, exceptions_fi= le) - parser.process_exceptions(exceptions_file) + rawtext =3D self.read_rawtext_with_xrefs(env, path) =20 title =3D os.path.basename(path) - rawtext =3D parser.gen_output() + if startline or endline: raise self.severe('generate-cross-refs can\'t be used toge= ther with "start-line" or "end-line"') =20 if "code" not in self.options: rawtext =3D ".. parsed-literal::\n\n" + rawtext - - # Store references on a symbol dict to be used at check time - if 'warn-broken' in self.options: - env._xref_files.add(path) else: - try: - self.state.document.settings.record_dependencies.add(path) - include_file =3D io.FileInput(source_path=3Dpath, encoding= =3Dencoding, - error_handler=3De_handler) - except UnicodeEncodeError: - raise self.severe('Problems with "%s" directive path:\n' - 'Cannot encode input file path "%s" ' - "(wrong locale?)." % (self.name, SafeStrin= g(path))) - except IOError as error: - raise self.severe('Problems with "%s" directive path:\n%s.' - % (self.name, ErrorString(error))) - - try: - if startline or (endline is not None): - lines =3D include_file.readlines() - rawtext =3D "".join(lines[startline:endline]) - else: - rawtext =3D include_file.read() - except UnicodeError as error: - raise self.severe('Problem with "%s" directive:\n%s' % - (self.name, ErrorString(error))) + rawtext =3D self.read_rawtext(path, encoding) =20 # start-after/end-before: no restrictions on newlines in match-tex= t, # and no restrictions on matching inside lines vs. line boundaries --=20 2.50.1