aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/libpyside
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/libpyside')
-rw-r--r--sources/pyside6/libpyside/globalreceiverv2.cpp28
-rw-r--r--sources/pyside6/libpyside/pysidesignal.cpp111
-rw-r--r--sources/pyside6/libpyside/pysidestaticstrings.cpp3
-rw-r--r--sources/pyside6/libpyside/pysidestaticstrings.h3
4 files changed, 124 insertions, 21 deletions
diff --git a/sources/pyside6/libpyside/globalreceiverv2.cpp b/sources/pyside6/libpyside/globalreceiverv2.cpp
index 1bbafb4ec..c8a6e9f99 100644
--- a/sources/pyside6/libpyside/globalreceiverv2.cpp
+++ b/sources/pyside6/libpyside/globalreceiverv2.cpp
@@ -40,6 +40,7 @@
#include "globalreceiverv2.h"
#include "dynamicqmetaobject_p.h"
#include "pysideweakref.h"
+#include "pysidestaticstrings.h"
#include "signalmanager.h"
#include <autodecref.h>
@@ -101,21 +102,35 @@ class DynamicSlotDataV2
using namespace PySide;
DynamicSlotDataV2::DynamicSlotDataV2(PyObject *callback, GlobalReceiverV2 *parent) :
- m_isMethod(PyMethod_Check(callback)),
m_parent(parent)
{
Shiboken::GilState gil;
- if (m_isMethod) {
- //Can not store calback pointe because this will be destroyed at the end of the scope
- //To avoid increment intance reference keep the callback information
+ if (PyMethod_Check(callback)) {
+ m_isMethod = true;
+ // To avoid increment instance reference keep the callback information
m_callback = PyMethod_GET_FUNCTION(callback);
+ Py_INCREF(m_callback);
m_pythonSelf = PyMethod_GET_SELF(callback);
//monitor class from method lifetime
m_weakRef = WeakRef::create(m_pythonSelf, DynamicSlotDataV2::onCallbackDestroyed, this);
+ } else if (PyObject_HasAttr(callback, PySide::PyName::im_func())
+ && PyObject_HasAttr(callback, PySide::PyName::im_self())) {
+ // PYSIDE-1523: PyMethod_Check is not accepting compiled form, we just go by attributes.
+ m_isMethod = true;
+
+ m_callback = PyObject_GetAttr(callback, PySide::PyName::im_func());
+ Py_DECREF(m_callback);
+
+ m_pythonSelf = PyObject_GetAttr(callback, PySide::PyName::im_self());
+ Py_DECREF(m_pythonSelf);
+ //monitor class from method lifetime
+ m_weakRef = WeakRef::create(m_pythonSelf, DynamicSlotDataV2::onCallbackDestroyed, this);
} else {
+ m_isMethod = false;
+
m_callback = callback;
Py_INCREF(m_callback);
}
@@ -137,7 +152,7 @@ PyObject *DynamicSlotDataV2::callback()
//create a callback based on method data
if (m_isMethod)
- callback = PyMethod_New(m_callback, m_pythonSelf);
+ callback = Py_TYPE(m_callback)->tp_descr_get(m_callback, m_pythonSelf, nullptr);
else
Py_INCREF(callback);
@@ -174,8 +189,7 @@ DynamicSlotDataV2::~DynamicSlotDataV2()
Py_XDECREF(m_weakRef);
m_weakRef = nullptr;
- if (!m_isMethod)
- Py_DECREF(m_callback);
+ Py_DECREF(m_callback);
}
GlobalReceiverV2::GlobalReceiverV2(PyObject *callback, GlobalReceiverV2MapPtr map) :
diff --git a/sources/pyside6/libpyside/pysidesignal.cpp b/sources/pyside6/libpyside/pysidesignal.cpp
index 0eedae39c..faa6fdce1 100644
--- a/sources/pyside6/libpyside/pysidesignal.cpp
+++ b/sources/pyside6/libpyside/pysidesignal.cpp
@@ -309,6 +309,82 @@ static void signalInstanceFree(void *self)
Py_TYPE(pySelf)->tp_base->tp_free(self);
}
+// PYSIDE-1523: PyFunction_Check is not accepting compiled functions and
+// PyMethod_Check is not allowing compiled methods, therefore also lookup
+// "im_func" and "__code__" attributes, we allow for that with a dedicated
+// function handling both.
+static void extractFunctionArgumentsFromSlot(PyObject *slot,
+ PyObject *& function,
+ PepCodeObject *& objCode,
+ bool &isMethod,
+ QByteArray *functionName)
+{
+ isMethod = PyMethod_Check(slot);
+ bool isFunction = PyFunction_Check(slot);
+
+ function = nullptr;
+ objCode = nullptr;
+
+ if (isMethod || isFunction) {
+ function = isMethod ? PyMethod_GET_FUNCTION(slot) : slot;
+ objCode = reinterpret_cast<PepCodeObject *>(PyFunction_GET_CODE(function));
+
+ if (functionName != nullptr) {
+ *functionName = Shiboken::String::toCString(PepFunction_GetName(function));
+ }
+ } else if (PyObject_HasAttr(slot, PySide::PyName::im_func())) {
+ // PYSIDE-1523: PyFunction_Check and PyMethod_Check are not accepting compiled forms, we
+ // just go by attributes.
+ isMethod = true;
+
+ function = PyObject_GetAttr(slot, PySide::PyName::im_func());
+
+ // Not retaining a reference inline with what PyMethod_GET_FUNCTION does.
+ Py_DECREF(function);
+
+ if (functionName != nullptr) {
+ PyObject *name = PyObject_GetAttr(function, PySide::PyMagicName::name());
+ *functionName = Shiboken::String::toCString(name);
+ // Not retaining a reference inline with what PepFunction_GetName does.
+ Py_DECREF(name);
+ }
+
+ objCode = reinterpret_cast<PepCodeObject *>(
+ PyObject_GetAttr(function, PySide::PyMagicName::code()));
+ // Not retaining a reference inline with what PyFunction_GET_CODE does.
+ Py_XDECREF(objCode);
+
+ if (objCode == nullptr) {
+ // Should not happen, but lets handle it gracefully, maybe Nuitka one day
+ // makes these optional, or somebody defined a type named like it without
+ // it being actually being that.
+ function = nullptr;
+ }
+ } else if (strcmp(Py_TYPE(slot)->tp_name, "compiled_function") == 0) {
+ isMethod = false;
+ function = slot;
+
+ if (functionName != nullptr) {
+ PyObject *name = PyObject_GetAttr(function, PySide::PyMagicName::name());
+ *functionName = Shiboken::String::toCString(name);
+ // Not retaining a reference inline with what PepFunction_GetName does.
+ Py_DECREF(name);
+ }
+
+ objCode = reinterpret_cast<PepCodeObject *>(
+ PyObject_GetAttr(function, PySide::PyMagicName::code()));
+ // Not retaining a reference inline with what PyFunction_GET_CODE does.
+ Py_XDECREF(objCode);
+
+ if (objCode == nullptr) {
+ // Should not happen, but lets handle it gracefully, maybe Nuitka one day
+ // makes these optional, or somebody defined a type named like it without
+ // it being actually being that.
+ function = nullptr;
+ }
+ }
+}
+
static PyObject *signalInstanceConnect(PyObject *self, PyObject *args, PyObject *kwds)
{
PyObject *slot = nullptr;
@@ -349,17 +425,17 @@ static PyObject *signalInstanceConnect(PyObject *self, PyObject *args, PyObject
} else {
// Check signature of the slot (method or function) to match signal
int slotArgs = -1;
- bool useSelf = false;
- bool isMethod = PyMethod_Check(slot);
- bool isFunction = PyFunction_Check(slot);
bool matchedSlot = false;
PySideSignalInstance *it = source;
- if (isMethod || isFunction) {
- PyObject *function = isMethod ? PyMethod_GET_FUNCTION(slot) : slot;
- auto *objCode = reinterpret_cast<PepCodeObject *>(PyFunction_GET_CODE(function));
- useSelf = isMethod;
+ PyObject *function = nullptr;
+ PepCodeObject *objCode = nullptr;
+ bool useSelf = false;
+
+ extractFunctionArgumentsFromSlot(slot, function, objCode, useSelf, nullptr);
+
+ if (function != nullptr) {
slotArgs = PepCode_GET_FLAGS(objCode) & CO_VARARGS ? -1 : PepCode_GET_ARGCOUNT(objCode);
if (useSelf)
slotArgs -= 1;
@@ -942,15 +1018,14 @@ QString getCallbackSignature(const char *signal, QObject *receiver, PyObject *ca
{
QByteArray functionName;
int numArgs = -1;
+
+ PyObject *function = nullptr;
+ PepCodeObject *objCode = nullptr;
bool useSelf = false;
- bool isMethod = PyMethod_Check(callback);
- bool isFunction = PyFunction_Check(callback);
- if (isMethod || isFunction) {
- PyObject *function = isMethod ? PyMethod_GET_FUNCTION(callback) : callback;
- auto objCode = reinterpret_cast<PepCodeObject *>(PyFunction_GET_CODE(function));
- functionName = Shiboken::String::toCString(PepFunction_GetName(function));
- useSelf = isMethod;
+ extractFunctionArgumentsFromSlot(callback, function, objCode, useSelf, &functionName);
+
+ if (function != nullptr) {
numArgs = PepCode_GET_FLAGS(objCode) & CO_VARARGS ? -1 : PepCode_GET_ARGCOUNT(objCode);
} else if (PyCFunction_Check(callback)) {
const PyCFunctionObject *funcObj = reinterpret_cast<const PyCFunctionObject *>(callback);
@@ -1025,6 +1100,14 @@ QString codeCallbackName(PyObject *callback, const QString &funcName)
PyObject *func = PyMethod_GET_FUNCTION(callback);
return funcName + QString::number(quint64(self), 16) + QString::number(quint64(func), 16);
}
+ // PYSIDE-1523: Handle the compiled case.
+ if (PyObject_HasAttr(callback, PySide::PyName::im_func())
+ && PyObject_HasAttr(callback, PySide::PyName::im_self())) {
+ // Not retaining references inline with what PyMethod_GET_(SELF|FUNC) does.
+ Shiboken::AutoDecRef self(PyObject_GetAttr(callback, PySide::PyName::im_self()));
+ Shiboken::AutoDecRef func(PyObject_GetAttr(callback, PySide::PyName::im_func()));
+ return funcName + QString::number(quint64(self), 16) + QString::number(quint64(func), 16);
+ }
return funcName + QString::number(quint64(callback), 16);
}
diff --git a/sources/pyside6/libpyside/pysidestaticstrings.cpp b/sources/pyside6/libpyside/pysidestaticstrings.cpp
index 7705fd058..8f74cd19f 100644
--- a/sources/pyside6/libpyside/pysidestaticstrings.cpp
+++ b/sources/pyside6/libpyside/pysidestaticstrings.cpp
@@ -56,12 +56,15 @@ STATIC_STRING_IMPL(qtConnect, "connect")
STATIC_STRING_IMPL(qtDisconnect, "disconnect")
STATIC_STRING_IMPL(qtEmit, "emit")
STATIC_STRING_IMPL(dict_ring, "dict_ring")
+STATIC_STRING_IMPL(im_func, "im_func")
+STATIC_STRING_IMPL(im_self, "im_self")
STATIC_STRING_IMPL(name, "name")
STATIC_STRING_IMPL(property, "property")
STATIC_STRING_IMPL(select_id, "select_id")
} // namespace PyName
namespace PyMagicName
{
+STATIC_STRING_IMPL(code, "__code__")
STATIC_STRING_IMPL(doc, "__doc__")
STATIC_STRING_IMPL(func, "__func__")
STATIC_STRING_IMPL(name, "__name__")
diff --git a/sources/pyside6/libpyside/pysidestaticstrings.h b/sources/pyside6/libpyside/pysidestaticstrings.h
index 6774e936a..86e2515dc 100644
--- a/sources/pyside6/libpyside/pysidestaticstrings.h
+++ b/sources/pyside6/libpyside/pysidestaticstrings.h
@@ -51,12 +51,15 @@ PyObject *qtConnect();
PyObject *qtDisconnect();
PyObject *qtEmit();
PyObject *dict_ring();
+PyObject *im_func();
+PyObject *im_self();
PyObject *name();
PyObject *property();
PyObject *select_id();
} // namespace PyName
namespace PyMagicName
{
+PyObject *code();
PyObject *doc();
PyObject *func();
PyObject *name();