1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
from __future__ import annotations
# This script is used to generate a summary of missing types / classes
# which are present in C++ Qt6, but are missing in PySide6.
#
# Required packages: bs4
# Installed via: pip install bs4
#
# The script uses beautiful soup 4 to parse out the class names from
# the online Qt documentation. It then tries to import the types from
# PySide6.
#
# Example invocation of script:
# python missing_bindings.py --qt-version 6.3 -w all
# --qt-version - specify which version of qt documentation to load.
# -w - if PyQt6 is an installed package, check if the tested
# class also exists there.
import argparse
import sys
from textwrap import dedent
from time import gmtime, strftime
from urllib import request
from pathlib import Path
from bs4 import BeautifulSoup
from config import modules_to_test, types_to_ignore, split_modules
import pandas as pd
import matplotlib.pyplot as plt
qt_documentation_website_prefixes = {
"6.7": "https://doc.qt.io/qt-6/",
"dev": "https://doc-snapshots.qt.io/qt6-dev/",
}
def qt_version_to_doc_prefix(version):
if version in qt_documentation_website_prefixes:
return qt_documentation_website_prefixes[version]
else:
raise RuntimeError("The specified qt version is not supported")
def create_doc_url(module_doc_page_url, version):
return qt_version_to_doc_prefix(version) + module_doc_page_url
def get_parser():
parser = argparse.ArgumentParser()
parser.add_argument(
"module",
default="all",
choices=list(modules_to_test.keys()).append("all"),
nargs="?",
type=str,
help="the Qt module for which to get the missing types",
)
parser.add_argument(
"--qt-version",
"-v",
default="6.7",
choices=["6.7", "dev"],
type=str,
dest="version",
help="the Qt version to use to check for types",
)
parser.add_argument(
"--which-missing",
"-w",
default="all",
choices=["all", "in-pyqt", "not-in-pyqt", "in-pyside-not-in-pyqt"],
type=str,
dest="which_missing",
help="Which missing types to show (all, or just those that are not present in PyQt)",
)
parser.add_argument(
"--plot",
action="store_true",
help="Create module-wise bar plot comparisons for the missing bindings comparisons"
" between Qt, PySide6 and PyQt6",
)
return parser
def wikilog(*pargs, **kw):
print(*pargs)
computed_str = "".join(str(arg) for arg in pargs)
style = "text"
if "style" in kw:
style = kw["style"]
if style == "heading1":
computed_str = f"= {computed_str} ="
elif style == "heading5":
computed_str = f"===== {computed_str} ====="
elif style == "with_newline":
computed_str = f"{computed_str}\n"
elif style == "bold_colon":
computed_str = computed_str.replace(":", ":'''")
computed_str = f"{computed_str}'''\n"
elif style == "error":
computed_str = computed_str.strip("\n")
computed_str = f"''{computed_str}''\n"
elif style == "text_with_link":
computed_str = computed_str
elif style == "code":
computed_str = f" {computed_str}"
elif style == "end":
return
print(computed_str, file=wiki_file)
if __name__ == "__main__":
parser = get_parser()
args = parser.parse_args()
if hasattr(args, "module") and args.module != "all":
saved_value = modules_to_test[args.module]
modules_to_test.clear()
modules_to_test[args.module] = saved_value
pyside_package_name = "PySide6"
pyqt_package_name = "PyQt6"
data = {"module": [], "qt": [], "pyside": [], "pyqt": []}
total_missing_types_count = 0
total_missing_types_count_compared_to_pyqt = 0
total_missing_modules_count = 0
total_missing_pyqt_types_count = 0
total_missing_pyqt_modules_count = 0
wiki_file = open("missing_bindings_for_wiki_qt_io.txt", "w")
wiki_file.truncate()
wikilog(f"PySide6 bindings for Qt {args.version}", style="heading1")
wikilog(
f"Using Qt version {args.version} documentation to find public "
"API Qt types and test if the types are present in the PySide6 "
"package."
)
wikilog(
dedent(
"""\
Results are usually stored at
https://wiki.qt.io/PySide6_Missing_Bindings
so consider taking the contents of the generated
missing_bindings_for_wiki_qt_io.txt
file and updating the linked wiki page."""
),
style="end",
)
# wikilog(
# "Similar report:\n https://gist.github.com/ethanhs/6c626ca4e291f3682589699296377d3a",
# style="text_with_link",
# )
python_executable = Path(sys.executable).name or ""
command_line_arguments = " ".join(sys.argv)
report_date = strftime("%Y-%m-%d %H:%M:%S %Z", gmtime())
wikilog(
dedent(
f"""
This report was generated by running the following command:
{python_executable} {command_line_arguments}
on the following date:
{report_date}
"""
)
)
for module_name in modules_to_test.keys():
wikilog(module_name, style="heading5")
url = create_doc_url(modules_to_test[module_name], args.version)
wikilog(f"Documentation link: {url}\n", style="text_with_link")
# Import the tested module
try:
pyside_tested_module = getattr(
__import__(pyside_package_name, fromlist=[module_name]), module_name
)
for main_module, split_module in split_modules.items():
# If module name matches with the split_modules
# Second module is also imported
if module_name == main_module:
pyside_tested_module_split = getattr(
__import__(pyside_package_name, fromlist=[split_module]), split_module
)
except Exception as e:
e_str = str(e).replace('"', "")
wikilog(
f"\nCould not load {pyside_package_name}.{module_name}. "
f"Received error: {e_str}. Skipping.\n",
style="error",
)
total_missing_modules_count += 1
continue
try:
pyqt_module_name = module_name
pyqt_tested_module = getattr(
__import__(pyqt_package_name, fromlist=[module_name]), pyqt_module_name
)
except Exception as e:
e_str = str(e).replace("'", "")
wikilog(
f"\nCould not load {pyqt_package_name}.{module_name} for comparison. "
f"Received error: {e_str}.\n",
style="error",
)
total_missing_pyqt_modules_count += 1
# Get C++ class list from documentation page.
page = request.urlopen(url)
soup = BeautifulSoup(page, "html.parser")
# Extract the Qt type names from the documentation classes table
links = soup.body.select(".annotated a")
types_on_html_page = []
for link in links:
link_text = link.text.replace("::", ".")
if link_text not in types_to_ignore:
types_on_html_page.append(link_text)
total_qt_types = len(types_on_html_page)
wikilog(f"Number of types in {module_name}: {total_qt_types}", style="bold_colon")
missing_pyside_types_count = 0
missing_pyqt_types_count = 0
missing_types_compared_to_pyqt = 0
missing_types = []
for qt_type in types_on_html_page:
is_present_in_pyqt = False
is_present_in_pyside = False
missing_type = None
try:
pyqt_qualified_type = f"pyqt_tested_module.{qt_type}"
eval(pyqt_qualified_type)
is_present_in_pyqt = True
except Exception as e:
print(f"{type(e).__name__}: {e}")
missing_pyqt_types_count += 1
total_missing_pyqt_types_count += 1
try:
pyside_qualified_type = f"pyside_tested_module.{qt_type}"
eval(pyside_qualified_type)
is_present_in_pyside = True
except Exception:
# If an exception is thrown in the first eval
# Second imported module will be checked
try:
pyside_qualified_type_split = f"pyside_tested_module_split.{qt_type}"
eval(pyside_qualified_type_split)
is_present_in_pyside = True
except Exception as e:
print("Failed eval-in pyside qualified types")
print(f"{type(e).__name__}: {e}")
missing_type = qt_type
missing_pyside_types_count += 1
total_missing_types_count += 1
if is_present_in_pyqt:
missing_type = f"{missing_type} (is present in PyQt6)"
missing_types_compared_to_pyqt += 1
total_missing_types_count_compared_to_pyqt += 1
# missing in PySide
if not is_present_in_pyside:
if args.which_missing == "all":
missing_types.append(missing_type)
message = f"Missing types in PySide (all) {module_name}:"
# missing in PySide and present in pyqt
elif args.which_missing == "in-pyqt" and is_present_in_pyqt:
missing_types.append(missing_type)
message = f"Missing types in PySide6 (but present in PyQt6) {module_name}:"
# missing in both PyQt and PySide
elif args.which_missing == "not-in-pyqt" and not is_present_in_pyqt:
missing_types.append(missing_type)
message = f"Missing types in PySide6 (also missing in PyQt6) {module_name}:"
elif (
args.which_missing == "in-pyside-not-in-pyqt"
and not is_present_in_pyqt
):
missing_types.append(qt_type)
message = f"Missing types in PyQt6 (but present in PySide6) {module_name}:"
if len(missing_types) > 0:
wikilog(message, style="with_newline")
missing_types.sort()
for missing_type in missing_types:
wikilog(missing_type, style="code")
wikilog("")
if args.which_missing != "in-pyside-not-in-pyqt":
missing_types_count = missing_pyside_types_count
else:
missing_types_count = missing_pyqt_types_count
if args.plot:
total_pyside_types = total_qt_types - missing_pyside_types_count
total_pyqt_types = total_qt_types - missing_pyqt_types_count
data["module"].append(module_name)
data["qt"].append(total_qt_types)
data["pyside"].append(total_pyside_types)
data["pyqt"].append(total_pyqt_types)
wikilog(f"Number of missing types: {missing_types_count}", style="bold_colon")
if len(missing_types) > 0 and args.which_missing != "in-pyside-not-in-pyqt":
wikilog(
"Number of missing types that are present in PyQt6: "
f"{missing_types_compared_to_pyqt}",
style="bold_colon",
)
wikilog(f"End of missing types for {module_name}\n", style="end")
else:
wikilog("", style="end")
if args.plot:
df = pd.DataFrame(data=data, columns=["module", "qt", "pyside", "pyqt"])
df.set_index("module", inplace=True)
df.plot(kind="bar", title="Qt API Coverage plot")
plt.legend()
plt.xticks(rotation=45)
plt.ylabel("Types Count")
figure = plt.gcf()
figure.set_size_inches(32, 18) # set to full_screen
plt.savefig("missing_bindings_comparison_plot.png", bbox_inches='tight')
print(f"Plot saved in {Path.cwd() / 'missing_bindings_comparison_plot.png'}\n")
wikilog("Summary", style="heading5")
if args.which_missing != "in-pyside-not-in-pyqt":
wikilog(f"Total number of missing types: {total_missing_types_count}", style="bold_colon")
wikilog(
"Total number of missing types that are present in PyQt6: "
f"{total_missing_types_count_compared_to_pyqt}",
style="bold_colon",
)
wikilog(
f"Total number of missing modules: {total_missing_modules_count}", style="bold_colon"
)
else:
wikilog(
f"Total number of missing types in PyQt6: {total_missing_pyqt_types_count}",
style="bold_colon",
)
wikilog(
f"Total number of missing modules in PyQt6: {total_missing_pyqt_modules_count}",
style="bold_colon",
)
wiki_file.close()
|