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
|
// This implements the helpers for QObject.
//
// Copyright (c) 2010 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt.
//
// This file may be used under the terms of the GNU General Public
// License versions 2.0 or 3.0 as published by the Free Software
// Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
// included in the packaging of this file. Alternatively you may (at
// your option) use any later version of the GNU General Public
// License if such license has been publicly approved by Riverbank
// Computing Limited (or its successors, if any) and the KDE Free Qt
// Foundation. In addition, as a special exception, Riverbank gives you
// certain additional rights. These rights are described in the Riverbank
// GPL Exception version 1.1, which can be found in the file
// GPL_EXCEPTION.txt in this package.
//
// Please review the following information to ensure GNU General
// Public Licensing requirements will be met:
// http://trolltech.com/products/qt/licenses/licensing/opensource/. If
// you are unsure which license is appropriate for your use, please
// review the following information:
// http://trolltech.com/products/qt/licenses/licensing/licensingoverview
// or contact the sales department at sales@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#include <ctype.h>
#include <Python.h>
#include <QMetaObject>
#include <QMetaType>
#include <QObject>
#include <QVariant>
#include "qpycore_chimera.h"
#include "qpycore_pyqtboundsignal.h"
#include "qpycore_pyqtproxy.h"
#include "qpycore_pyqtproperty.h"
#include "qpycore_pyqtpyobject.h"
#include "qpycore_qobject_helpers.h"
#include "qpycore_sip.h"
#include "qpycore_sip_helpers.h"
#include "qpycore_types.h"
// Forward declarations.
static int qt_metacall_worker(sipSimpleWrapper *pySelf, PyTypeObject *pytype,
sipTypeDef *base, QMetaObject::Call _c, int _id, void **_a);
// This is the helper for all implementations of QObject::metaObject().
const QMetaObject *qpycore_qobject_metaobject(sipSimpleWrapper *pySelf,
sipTypeDef *base)
{
// Return the dynamic meta-object if there is one.
if (pySelf && ((pyqtWrapperType *)Py_TYPE(pySelf))->metaobject)
return &((pyqtWrapperType *)Py_TYPE(pySelf))->metaobject->mo;
// Fall back to the static Qt meta-object.
return reinterpret_cast<const QMetaObject *>(((pyqt4ClassTypeDef *)base)->qt4_static_metaobject);
}
// This is the helper for all implementations of QObject::qt_metacall().
int qpycore_qobject_qt_metacall(sipSimpleWrapper *pySelf, sipTypeDef *base,
QMetaObject::Call _c, int _id, void **_a)
{
// Check if the Python object has gone.
if (!pySelf)
return -1;
SIP_BLOCK_THREADS
_id = qt_metacall_worker(pySelf, Py_TYPE(pySelf), base, _c, _id, _a);
SIP_UNBLOCK_THREADS
return _id;
}
// This does the real work for all implementations of QObject::qt_metacall().
static int qt_metacall_worker(sipSimpleWrapper *pySelf, PyTypeObject *pytype,
sipTypeDef *base, QMetaObject::Call _c, int _id, void **_a)
{
// See if this is a wrapped C++ type rather than a Python sub-type.
if (pytype == sipTypeAsPyTypeObject(base))
return _id;
_id = qt_metacall_worker(pySelf, pytype->tp_base, base, _c, _id, _a);
if (_id < 0)
return _id;
pyqtWrapperType *pyqt_wt = (pyqtWrapperType *)pytype;
qpycore_metaobject *qo = pyqt_wt->metaobject;
bool ok = true;
if (_c == QMetaObject::InvokeMetaMethod)
{
if (_id < qo->nr_signals + qo->pslots.count())
{
if (_id < qo->nr_signals)
{
QObject *qthis = reinterpret_cast<QObject *>(sipGetCppPtr(pySelf, sipType_QObject));
Py_BEGIN_ALLOW_THREADS
QMetaObject::activate(qthis, &qo->mo, _id, _a);
Py_END_ALLOW_THREADS
}
else
{
// We take a copy just to be safe.
qpycore_slot slot = qo->pslots.at(_id - qo->nr_signals);
// Set up the instance specific parts.
slot.sip_slot.meth.mself = (PyObject *)pySelf;
PyObject *py = PyQtProxy::invokeSlot(slot, _a);
if (!py)
ok = false;
else
{
if (_a[0] && slot.signature->result)
{
ok = slot.signature->result->fromPyObject(py, _a[0]);
}
Py_DECREF(py);
}
}
}
_id -= qo->nr_signals + qo->pslots.count();
}
else if (_c == QMetaObject::ReadProperty)
{
if (_id < qo->pprops.count())
{
qpycore_pyqtProperty *prop = qo->pprops.at(_id);
if (prop->prop_get)
{
PyObject *py = PyObject_CallFunction(prop->prop_get,
const_cast<char *>("O"), pySelf);
if (py)
{
// Get the underlying QVariant.
QVariant *var = reinterpret_cast<QVariant *>(_a[1]);
// This tells QMetaProperty::read() to use the new contents
// of the QVariant it provided.
_a[1] = 0;
ok = prop->pyqtprop_parsed_type->fromPyObject(py, var);
Py_DECREF(py);
}
else
ok = false;
}
}
_id -= qo->pprops.count();
}
else if (_c == QMetaObject::WriteProperty)
{
if (_id < qo->pprops.count())
{
qpycore_pyqtProperty *prop = qo->pprops.at(_id);
if (prop->prop_set)
{
// _a is an array whose length and contents vary according to
// the version of Qt. Prior to v4.6 _a[1] was the address of
// the QVariant containing the property value and _a[0] was the
// address of the actual data in the QVariant. We used to
// convert the QVariant at _a[1], rather than the data at
// _a[0], which gave us a little bit more type checking. In Qt
// v4.6 the QPropertyAnimation class contains an optimised path
// that bypasses QMetaProperty and only sets _a[0], so now
// that is all we can rely on.
PyObject *py = prop->pyqtprop_parsed_type->toPyObject(_a[0]);
if (py)
{
PyObject *res = PyObject_CallFunction(prop->prop_set,
const_cast<char *>("OO"), pySelf, py);
if (res)
Py_DECREF(res);
else
ok = false;
Py_DECREF(py);
}
else
ok = false;
}
}
_id -= qo->pprops.count();
}
else if (_c == QMetaObject::ResetProperty)
{
if (_id < qo->pprops.count())
{
qpycore_pyqtProperty *prop = qo->pprops.at(_id);
if (prop->pyqtprop_reset)
{
PyObject *py = PyObject_CallFunction(prop->pyqtprop_reset,
const_cast<char *>("O"), pySelf);
if (py)
Py_DECREF(py);
else
ok = false;
}
}
_id -= qo->pprops.count();
}
else if (_c == QMetaObject::QueryPropertyDesignable)
_id -= qo->pprops.count();
else if (_c == QMetaObject::QueryPropertyScriptable)
_id -= qo->pprops.count();
else if (_c == QMetaObject::QueryPropertyStored)
_id -= qo->pprops.count();
else if (_c == QMetaObject::QueryPropertyEditable)
_id -= qo->pprops.count();
else if (_c == QMetaObject::QueryPropertyUser)
_id -= qo->pprops.count();
// Handle any Python errors.
if (!ok)
{
PyErr_Print();
return -1;
}
return _id;
}
// This is the helper for all implementations of QObject::qt_metacast().
int qpycore_qobject_qt_metacast(sipSimpleWrapper *pySelf, sipTypeDef *base,
const char *_clname)
{
if (!_clname)
return 0;
// Check if the Python object has gone.
if (!pySelf)
return 0;
int is_py_class = 0;
SIP_BLOCK_THREADS
PyObject *mro = Py_TYPE(pySelf)->tp_mro;
for (int i = 0; i < PyTuple_GET_SIZE(mro); ++i)
{
PyTypeObject *pytype = (PyTypeObject *)PyTuple_GET_ITEM(mro, i);
if (pytype == sipTypeAsPyTypeObject(base))
break;
if (qstrcmp(pytype->tp_name, _clname) == 0)
{
is_py_class = 1;
break;
}
}
SIP_UNBLOCK_THREADS
return is_py_class;
}
// This is a helper for QObject.staticMetaObject %GetCode.
PyObject *qpycore_qobject_staticmetaobject(PyObject *type_obj)
{
pyqtWrapperType *pyqt_wt = (pyqtWrapperType *)type_obj;
const QMetaObject *mo;
if (pyqt_wt->metaobject)
// It's a sub-type of a wrapped type.
mo = &pyqt_wt->metaobject->mo;
else
// It's a wrapped type.
mo = reinterpret_cast<const QMetaObject *>(((pyqt4ClassTypeDef *)((sipWrapperType *)pyqt_wt)->type)->qt4_static_metaobject);
return sipConvertFromType(const_cast<QMetaObject *>(mo), sipType_QMetaObject, 0);
}
// This is a helper for QObject.sender().
QObject *qpycore_qobject_sender()
{
// Handle the trivial case.
if (!PyQtProxy::last_sender)
return 0;
// See if it is a short-circuit signal proxy.
PyQtShortcircuitSignalProxy *ssp = qobject_cast<PyQtShortcircuitSignalProxy *>(PyQtProxy::last_sender);
if (ssp)
return ssp->parent();
// See if it is an ordinary signal proxy.
if (qstrcmp(PyQtProxy::last_sender->metaObject()->className(), "PyQtProxy") == 0)
return static_cast<PyQtProxy *>(PyQtProxy::last_sender)->transmitter;
return PyQtProxy::last_sender;
}
// This is a helper for QObject.receivers() that returns the number of
// receivers for an object if it is a signal proxy. It is exported because
// QObject::receivers() is protected.
int qpycore_qobject_receivers(QObject *obj, const char *signal, int nr)
{
// Find the object that is really emitting the signal.
QObject *qtx = qpycore_find_signal(obj, &signal);
if (!qtx)
return 0;
// If the emitter is the same then it is a Qt signal and the supplied
// value is the correct one.
if (qtx == obj)
return nr;
// See if it is a short-circuit signal proxy.
PyQtShortcircuitSignalProxy *ssp = qobject_cast<PyQtShortcircuitSignalProxy *>(qtx);
if (ssp)
return ssp->getReceivers(signal);
if (qstrcmp(qtx->metaObject()->className(), "PyQtProxy") == 0)
return static_cast<const PyQtProxy *>(qtx)->getReceivers(signal);
// We should never get here.
return 0;
}
|