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
|
// This contains the implementation of the pyqtMethodProxy type.
//
// Copyright (c) 2018 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt5.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@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 <Python.h>
#include <sip.h>
#include <QGenericArgument>
#include <QGenericReturnArgument>
#include <QMetaMethod>
#include <QObject>
#include "qpycore_chimera.h"
#include "qpycore_pyqtmethodproxy.h"
// The type object.
PyTypeObject *qpycore_pyqtMethodProxy_TypeObject;
// Forward declarations.
extern "C" {
static PyObject *pyqtMethodProxy_call(PyObject *self, PyObject *args,
PyObject *kw_args);
static void pyqtMethodProxy_dealloc(PyObject *self);
}
static void parse_arg(PyObject *args, int arg_nr,
const QList<QByteArray> &types, QGenericArgument &arg,
Chimera::Storage **storage, bool &failed, const char *py_name);
#if PY_VERSION_HEX >= 0x03040000
// Define the slots.
static PyType_Slot qpycore_pyqtMethodProxy_Slots[] = {
{Py_tp_new, (void *)PyType_GenericNew},
{Py_tp_dealloc, (void *)pyqtMethodProxy_dealloc},
{Py_tp_call, (void *)pyqtMethodProxy_call},
{0, 0}
};
// Define the type.
static PyType_Spec qpycore_pyqtMethodProxy_Spec = {
"PyQt5.QtCore.pyqtMethodProxy",
sizeof (qpycore_pyqtMethodProxy),
0,
Py_TPFLAGS_DEFAULT,
qpycore_pyqtMethodProxy_Slots
};
#else
// Define the type.
static PyTypeObject qpycore_pyqtMethodProxy_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
#if PY_VERSION_HEX >= 0x02050000
"PyQt5.QtCore.pyqtMethodProxy", /* tp_name */
#else
const_cast<char *>("PyQt5.QtCore.pyqtMethodProxy"), /* tp_name */
#endif
sizeof (qpycore_pyqtMethodProxy), /* tp_basicsize */
0, /* tp_itemsize */
pyqtMethodProxy_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
pyqtMethodProxy_call, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
#if PY_VERSION_HEX >= 0x03040000
0, /* tp_finalize */
#endif
};
#endif
// The type dealloc slot.
static void pyqtMethodProxy_dealloc(PyObject *self)
{
qpycore_pyqtMethodProxy *mp = (qpycore_pyqtMethodProxy *)self;
delete mp->py_name;
PyObject_Del(self);
}
// The type call slot.
static PyObject *pyqtMethodProxy_call(PyObject *self, PyObject *args,
PyObject *kw_args)
{
qpycore_pyqtMethodProxy *mp = (qpycore_pyqtMethodProxy *)self;
const char *py_name = mp->py_name->constData();
// Check for keyword arguments.
if (kw_args)
{
PyErr_Format(PyExc_TypeError,
"%s() does not support keyword arguments", py_name);
return 0;
}
QMetaMethod method = mp->qobject->metaObject()->method(mp->method_index);
QList<QByteArray> arg_types = method.parameterTypes();
if (PyTuple_Size(args) != arg_types.size())
{
PyErr_Format(PyExc_TypeError,
"%s() called with %zd arguments but %d expected",
py_name, PyTuple_Size(args), arg_types.size());
return 0;
}
// Parse the return type and the arguments.
QGenericReturnArgument ret;
QGenericArgument a0, a1, a2, a3, a4, a5, a6, a7, a8, a9;
Chimera::Storage *return_storage, *storage[10];
QByteArray return_type(method.typeName());
bool failed = false;
return_storage = 0;
if (!return_type.isEmpty())
{
const Chimera *ct = Chimera::parse(return_type);
if (!ct)
{
PyErr_Format(PyExc_TypeError,
"unable to convert return value of %s from '%s' to a Python object",
py_name, return_type.constData());
return 0;
}
return_storage = ct->storageFactory();
ret = QGenericReturnArgument(return_type.constData(),
return_storage->address());
}
parse_arg(args, 0, arg_types, a0, storage, failed, py_name);
parse_arg(args, 1, arg_types, a1, storage, failed, py_name);
parse_arg(args, 2, arg_types, a2, storage, failed, py_name);
parse_arg(args, 3, arg_types, a3, storage, failed, py_name);
parse_arg(args, 4, arg_types, a4, storage, failed, py_name);
parse_arg(args, 5, arg_types, a5, storage, failed, py_name);
parse_arg(args, 6, arg_types, a6, storage, failed, py_name);
parse_arg(args, 7, arg_types, a7, storage, failed, py_name);
parse_arg(args, 8, arg_types, a8, storage, failed, py_name);
parse_arg(args, 9, arg_types, a9, storage, failed, py_name);
// Invoke the method.
PyObject *result = 0;
if (!failed)
{
failed = !method.invoke(mp->qobject, ret, a0, a1, a2, a3, a4, a5, a6,
a7, a8, a9);
if (failed)
{
PyErr_Format(PyExc_TypeError, "invocation of %s() failed", py_name);
}
else if (return_storage)
{
result = return_storage->toPyObject();
}
else
{
result = Py_None;
Py_INCREF(result);
}
}
// Release any storage.
if (return_storage)
{
delete return_storage->type();
delete return_storage;
}
for (int i = 0; i < 10; ++i)
{
Chimera::Storage *st = storage[i];
if (st)
{
delete st->type();
delete st;
}
}
return result;
}
// Convert a Python object to a QGenericArgument.
static void parse_arg(PyObject *args, int arg_nr,
const QList<QByteArray> &types, QGenericArgument &arg,
Chimera::Storage **storage, bool &failed, const char *py_name)
{
// Initialise so that we can safely release later.
storage[arg_nr] = 0;
// If we have already failed then there is nothing to do.
if (failed)
return;
// If we have run out of arguments then there is nothing to do.
if (arg_nr >= types.size())
return;
PyObject *py_arg = PyTuple_GetItem(args, arg_nr);
const QByteArray &cpp_type = types.at(arg_nr);
const Chimera *ct = Chimera::parse(cpp_type);
Chimera::Storage *st;
if (ct)
st = ct->fromPyObjectToStorage(py_arg);
else
st = 0;
if (!st)
{
if (ct)
delete ct;
PyErr_Format(PyExc_TypeError,
"unable to convert argument %d of %s from '%s' to '%s'",
arg_nr, py_name, sipPyTypeName(Py_TYPE(py_arg)),
cpp_type.constData());
failed = true;
return;
}
storage[arg_nr] = st;
arg = QGenericArgument(cpp_type.constData(), st->address());
}
// Initialise the type and return true if there was no error.
bool qpycore_pyqtMethodProxy_init_type()
{
#if PY_VERSION_HEX >= 0x03040000
qpycore_pyqtMethodProxy_TypeObject = (PyTypeObject *)PyType_FromSpec(
&qpycore_pyqtMethodProxy_Spec);
return qpycore_pyqtMethodProxy_TypeObject;
#else
if (PyType_Ready(&qpycore_pyqtMethodProxy_Type) < 0)
return false;
qpycore_pyqtMethodProxy_TypeObject = &qpycore_pyqtMethodProxy_Type;
return true;
#endif
}
// Create a proxy for a bound introspected method.
PyObject *qpycore_pyqtMethodProxy_New(QObject *qobject, int method_index,
const QByteArray &py_name)
{
qpycore_pyqtMethodProxy *mp;
mp = (qpycore_pyqtMethodProxy *)PyType_GenericAlloc(
qpycore_pyqtMethodProxy_TypeObject, 0);
if (!mp)
return 0;
mp->qobject = qobject;
mp->method_index = method_index;
mp->py_name = new QByteArray(py_name);
return (PyObject *)mp;
}
|