aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-05-24 09:47:11 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-05-24 09:47:11 +0200
commit768541fb2e81a426daeffc2f81dcca42ecc43919 (patch)
treef887244a022ea8508055412cb3e85ba8158cf509 /sources/pyside2
parent6ba23a245449aaa9c1a7ab8e954d93f5f4366530 (diff)
parent235092d72f57d42de04501b04f6a3ff4d77adf74 (diff)
Merge "Merge remote-tracking branch 'origin/5.13' into dev"
Diffstat (limited to 'sources/pyside2')
-rw-r--r--sources/pyside2/PySide2/QtGui/CMakeLists.txt1
-rw-r--r--sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml5
-rw-r--r--sources/pyside2/PySide2/support/generate_pyi.py211
-rw-r--r--sources/pyside2/cmake/Macros/PySideModules.cmake31
-rw-r--r--sources/pyside2/tests/QtGui/CMakeLists.txt1
-rw-r--r--sources/pyside2/tests/QtGui/qtextdocument_functions.py47
6 files changed, 134 insertions, 162 deletions
diff --git a/sources/pyside2/PySide2/QtGui/CMakeLists.txt b/sources/pyside2/PySide2/QtGui/CMakeLists.txt
index 48354987d..18d80f647 100644
--- a/sources/pyside2/PySide2/QtGui/CMakeLists.txt
+++ b/sources/pyside2/PySide2/QtGui/CMakeLists.txt
@@ -197,6 +197,7 @@ ${QtGui_GEN_DIR}/qtouchdevice_wrapper.cpp
${QtGui_GEN_DIR}/qtouchevent_touchpoint_wrapper.cpp
${QtGui_GEN_DIR}/qtouchevent_wrapper.cpp
${QtGui_GEN_DIR}/qtransform_wrapper.cpp
+${QtGui_GEN_DIR}/qt_wrapper.cpp
${QtGui_GEN_DIR}/qvalidator_wrapper.cpp
${QtGui_GEN_DIR}/qvector2d_wrapper.cpp
${QtGui_GEN_DIR}/qvector3d_wrapper.cpp
diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml
index a496238b8..b42391148 100644
--- a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml
+++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml
@@ -202,6 +202,11 @@
<rejection class="QActionGroup" function-name="selected"/>
<rejection class="QPaintEngine" function-name="fix_neg_rect"/>
+ <!-- For Qt::mightBeRichText(QString), Qt::convertFromPlainText(QString,Qt::WhiteSpaceMode)
+ Match on files from '/QtGui/' (shadow build) or '/gui/' (developer build)
+ or '/QtGui.framework' (macOS) -->
+ <namespace-type name="Qt" files="^.*/(gui|QtGui)[/.].*\.h$" extends="PySide2.QtCore"/>
+
<primitive-type name="WId" target-lang-api-name="PyLong">
<conversion-rule>
<native-to-target file="../glue/qtgui.cpp" snippet="return-pylong-voidptr"/>
diff --git a/sources/pyside2/PySide2/support/generate_pyi.py b/sources/pyside2/PySide2/support/generate_pyi.py
index 377a53331..294cdc91b 100644
--- a/sources/pyside2/PySide2/support/generate_pyi.py
+++ b/sources/pyside2/PySide2/support/generate_pyi.py
@@ -1,7 +1,7 @@
# This Python file uses the following encoding: utf-8
#############################################################################
##
-## Copyright (C) 2018 The Qt Company Ltd.
+## Copyright (C) 2019 The Qt Company Ltd.
## Contact: https://www.qt.io/licensing/
##
## This file is part of Qt for Python.
@@ -52,16 +52,9 @@ import io
import re
import subprocess
import argparse
-import glob
-import math
from contextlib import contextmanager
from textwrap import dedent
-import traceback
-
-
import logging
-logging.basicConfig(level=logging.INFO)
-logger = logging.getLogger("generate_pyi")
# Make sure not to get .pyc in Python2.
@@ -73,6 +66,10 @@ USE_PEP563 = sys.version_info[:2] >= (3, 7)
indent = " " * 4
is_py3 = sys.version_info[0] == 3
is_ci = os.environ.get("QTEST_ENVIRONMENT", "") == "ci"
+is_debug = is_ci or os.environ.get("QTEST_ENVIRONMENT")
+
+logging.basicConfig(level=logging.DEBUG if is_debug else logging.INFO)
+logger = logging.getLogger("generate_pyi")
class Writer(object):
@@ -118,7 +115,7 @@ class Formatter(Writer):
self.print("import shiboken2 as Shiboken")
self.print("Shiboken.Object = Object")
self.print()
- # This line will be replaced by the missing imports.
+ # This line will be replaced by the missing imports postprocess.
self.print("IMPORTS")
yield
@@ -184,83 +181,36 @@ def find_imports(text):
return [imp for imp in PySide2.__all__ if imp + "." in text]
-_cache = {}
-
-def check_if_skipable(outfilepath):
- # A file can be skipped if it exists, and if it's file time is not
- # older than this script or any of its dependencies.
- def _do_find_newest_module():
- newest = 0
- for obj in sys.modules.values():
- if getattr(obj, "__file__", None) and os.path.isfile(obj.__file__):
- sourcepath = os.path.splitext(obj.__file__)[0] + ".py"
- if os.path.exists(sourcepath):
- newest = max(os.path.getmtime(sourcepath), newest)
- return newest
-
- def find_newest_module():
- cache_name = "newest_module"
- if cache_name not in _cache:
- _cache[cache_name] = _do_find_newest_module()
- return _cache[cache_name]
-
- if os.path.exists(outfilepath):
- stamp = os.path.getmtime(outfilepath)
- if stamp >= find_newest_module():
- return True
- return False
-
-
def generate_pyi(import_name, outpath, options):
"""
Generates a .pyi file.
-
- Returns 1 If the result is valid, -1 if the result existed already
- and was skipped, else 0.
-
- This function will get called during a PySide build, and many concurrent
- process might try to create .pyi files. We let only one process at a
- time work on these files, but it will still be different processes which
- do the work.
"""
- pid = os.getpid()
plainname = import_name.split(".")[-1]
outfilepath = os.path.join(outpath, plainname + ".pyi")
- if options.skip and check_if_skipable(outfilepath):
- logger.debug("{pid}:Skipped existing: {op}"
- .format(op=os.path.basename(outfilepath), **locals()))
- return -1
-
- try:
- top = __import__(import_name)
- obj = getattr(top, plainname)
- if not getattr(obj, "__file__", None) or os.path.isdir(obj.__file__):
- raise ImportError("We do not accept a namespace as module {plainname}"
- .format(**locals()))
- module = sys.modules[import_name]
-
- outfile = io.StringIO()
- fmt = Formatter(outfile)
- enu = HintingEnumerator(fmt)
- fmt.print(get_license_text()) # which has encoding, already
- need_imports = not USE_PEP563
- if USE_PEP563:
- fmt.print("from __future__ import annotations")
- fmt.print()
- fmt.print(dedent('''\
- """
- This file contains the exact signatures for all functions in module
- {import_name}, except for defaults which are replaced by "...".
- """
- '''.format(**locals())))
- enu.module(import_name)
+ top = __import__(import_name)
+ obj = getattr(top, plainname)
+ if not getattr(obj, "__file__", None) or os.path.isdir(obj.__file__):
+ raise ModuleNotFoundError("We do not accept a namespace as module "
+ "{plainname}".format(**locals()))
+ module = sys.modules[import_name]
+
+ outfile = io.StringIO()
+ fmt = Formatter(outfile)
+ fmt.print(get_license_text()) # which has encoding, already
+ need_imports = not USE_PEP563
+ if USE_PEP563:
+ fmt.print("from __future__ import annotations")
fmt.print()
- fmt.print("# eof")
-
- except ImportError as e:
- logger.debug("{pid}:Import problem with module {plainname}: {e}".format(**locals()))
- return 0
-
+ fmt.print(dedent('''\
+ """
+ This file contains the exact signatures for all functions in module
+ {import_name}, except for defaults which are replaced by "...".
+ """
+ '''.format(**locals())))
+ HintingEnumerator(fmt).module(import_name)
+ fmt.print()
+ fmt.print("# eof")
+ # Postprocess: resolve the imports
with open(outfilepath, "w") as realfile:
wr = Writer(realfile)
outfile.seek(0)
@@ -282,23 +232,9 @@ def generate_pyi(import_name, outpath, options):
else:
wr.print(line)
logger.info("Generated: {outfilepath}".format(**locals()))
- if is_py3:
+ if is_py3 and (options.check or is_ci):
# Python 3: We can check the file directly if the syntax is ok.
subprocess.check_output([sys.executable, outfilepath])
- return 1
-
-
-@contextmanager
-def single_process(lockdir):
- try:
- os.mkdir(lockdir)
- try:
- yield lockdir
- finally:
- # make sure to cleanup, even if we leave with CTRL-C
- os.rmdir(lockdir)
- except OSError:
- yield None
def generate_all_pyi(outpath, options):
@@ -316,69 +252,40 @@ def generate_all_pyi(outpath, options):
from PySide2.support.signature import inspect
from PySide2.support.signature.lib.enum_sig import HintingEnumerator
- valid = check = 0
- if not outpath:
- outpath = os.path.dirname(PySide2.__file__)
- lockdir = os.path.join(outpath, "generate_pyi.lockdir")
-
- pyi_var = "GENERATE_PYI_RECURSE {}".format(math.pi) # should not be set by anybody
- if not os.environ.get(pyi_var, ""):
- # To catch a possible crash, we run as a subprocess:
- os.environ[pyi_var] = "yes"
- ret = subprocess.call([sys.executable] + sys.argv)
- if ret and os.path.exists(lockdir):
- os.rmdir(lockdir)
- sys.exit(ret)
- # We are the subprocess. Do the real work.
- with single_process(lockdir) as locked:
- if locked:
- if is_ci:
- # When COIN is running, we sometimes get racing conditions with
- # the windows manifest tool which wants access to a module that
- # we already have imported. But when we wait until all binaries
- # are created, that cannot happen, because we are then the last
- # process, and the tool has already been run.
- bin_pattern = "Qt*.pyd" if sys.platform == "win32" else "Qt*.so"
- search = os.path.join(PySide2.__path__[0], bin_pattern)
- if len(glob.glob(search)) < len(PySide2.__all__):
- return
- for mod_name in PySide2.__all__:
- import_name = "PySide2." + mod_name
- step = generate_pyi(import_name, outpath, options)
- valid += abs(step)
- check += step
-
- npyi = len(PySide2.__all__)
- # Prevent too many messages when '--reuse-build' is used. We check that
- # all files are created, but at least one was really computed.
- if valid == npyi and check != -npyi:
- logger.info("+++ All {npyi} .pyi files have been created.".format(**locals()))
+ outpath = outpath or os.path.dirname(PySide2.__file__)
+ name_list = PySide2.__all__ if options.modules == ["all"] else options.modules
+ errors = ", ".join(set(name_list) - set(PySide2.__all__))
+ if errors:
+ raise ImportError("The module(s) '{errors}' do not exist".format(**locals()))
+ quirk1, quirk2 = "QtMultimedia", "QtMultimediaWidgets"
+ if name_list == [quirk1]:
+ logger.debug("Note: We must defer building of {quirk1}.pyi until {quirk2} "
+ "is available".format(**locals()))
+ name_list = []
+ elif name_list == [quirk2]:
+ name_list = [quirk1, quirk2]
+ for mod_name in name_list:
+ import_name = "PySide2." + mod_name
+ generate_pyi(import_name, outpath, options)
if __name__ == "__main__":
- parser = argparse.ArgumentParser()
- subparsers = parser.add_subparsers(dest="command")
- # create the parser for the "run" command
- parser_run = subparsers.add_parser("run",
- help="run the generation",
+ parser = argparse.ArgumentParser(
description="This script generates the .pyi file for all PySide modules.")
- parser_run.add_argument("--skip", action="store_true",
- help="skip existing files")
- parser_run.add_argument("--quiet", action="store_true", help="Run quietly")
- parser_run.add_argument("--outpath",
+ parser.add_argument("modules", nargs="+",
+ help="'all' or the names of modules to build (QtCore QtGui etc.)")
+ parser.add_argument("--quiet", action="store_true", help="Run quietly")
+ parser.add_argument("--check", action="store_true", help="Test the output if on Python 3")
+ parser.add_argument("--outpath",
help="the output directory (default = binary location)")
- parser_run.add_argument("--sys-path", nargs="+",
+ parser.add_argument("--sys-path", nargs="+",
help="a list of strings prepended to sys.path")
options = parser.parse_args()
- if options.command == "run":
- if options.quiet:
- logger.setLevel(logging.WARNING)
- outpath = options.outpath
- if outpath and not os.path.exists(outpath):
- os.makedirs(outpath)
- logger.info("+++ Created path {outpath}".format(**locals()))
- generate_all_pyi(outpath, options=options)
- else:
- parser_run.print_help()
- sys.exit(1)
+ if options.quiet:
+ logger.setLevel(logging.WARNING)
+ outpath = options.outpath
+ if outpath and not os.path.exists(outpath):
+ os.makedirs(outpath)
+ logger.info("+++ Created path {outpath}".format(**locals()))
+ generate_all_pyi(outpath, options=options)
# eof
diff --git a/sources/pyside2/cmake/Macros/PySideModules.cmake b/sources/pyside2/cmake/Macros/PySideModules.cmake
index 77dc8c8ac..dca00ec11 100644
--- a/sources/pyside2/cmake/Macros/PySideModules.cmake
+++ b/sources/pyside2/cmake/Macros/PySideModules.cmake
@@ -162,27 +162,38 @@ macro(create_pyside_module)
# Need to set the LD_ env vars before invoking the script, because it might use build-time
# libraries instead of install time libraries.
if (WIN32)
- set(ld_prefix "PATH=")
+ set(ld_prefix_var_name "PATH")
elseif(APPLE)
- set(ld_prefix "DYLD_LIBRARY_PATH=")
+ set(ld_prefix_var_name "DYLD_LIBRARY_PATH")
else()
- set(ld_prefix "LD_LIBRARY_PATH=")
+ set(ld_prefix_var_name "LD_LIBRARY_PATH")
endif()
- set(ld_prefix "${ld_prefix}${pysidebindings_BINARY_DIR}/libpyside${PATH_SEP}${SHIBOKEN_SHARED_LIBRARY_DIR}")
+ set(ld_prefix "${ld_prefix_var_name}=${pysidebindings_BINARY_DIR}/libpyside${PATH_SEP}${SHIBOKEN_SHARED_LIBRARY_DIR}")
- # On Windows we also need to propagate the whole environment PATH value, because pyside modules
- # import Qt, and the Qt modules are found from PATH.
+ # Append any existing ld_prefix values, so existing PATH, LD_LIBRARY_PATH, etc.
+ # On Windows it is needed because pyside modules import Qt,
+ # and the Qt modules are found from PATH.
+ # On Linux and macOS, existing values might be set to find system libraries correctly.
+ # For example on openSUSE when compiling with icc, libimf.so from Intel has to be found.
if(WIN32)
# Get the value of PATH with CMake separators.
- file(TO_CMAKE_PATH "$ENV{PATH}" path_value)
+ file(TO_CMAKE_PATH "$ENV{${ld_prefix_var_name}}" path_value)
# Replace the CMake list separators with "\;"s, to avoid the PATH values being
# interpreted as CMake list elements, we actually want to pass the whole string separated
# by ";" to the command line.
- make_path(path_value "${path_value}")
- string(APPEND ld_prefix "${PATH_SEP}${path_value}")
+ if(path_value)
+ make_path(path_value "${path_value}")
+ string(APPEND ld_prefix "${PATH_SEP}${path_value}")
+ endif()
+ else()
+ # Handles both macOS and Linux.
+ set(env_value "$ENV{${ld_prefix_var_name}}")
+ if(env_value)
+ string(APPEND ld_prefix ":${env_value}")
+ endif()
endif()
- set(generate_pyi_options run --skip --sys-path
+ set(generate_pyi_options ${module_NAME} --sys-path
"${pysidebindings_BINARY_DIR}"
"${SHIBOKEN_PYTHON_MODULE_DIR}")
if (QUIET_BUILD)
diff --git a/sources/pyside2/tests/QtGui/CMakeLists.txt b/sources/pyside2/tests/QtGui/CMakeLists.txt
index 31747659e..927e72468 100644
--- a/sources/pyside2/tests/QtGui/CMakeLists.txt
+++ b/sources/pyside2/tests/QtGui/CMakeLists.txt
@@ -40,6 +40,7 @@ PYSIDE_TEST(qrasterwindow_test.py)
PYSIDE_TEST(qopenglwindow_test.py)
PYSIDE_TEST(qregion_test.py)
PYSIDE_TEST(qstylehints_test.py)
+PYSIDE_TEST(qtextdocument_functions.py)
PYSIDE_TEST(qtextdocument_undoredo_test.py)
PYSIDE_TEST(qtextdocumentwriter_test.py)
PYSIDE_TEST(qtextline_test.py)
diff --git a/sources/pyside2/tests/QtGui/qtextdocument_functions.py b/sources/pyside2/tests/QtGui/qtextdocument_functions.py
new file mode 100644
index 000000000..f1376aa5b
--- /dev/null
+++ b/sources/pyside2/tests/QtGui/qtextdocument_functions.py
@@ -0,0 +1,47 @@
+#############################################################################
+##
+## Copyright (C) 2019 The Qt Company Ltd.
+## Contact: https://www.qt.io/licensing/
+##
+## This file is part of the test suite of Qt for Python.
+##
+## $QT_BEGIN_LICENSE:GPL-EXCEPT$
+## Commercial License Usage
+## Licensees holding valid commercial Qt licenses may use this file in
+## accordance with the commercial license agreement provided with the
+## Software or, alternatively, in accordance with the terms contained in
+## a written agreement between you and The Qt Company. For licensing terms
+## and conditions see https://www.qt.io/terms-conditions. For further
+## information use the contact form at https://www.qt.io/contact-us.
+##
+## GNU General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU
+## General Public License version 3 as published by the Free Software
+## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+## included in the packaging of this file. Please review the following
+## information to ensure the GNU General Public License requirements will
+## be met: https://www.gnu.org/licenses/gpl-3.0.html.
+##
+## $QT_END_LICENSE$
+##
+#############################################################################
+
+import unittest
+
+from PySide2.QtGui import Qt
+from PySide2.QtCore import QTextCodec
+
+
+class QTextDocumentFunctions(unittest.TestCase):
+
+ def testFunctions(self):
+ self.assertFalse(Qt.mightBeRichText('bla'))
+ self.assertTrue(Qt.mightBeRichText('<html><head/><body><p>bla</p></body></html>'))
+ html = Qt.convertFromPlainText("A & B", Qt.WhiteSpaceNormal)
+ self.assertEqual(html, '<p>A &amp; B</p>')
+ codec = Qt.codecForHtml(b'bla')
+ self.assertTrue(codec)
+
+
+if __name__ == '__main__':
+ unittest.main()