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
|
// This is the implementation of the pySlot (and deprecated pyqtSignature)
// decorator.
//
// Copyright (c) 2015 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt4.
//
// 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 <QtGlobal>
#include <QByteArray>
#include <QMetaObject>
#include "qpycore_chimera.h"
#include "qpycore_misc.h"
#include "qpycore_sip.h"
// Forward declarations.
static PyObject *decorate(Chimera::Signature *parsed_sig, PyObject *res_obj,
const char *context);
extern "C" {static PyObject *decorator(PyObject *self, PyObject *f);}
// Get the bound QObject and slot signature from a callable (which should be a
// decorated method).
QByteArray qpycore_pyqtslot_get_parts(PyObject *callable, QObject **qrx)
{
PyObject *qobj_obj, *decorations;
int is_err = 0;
void *qobj;
Chimera::Signature *sig;
QByteArray slot;
// Get the QObject.
qobj_obj = PyMethod_Self(callable);
if (!qobj_obj)
goto bad_callable;
qobj = sipForceConvertToType(qobj_obj, sipType_QObject, 0,
SIP_NO_CONVERTORS, 0, &is_err);
if (is_err)
goto bad_callable;
*qrx = reinterpret_cast<QObject *>(qobj);
// Get the decoration.
decorations = PyObject_GetAttr(callable, qpycore_signature_attr_name);
if (!decorations)
goto bad_callable;
// Use the first one ignoring any others.
sig = Chimera::Signature::fromPyObject(PyList_GET_ITEM(decorations, 0));
Py_DECREF(decorations);
slot = sig->signature;
slot.prepend('1');
return slot;
bad_callable:
PyErr_SetString(PyExc_TypeError,
"callable must be a method of a QtCore.QObject instance decorated "
"by QtCore.pyqtSlot");
return QByteArray();
}
// This implements the pyqtSlot decorator.
PyObject *qpycore_pyqtslot(PyObject *args, PyObject *kwds)
{
const char *name_str = 0;
PyObject *res_obj = 0;
static const char *kwlist[] = {"name", "result", 0};
static PyObject *no_args = 0;
if (!no_args)
{
no_args = PyTuple_New(0);
if (!no_args)
return 0;
}
if (!PyArg_ParseTupleAndKeywords(no_args, kwds,
#if PY_VERSION_HEX >= 0x02050000
"|sO:pyqtSlot",
#else
const_cast<char *>("|sO:pyqtSlot"),
#endif
const_cast<char **>(kwlist), &name_str, &res_obj))
return 0;
Chimera::Signature *parsed_sig = Chimera::parse(args, name_str,
"a pyqtSlot type argument");
if (!parsed_sig)
return 0;
return decorate(parsed_sig, res_obj, "a pyqtSlot result");
}
// This implements the pyqtSignature decorator.
PyObject *qpycore_pyqtsignature(PyObject *args, PyObject *kwds)
{
const char *sig_str;
PyObject *res_obj = 0;
static const char *kwlist[] = {"signature", "result", 0};
if (!PyArg_ParseTupleAndKeywords(args, kwds,
#if PY_VERSION_HEX >= 0x02050000
"s|O:pyqtSignature",
#else
const_cast<char *>("s|O:pyqtSignature"),
#endif
const_cast<char **>(kwlist), &sig_str, &res_obj))
return 0;
// Parse the signature.
QByteArray sig(sig_str);
// Make sure the signature has parentheses before normalising it.
if (!sig.contains('('))
{
sig.prepend('(');
sig.append(')');
}
sig = QMetaObject::normalizedSignature(sig);
Chimera::Signature *parsed_sig = Chimera::parse(sig,
"a pyqtSlot signature argument");
if (!parsed_sig)
return 0;
return decorate(parsed_sig, res_obj, "a pyqtSignature result");
}
// Decorate the method now the arguments have been parsed.
static PyObject *decorate(Chimera::Signature *parsed_sig, PyObject *res_obj,
const char *context)
{
// Parse any result type.
if (res_obj)
{
parsed_sig->result = Chimera::parse(res_obj);
if (!parsed_sig->result)
{
Chimera::raiseParseException(res_obj, context);
delete parsed_sig;
return 0;
}
}
// Wrap the parsed signature in a Python object.
PyObject *sig_obj = Chimera::Signature::toPyObject(parsed_sig);
if (!sig_obj)
return 0;
// Create the decorator function itself. We stash the arguments in "self".
// This may be an abuse, but it seems to be Ok.
static PyMethodDef deco_method = {
SIP_MLNAME_CAST("_deco"), decorator, METH_O, 0
};
PyObject *obj = PyCFunction_New(&deco_method, sig_obj);
Py_DECREF(sig_obj);
return obj;
}
// This is the decorator function that saves the C++ signature as a function
// attribute.
static PyObject *decorator(PyObject *self, PyObject *f)
{
Chimera::Signature *parsed_sig = Chimera::Signature::fromPyObject(self);
const QByteArray &sig = parsed_sig->signature;
// Use the function name if there isn't already one.
if (sig.startsWith('('))
{
// Get the function's name.
PyObject *nobj = PyObject_GetAttr(f, qpycore_name_attr_name);
if (!nobj)
return 0;
PyObject *ascii_obj = nobj;
const char *ascii = sipString_AsASCIIString(&ascii_obj);
Py_DECREF(nobj);
if (!ascii)
return 0;
parsed_sig->signature.prepend(ascii);
parsed_sig->py_signature.prepend(ascii);
Py_DECREF(ascii_obj);
}
// See if the function has already been decorated.
PyObject *decorations = PyObject_GetAttr(f, qpycore_signature_attr_name);
int rc;
if (decorations)
{
// Insert the new decoration at the head of the existing ones so that
// the list order matches the order they appear in the script.
rc = PyList_Insert(decorations, 0, self);
}
else
{
PyErr_Clear();
decorations = PyList_New(1);
if (!decorations)
return 0;
Py_INCREF(self);
PyList_SET_ITEM(decorations, 0, self);
// Save the new decoration.
rc = PyObject_SetAttr(f, qpycore_signature_attr_name, decorations);
}
Py_DECREF(decorations);
if (rc < 0)
return 0;
// Return the function.
Py_INCREF(f);
return f;
}
|