From nobody Mon Feb 9 20:32:09 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=arm.com Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1706699009877969.1834794615665; Wed, 31 Jan 2024 03:03:29 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.673919.1048509 (Exim 4.92) (envelope-from ) id 1rV8N4-0001qU-Rh; Wed, 31 Jan 2024 11:03:10 +0000 Received: by outflank-mailman (output) from mailman id 673919.1048509; Wed, 31 Jan 2024 11:03:10 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rV8N4-0001qN-O5; Wed, 31 Jan 2024 11:03:10 +0000 Received: by outflank-mailman (input) for mailman id 673919; Wed, 31 Jan 2024 11:03:08 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1rV8N2-0001NU-KK for xen-devel@lists.xenproject.org; Wed, 31 Jan 2024 11:03:08 +0000 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by se1-gles-flk1.inumbo.com (Halon) with ESMTP id 4f869515-c028-11ee-98f5-efadbce2ee36; Wed, 31 Jan 2024 12:03:06 +0100 (CET) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3894311FB; Wed, 31 Jan 2024 03:03:49 -0800 (PST) Received: from e125770.cambridge.arm.com (e125770.arm.com [10.1.199.1]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4A2883F762; Wed, 31 Jan 2024 03:03:05 -0800 (PST) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 4f869515-c028-11ee-98f5-efadbce2ee36 From: Luca Fancellu To: xen-devel@lists.xenproject.org Cc: Stefano Stabellini Subject: [PATCH 1/3] xen-analysis.py: Use named group for tag regex Date: Wed, 31 Jan 2024 11:02:39 +0000 Message-Id: <20240131110241.3951995-2-luca.fancellu@arm.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240131110241.3951995-1-luca.fancellu@arm.com> References: <20240131110241.3951995-1-luca.fancellu@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1706699010821100003 Content-Type: text/plain; charset="utf-8" Use named group for the regex matching a tag identifier, this is done to ease retrieving the matching group instead of using an index. Signed-off-by: Luca Fancellu --- xen/scripts/xen_analysis/cppcheck_analysis.py | 4 ++-- xen/scripts/xen_analysis/tag_database.py | 24 +++++++++---------- xen/scripts/xen_analysis/utils.py | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/xen/scripts/xen_analysis/cppcheck_analysis.py b/xen/scripts/xe= n_analysis/cppcheck_analysis.py index e54848aa5339..919eb153ce9c 100644 --- a/xen/scripts/xen_analysis/cppcheck_analysis.py +++ b/xen/scripts/xen_analysis/cppcheck_analysis.py @@ -41,7 +41,7 @@ def __generate_suppression_list(out_file): # The following lambda function will return a file if it contains line= s with # a comment containing "cppcheck-suppress[*]" on a single line. grep_action =3D lambda x: utils.grep(x, - r'^[ \t]*/\* cppcheck-suppress\[(.*)\] \*/$') + r'^[ \t]*/\* cppcheck-suppress\[(?P.*)\] \*/$') # Look for a list of .h files that matches the condition above headers =3D utils.recursive_find_file(settings.xen_dir, r'.*\.h$', grep_action) @@ -97,7 +97,7 @@ def __generate_suppression_list(out_file): if (not comment_section) and comment_line_starts: comment_section =3D True if (len(line.strip()) !=3D 0) and (not comment_sec= tion): - cppcheck_violation_id =3D entry["matches"][lin= e_num][0] + cppcheck_violation_id =3D entry["matches"][lin= e_num]['id'] break if comment_section and comment_line_stops: comment_section =3D False diff --git a/xen/scripts/xen_analysis/tag_database.py b/xen/scripts/xen_ana= lysis/tag_database.py index ca374bbb62dd..abba163aec71 100644 --- a/xen/scripts/xen_analysis/tag_database.py +++ b/xen/scripts/xen_analysis/tag_database.py @@ -18,11 +18,12 @@ tool_syntax =3D { =20 =20 def get_xen_tag_index_type_regex(tool): - return r'^SAF-(\d+)-(safe|false-positive-' + tool + ')$' + return rf'^SAF-(?P\d+)-(?Psafe|false-positive-{tool})$' =20 =20 def get_xen_tag_comment_regex(tool): - return r'^[ \t]*/\* +(SAF-\d+-(?:safe|false-positive-' + tool + ')).*\= */$' + tag=3Drf'(?PSAF-\d+-(?:safe|false-positive-{tool}))' + return rf'^[ \t]*/\* +{tag}.*\*/$' =20 =20 # Returns a data structure containing dictionaries for safe and false-posi= tive-* @@ -60,12 +61,11 @@ def load_tag_database(tool, input_files, data_struct = =3D None, schema =3D "safe"): if proprietary_id !=3D "": comment=3Dtool_syntax[tool].replace("VID",proprietary_id) # Regex to capture the index of the Xen tag and the schema - xen_tag =3D re.compile(get_xen_tag_index_type_regex(tool))\ - .match(entry["id"]) - if xen_tag and xen_tag.group(1) and xen_tag.group(2): + xen_tag =3D re.match(get_xen_tag_index_type_regex(tool), entry= ["id"]) + if xen_tag and xen_tag.group('id') and xen_tag.group('type'): # Save in safe or false-positive-* the key {#id: "comment"} - id_number =3D int(xen_tag.group(1)) - key =3D xen_tag.group(2) + id_number =3D int(xen_tag.group('id')) + key =3D xen_tag.group('type') ret[key][id_number] =3D "/* {} */\n".format(comment) else: raise TagDatabaseError( @@ -95,11 +95,11 @@ def substitute_tags(tool, input_file, grep_struct, subs= _rules): # information access the subs_rules dictionary to see if there= is # a match for line_number in grep_struct["matches"]: - xen_tag =3D grep_struct["matches"][line_number][0] - xen_tag_regex_obj =3D re.compile( - get_xen_tag_index_type_regex(tool)).match(xen_= tag) - id_number =3D int(xen_tag_regex_obj.group(1)) - key =3D xen_tag_regex_obj.group(2) + xen_tag =3D grep_struct["matches"][line_number]['tag'] + xen_tag_regex_obj =3D re.match(get_xen_tag_index_type_rege= x(tool), + xen_tag) + id_number =3D int(xen_tag_regex_obj.group('id')) + key =3D xen_tag_regex_obj.group('type') if id_number in subs_rules[key]: parsed_content[line_number-1] =3D subs_rules[key][id_n= umber] =20 diff --git a/xen/scripts/xen_analysis/utils.py b/xen/scripts/xen_analysis/u= tils.py index 1193e3f4631e..eef48eeb7e87 100644 --- a/xen/scripts/xen_analysis/utils.py +++ b/xen/scripts/xen_analysis/utils.py @@ -12,7 +12,7 @@ def grep(filepath, regex): for line in f: match =3D regObj.match(line) if match: - res["matches"][line_number] =3D match.groups() + res["matches"][line_number] =3D match line_number =3D line_number + 1 except Exception as e: print("WARNING: Can't open {}: {}".format(filepath, e)) --=20 2.34.1