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
|
// This is the implementation of the pyqtSlot decorator.
//
// 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 <QByteArray>
#include "qpycore_api.h"
#include "qpycore_chimera.h"
#include "qpycore_misc.h"
#include "qpycore_objectified_strings.h"
// Forward declarations.
extern "C" {static PyObject *decorator(PyObject *self, PyObject *f);}
// This implements the pyqtSlot decorator.
PyObject *qpycore_pyqtslot(PyObject *args, PyObject *kwds)
{
const char *name_str = 0;
PyObject *res_obj = 0;
int revision = 0;
static const char *kwlist[] = {"name", "result", "revision", 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, "|sOi:pyqtSlot",
const_cast<char **>(kwlist), &name_str, &res_obj, &revision))
return 0;
Chimera::Signature *parsed_sig = Chimera::parse(args, name_str,
"a pyqtSlot type argument");
if (!parsed_sig)
return 0;
// Sticking the revision here is an awful hack, but it saves creating
// another data structure wrapped in a capsule.
parsed_sig->revision = revision;
// Parse any result type.
if (res_obj)
{
parsed_sig->result = Chimera::parse(res_obj);
if (!parsed_sig->result)
{
Chimera::raiseParseException(res_obj, "a pyqtSlot result");
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 = {
#if PY_VERSION_HEX >= 0x02050000
"_deco", decorator, METH_O, 0
#else
const_cast<char *>("_deco"), decorator, METH_O, 0
#endif
};
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_dunder_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_dunder_pyqtsignature);
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_SetItem(decorations, 0, self);
// Save the new decoration.
rc = PyObject_SetAttr(f, qpycore_dunder_pyqtsignature, decorations);
}
Py_DECREF(decorations);
if (rc < 0)
return 0;
// Return the function.
Py_INCREF(f);
return f;
}
|