##// END OF EJS Templates
added support for setattr to allow derived classes to add own attributes...
florianlink -
r30:a523f73e74c6
parent child
Show More
@@ -1,293 +1,285
1 /*
1 /*
2 *
2 *
3 * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved.
3 * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved.
4 *
4 *
5 * This library is free software; you can redistribute it and/or
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
8 * version 2.1 of the License, or (at your option) any later version.
9 *
9 *
10 * This library is distributed in the hope that it will be useful,
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
13 * Lesser General Public License for more details.
14 *
14 *
15 * Further, this software is distributed without any warranty that it is
15 * Further, this software is distributed without any warranty that it is
16 * free of the rightful claim of any third person regarding infringement
16 * free of the rightful claim of any third person regarding infringement
17 * or the like. Any license provided herein, whether implied or
17 * or the like. Any license provided herein, whether implied or
18 * otherwise, applies only to this software file. Patent licenses, if
18 * otherwise, applies only to this software file. Patent licenses, if
19 * any, provided herein do not apply to combinations of this program with
19 * any, provided herein do not apply to combinations of this program with
20 * other software, or any other product whatsoever.
20 * other software, or any other product whatsoever.
21 *
21 *
22 * You should have received a copy of the GNU Lesser General Public
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
25 *
26 * Contact information: MeVis Research GmbH, Universitaetsallee 29,
26 * Contact information: MeVis Research GmbH, Universitaetsallee 29,
27 * 28359 Bremen, Germany or:
27 * 28359 Bremen, Germany or:
28 *
28 *
29 * http://www.mevis.de
29 * http://www.mevis.de
30 *
30 *
31 */
31 */
32
32
33 //----------------------------------------------------------------------------------
33 //----------------------------------------------------------------------------------
34 /*!
34 /*!
35 // \file PythonQtClassWrapper.cpp
35 // \file PythonQtClassWrapper.cpp
36 // \author Florian Link
36 // \author Florian Link
37 // \author Last changed by $Author: florian $
37 // \author Last changed by $Author: florian $
38 // \date 2006-05
38 // \date 2006-05
39 */
39 */
40 //----------------------------------------------------------------------------------
40 //----------------------------------------------------------------------------------
41
41
42 #include "PythonQtClassWrapper.h"
42 #include "PythonQtClassWrapper.h"
43 #include <QObject>
43 #include <QObject>
44
44
45 #include "PythonQt.h"
45 #include "PythonQt.h"
46 #include "PythonQtSlot.h"
46 #include "PythonQtSlot.h"
47 #include "PythonQtClassInfo.h"
47 #include "PythonQtClassInfo.h"
48 #include "PythonQtConversion.h"
48 #include "PythonQtConversion.h"
49 #include "PythonQtInstanceWrapper.h"
49 #include "PythonQtInstanceWrapper.h"
50
50
51 static PyObject* PythonQtClassWrapper_alloc(PyTypeObject *self, Py_ssize_t nitems)
51 static PyObject* PythonQtClassWrapper_alloc(PyTypeObject *self, Py_ssize_t nitems)
52 {
52 {
53 // call the default type alloc
53 // call the default type alloc
54 PyObject* obj = PyType_Type.tp_alloc(self, nitems);
54 PyObject* obj = PyType_Type.tp_alloc(self, nitems);
55
55
56 // take current class type, if we are called via newPythonQtClassWrapper()
56 // take current class type, if we are called via newPythonQtClassWrapper()
57 PythonQtClassWrapper* wrap = (PythonQtClassWrapper*)obj;
57 PythonQtClassWrapper* wrap = (PythonQtClassWrapper*)obj;
58 wrap->_classInfo = PythonQt::priv()->currentClassInfoForClassWrapperCreation();
58 wrap->_classInfo = PythonQt::priv()->currentClassInfoForClassWrapperCreation();
59
59
60 return obj;
60 return obj;
61 }
61 }
62
62
63
63
64 static int PythonQtClassWrapper_init(PythonQtClassWrapper* self, PyObject* args, PyObject* kwds)
64 static int PythonQtClassWrapper_init(PythonQtClassWrapper* self, PyObject* args, PyObject* kwds)
65 {
65 {
66 // call the default type init
66 // call the default type init
67 if (PyType_Type.tp_init((PyObject *)self, args, kwds) < 0) {
67 if (PyType_Type.tp_init((PyObject *)self, args, kwds) < 0) {
68 return -1;
68 return -1;
69 }
69 }
70
70
71 // if we have no CPP class information, try our base class
71 // if we have no CPP class information, try our base class
72 if (!self->classInfo()) {
72 if (!self->classInfo()) {
73 PyTypeObject* superType = ((PyTypeObject *)self)->tp_base;
73 PyTypeObject* superType = ((PyTypeObject *)self)->tp_base;
74
74
75 if (!superType || (superType->ob_type != &PythonQtClassWrapper_Type)) {
75 if (!superType || (superType->ob_type != &PythonQtClassWrapper_Type)) {
76 PyErr_Format(PyExc_TypeError, "type %s is not derived from PythonQtClassWrapper", ((PyTypeObject*)self)->tp_name);
76 PyErr_Format(PyExc_TypeError, "type %s is not derived from PythonQtClassWrapper", ((PyTypeObject*)self)->tp_name);
77 return -1;
77 return -1;
78 }
78 }
79
79
80 // take the class info from the superType
80 // take the class info from the superType
81 self->_classInfo = ((PythonQtClassWrapper*)superType)->classInfo();
81 self->_classInfo = ((PythonQtClassWrapper*)superType)->classInfo();
82 }
82 }
83
83
84 return 0;
84 return 0;
85 }
85 }
86
86
87 static PyObject *PythonQtClassWrapper_classname(PythonQtClassWrapper* type)
87 static PyObject *PythonQtClassWrapper_classname(PythonQtClassWrapper* type)
88 {
88 {
89 return PyString_FromString((QString("Class_") + type->classInfo()->className()).toLatin1().data());
89 return PyString_FromString((QString("Class_") + type->classInfo()->className()).toLatin1().data());
90 }
90 }
91
91
92 static PyObject *PythonQtClassWrapper_help(PythonQtClassWrapper* type)
92 static PyObject *PythonQtClassWrapper_help(PythonQtClassWrapper* type)
93 {
93 {
94 return PythonQt::self()->helpCalled(type->classInfo());
94 return PythonQt::self()->helpCalled(type->classInfo());
95 }
95 }
96
96
97 PyObject *PythonQtClassWrapper__init__(PythonQtClassWrapper *type, PyObject *args)
97 PyObject *PythonQtClassWrapper__init__(PythonQtClassWrapper *type, PyObject *args)
98 {
98 {
99 Py_ssize_t argc = PyTuple_Size(args);
99 Py_ssize_t argc = PyTuple_Size(args);
100 if (argc>0) {
100 if (argc>0) {
101 // we need to call __init__ of the instance
101 // we need to call __init__ of the instance
102 PyObject* self = PyTuple_GET_ITEM(args, 0);
102 PyObject* self = PyTuple_GET_ITEM(args, 0);
103 if (PyObject_TypeCheck(self, (PyTypeObject*)type->classInfo()->pythonQtClassWrapper())) {
103 if (PyObject_TypeCheck(self, (PyTypeObject*)type->classInfo()->pythonQtClassWrapper())) {
104 PyObject* newargs = PyTuple_New(argc-1);
104 PyObject* newargs = PyTuple_New(argc-1);
105 for (int i = 0;i<argc-1; i++) {
105 for (int i = 0;i<argc-1; i++) {
106 PyTuple_SET_ITEM(newargs, i,PyTuple_GET_ITEM(args, i+1));
106 PyTuple_SET_ITEM(newargs, i,PyTuple_GET_ITEM(args, i+1));
107 }
107 }
108 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)self;
108 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)self;
109 int result = PythonQtInstanceWrapper_init(wrapper, newargs, NULL);
109 int result = PythonQtInstanceWrapper_init(wrapper, newargs, NULL);
110 Py_DECREF(newargs);
110 Py_DECREF(newargs);
111 if (result==0) {
111 if (result==0) {
112 Py_INCREF(Py_None);
112 Py_INCREF(Py_None);
113 return Py_None;
113 return Py_None;
114 } else {
114 } else {
115 // init failed!
115 // init failed!
116 }
116 }
117 } else {
117 } else {
118 // self not of correct type!
118 // self not of correct type!
119 }
119 }
120 } else {
120 } else {
121 // wrong number of args
121 // wrong number of args
122 }
122 }
123 return NULL;
123 return NULL;
124 }
124 }
125
125
126 static PyMethodDef PythonQtClassWrapper_methods[] = {
126 static PyMethodDef PythonQtClassWrapper_methods[] = {
127 {"__init__", (PyCFunction)PythonQtClassWrapper__init__, METH_VARARGS,
127 {"__init__", (PyCFunction)PythonQtClassWrapper__init__, METH_VARARGS,
128 "Return the classname of the object"
128 "Return the classname of the object"
129 },
129 },
130 {"className", (PyCFunction)PythonQtClassWrapper_classname, METH_NOARGS,
130 {"className", (PyCFunction)PythonQtClassWrapper_classname, METH_NOARGS,
131 "Return the classname of the object"
131 "Return the classname of the object"
132 },
132 },
133 {"help", (PyCFunction)PythonQtClassWrapper_help, METH_NOARGS,
133 {"help", (PyCFunction)PythonQtClassWrapper_help, METH_NOARGS,
134 "Shows the help of available methods for this class"
134 "Shows the help of available methods for this class"
135 },
135 },
136 {NULL, NULL, 0 , NULL} /* Sentinel */
136 {NULL, NULL, 0 , NULL} /* Sentinel */
137 };
137 };
138
138
139
139
140 static PyObject *PythonQtClassWrapper_getattro(PyObject *obj, PyObject *name)
140 static PyObject *PythonQtClassWrapper_getattro(PyObject *obj, PyObject *name)
141 {
141 {
142 const char *attributeName;
142 const char *attributeName;
143 PythonQtClassWrapper *wrapper = (PythonQtClassWrapper *)obj;
143 PythonQtClassWrapper *wrapper = (PythonQtClassWrapper *)obj;
144
144
145 if ((attributeName = PyString_AsString(name)) == NULL) {
145 if ((attributeName = PyString_AsString(name)) == NULL) {
146 return NULL;
146 return NULL;
147 }
147 }
148 if (obj == (PyObject*)&PythonQtInstanceWrapper_Type) {
148 if (obj == (PyObject*)&PythonQtInstanceWrapper_Type) {
149 return NULL;
149 return NULL;
150 }
150 }
151
151
152 if (qstrcmp(attributeName, "__dict__")==0) {
152 if (qstrcmp(attributeName, "__dict__")==0) {
153 PyObject* dict = ((PyTypeObject *)wrapper)->tp_dict;
153 PyObject* dict = ((PyTypeObject *)wrapper)->tp_dict;
154 if (!wrapper->classInfo()) {
154 if (!wrapper->classInfo()) {
155 Py_INCREF(dict);
155 Py_INCREF(dict);
156 return dict;
156 return dict;
157 }
157 }
158 dict = PyDict_Copy(dict);
158 dict = PyDict_Copy(dict);
159
159
160 QStringList l = wrapper->classInfo()->memberList(false);
160 QStringList l = wrapper->classInfo()->memberList(false);
161 foreach (QString name, l) {
161 foreach (QString name, l) {
162 PyObject* o = PyObject_GetAttrString(obj, name.toLatin1().data());
162 PyObject* o = PyObject_GetAttrString(obj, name.toLatin1().data());
163 if (o) {
163 if (o) {
164 PyDict_SetItemString(dict, name.toLatin1().data(), o);
164 PyDict_SetItemString(dict, name.toLatin1().data(), o);
165 Py_DECREF(o);
165 Py_DECREF(o);
166 } else {
166 } else {
167 // it must have been a property or child, which we do not know as a class object...
167 // it must have been a property or child, which we do not know as a class object...
168 }
168 }
169 }
169 }
170 if (wrapper->classInfo()->constructors()) {
170 if (wrapper->classInfo()->constructors()) {
171 PyObject* func = PyCFunction_New(&PythonQtClassWrapper_methods[0], obj);
171 PyObject* func = PyCFunction_New(&PythonQtClassWrapper_methods[0], obj);
172 PyDict_SetItemString(dict, "__init__", func);
172 PyDict_SetItemString(dict, "__init__", func);
173 Py_DECREF(func);
173 Py_DECREF(func);
174 }
174 }
175 for (int i = 1;i<3;i++) {
175 for (int i = 1;i<3;i++) {
176 PyObject* func = PyCFunction_New(&PythonQtClassWrapper_methods[i], obj);
176 PyObject* func = PyCFunction_New(&PythonQtClassWrapper_methods[i], obj);
177 PyDict_SetItemString(dict, PythonQtClassWrapper_methods[i].ml_name, func);
177 PyDict_SetItemString(dict, PythonQtClassWrapper_methods[i].ml_name, func);
178 Py_DECREF(func);
178 Py_DECREF(func);
179 }
179 }
180 return dict;
180 return dict;
181 }
181 }
182
182
183 if (wrapper->classInfo()) {
183 if (wrapper->classInfo()) {
184 PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName);
184 PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName);
185 if (member._type == PythonQtMemberInfo::EnumValue) {
185 if (member._type == PythonQtMemberInfo::EnumValue) {
186 return PyInt_FromLong(member._enumValue);
186 return PyInt_FromLong(member._enumValue);
187 } else
187 } else
188 if (member._type == PythonQtMemberInfo::Slot) {
188 if (member._type == PythonQtMemberInfo::Slot) {
189 // we return all slots, even the instance slots, since they are callable as unbound slots with self argument
189 // we return all slots, even the instance slots, since they are callable as unbound slots with self argument
190 return PythonQtSlotFunction_New(member._slot, obj, NULL);
190 return PythonQtSlotFunction_New(member._slot, obj, NULL);
191 }
191 }
192 }
192 }
193
193
194 // look for the interal methods (className(), help())
194 // look for the interal methods (className(), help())
195 PyObject* internalMethod = Py_FindMethod( PythonQtClassWrapper_methods, obj, (char*)attributeName);
195 PyObject* internalMethod = Py_FindMethod( PythonQtClassWrapper_methods, obj, (char*)attributeName);
196 if (internalMethod) {
196 if (internalMethod) {
197 return internalMethod;
197 return internalMethod;
198 }
198 }
199 PyErr_Clear();
199 PyErr_Clear();
200
200
201 // look in super
201 // look in super
202 PyObject* superAttr = PyType_Type.tp_getattro(obj, name);
202 PyObject* superAttr = PyType_Type.tp_getattro(obj, name);
203 if (superAttr) {
203 if (superAttr) {
204 return superAttr;
204 return superAttr;
205 }
205 }
206
206
207 QString error = QString(wrapper->classInfo()->className()) + " has no attribute named '" + QString(attributeName) + "'";
207 QString error = QString(wrapper->classInfo()->className()) + " has no attribute named '" + QString(attributeName) + "'";
208 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
208 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
209 return NULL;
209 return NULL;
210 }
210 }
211
211
212 static int PythonQtClassWrapper_setattro(PyObject *obj,PyObject *name,PyObject * /*value*/)
212 static int PythonQtClassWrapper_setattro(PyObject *obj,PyObject *name,PyObject *value)
213 {
213 {
214 QString error;
214 return PyType_Type.tp_setattro(obj,name,value);
215 char *attributeName;
216 if ((attributeName = PyString_AsString(name)) == NULL) {
217 return -1;
218 }
219 PythonQtClassWrapper *wrapper = (PythonQtClassWrapper *)obj;
220
221 // TODO
222 return -1;
223 }
215 }
224
216
225 /*
217 /*
226 static PyObject * PythonQtClassWrapper_repr(PyObject * obj)
218 static PyObject * PythonQtClassWrapper_repr(PyObject * obj)
227 {
219 {
228 PythonQtClassWrapper* wrapper = (PythonQtClassWrapper*)obj;
220 PythonQtClassWrapper* wrapper = (PythonQtClassWrapper*)obj;
229 if (wrapper->classInfo()->isCPPWrapper()) {
221 if (wrapper->classInfo()->isCPPWrapper()) {
230 const QMetaObject* meta = wrapper->classInfo()->metaObject();
222 const QMetaObject* meta = wrapper->classInfo()->metaObject();
231 if (!meta) {
223 if (!meta) {
232 QObject* decorator = wrapper->classInfo()->decorator();
224 QObject* decorator = wrapper->classInfo()->decorator();
233 if (decorator) {
225 if (decorator) {
234 meta = decorator->metaObject();
226 meta = decorator->metaObject();
235 }
227 }
236 }
228 }
237 if (meta) {
229 if (meta) {
238 return PyString_FromFormat("%s Class (C++ wrapped by %s)", wrapper->classInfo()->className(), meta->className());
230 return PyString_FromFormat("%s Class (C++ wrapped by %s)", wrapper->classInfo()->className(), meta->className());
239 } else {
231 } else {
240 return PyString_FromFormat("%s Class (C++ unwrapped)", wrapper->classInfo()->className());
232 return PyString_FromFormat("%s Class (C++ unwrapped)", wrapper->classInfo()->className());
241 }
233 }
242 } else {
234 } else {
243 return PyString_FromFormat("%s Class", wrapper->classInfo()->className());
235 return PyString_FromFormat("%s Class", wrapper->classInfo()->className());
244 }
236 }
245 }
237 }
246
238
247 */
239 */
248
240
249 PyTypeObject PythonQtClassWrapper_Type = {
241 PyTypeObject PythonQtClassWrapper_Type = {
250 PyObject_HEAD_INIT(NULL)
242 PyObject_HEAD_INIT(NULL)
251 0, /*ob_size*/
243 0, /*ob_size*/
252 "PythonQt.PythonQtClassWrapper", /*tp_name*/
244 "PythonQt.PythonQtClassWrapper", /*tp_name*/
253 sizeof(PythonQtClassWrapper), /*tp_basicsize*/
245 sizeof(PythonQtClassWrapper), /*tp_basicsize*/
254 0, /*tp_itemsize*/
246 0, /*tp_itemsize*/
255 0, /*tp_dealloc*/
247 0, /*tp_dealloc*/
256 0, /*tp_print*/
248 0, /*tp_print*/
257 0, /*tp_getattr*/
249 0, /*tp_getattr*/
258 0, /*tp_setattr*/
250 0, /*tp_setattr*/
259 0, /*tp_compare*/
251 0, /*tp_compare*/
260 0, //PythonQtClassWrapper_repr, /*tp_repr*/
252 0, //PythonQtClassWrapper_repr, /*tp_repr*/
261 0, /*tp_as_number*/
253 0, /*tp_as_number*/
262 0, /*tp_as_sequence*/
254 0, /*tp_as_sequence*/
263 0, /*tp_as_mapping*/
255 0, /*tp_as_mapping*/
264 0, /*tp_hash */
256 0, /*tp_hash */
265 0, /*tp_call*/
257 0, /*tp_call*/
266 0, /*tp_str*/
258 0, /*tp_str*/
267 PythonQtClassWrapper_getattro, /*tp_getattro*/
259 PythonQtClassWrapper_getattro, /*tp_getattro*/
268 PythonQtClassWrapper_setattro, /*tp_setattro*/
260 PythonQtClassWrapper_setattro, /*tp_setattro*/
269 0, /*tp_as_buffer*/
261 0, /*tp_as_buffer*/
270 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
262 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
271 0, /* tp_doc */
263 0, /* tp_doc */
272 0, /* tp_traverse */
264 0, /* tp_traverse */
273 0, /* tp_clear */
265 0, /* tp_clear */
274 0, /* tp_richcompare */
266 0, /* tp_richcompare */
275 0, /* tp_weaklistoffset */
267 0, /* tp_weaklistoffset */
276 0, /* tp_iter */
268 0, /* tp_iter */
277 0, /* tp_iternext */
269 0, /* tp_iternext */
278 0, /* tp_methods */
270 0, /* tp_methods */
279 0, /* tp_members */
271 0, /* tp_members */
280 0, /* tp_getset */
272 0, /* tp_getset */
281 0, /* tp_base */
273 0, /* tp_base */
282 0, /* tp_dict */
274 0, /* tp_dict */
283 0, /* tp_descr_get */
275 0, /* tp_descr_get */
284 0, /* tp_descr_set */
276 0, /* tp_descr_set */
285 0, /* tp_dictoffset */
277 0, /* tp_dictoffset */
286 (initproc)PythonQtClassWrapper_init, /* tp_init */
278 (initproc)PythonQtClassWrapper_init, /* tp_init */
287 PythonQtClassWrapper_alloc, /* tp_alloc */
279 PythonQtClassWrapper_alloc, /* tp_alloc */
288 0, /* tp_new */
280 0, /* tp_new */
289 0, /* tp_free */
281 0, /* tp_free */
290 };
282 };
291
283
292 //-------------------------------------------------------
284 //-------------------------------------------------------
293
285
@@ -1,555 +1,567
1 /*
1 /*
2 *
2 *
3 * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved.
3 * Copyright (C) 2006 MeVis Research GmbH All Rights Reserved.
4 *
4 *
5 * This library is free software; you can redistribute it and/or
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
8 * version 2.1 of the License, or (at your option) any later version.
9 *
9 *
10 * This library is distributed in the hope that it will be useful,
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
13 * Lesser General Public License for more details.
14 *
14 *
15 * Further, this software is distributed without any warranty that it is
15 * Further, this software is distributed without any warranty that it is
16 * free of the rightful claim of any third person regarding infringement
16 * free of the rightful claim of any third person regarding infringement
17 * or the like. Any license provided herein, whether implied or
17 * or the like. Any license provided herein, whether implied or
18 * otherwise, applies only to this software file. Patent licenses, if
18 * otherwise, applies only to this software file. Patent licenses, if
19 * any, provided herein do not apply to combinations of this program with
19 * any, provided herein do not apply to combinations of this program with
20 * other software, or any other product whatsoever.
20 * other software, or any other product whatsoever.
21 *
21 *
22 * You should have received a copy of the GNU Lesser General Public
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 *
25 *
26 * Contact information: MeVis Research GmbH, Universitaetsallee 29,
26 * Contact information: MeVis Research GmbH, Universitaetsallee 29,
27 * 28359 Bremen, Germany or:
27 * 28359 Bremen, Germany or:
28 *
28 *
29 * http://www.mevis.de
29 * http://www.mevis.de
30 *
30 *
31 */
31 */
32
32
33 //----------------------------------------------------------------------------------
33 //----------------------------------------------------------------------------------
34 /*!
34 /*!
35 // \file PythonQtInstanceWrapper.cpp
35 // \file PythonQtInstanceWrapper.cpp
36 // \author Florian Link
36 // \author Florian Link
37 // \author Last changed by $Author: florian $
37 // \author Last changed by $Author: florian $
38 // \date 2006-05
38 // \date 2006-05
39 */
39 */
40 //----------------------------------------------------------------------------------
40 //----------------------------------------------------------------------------------
41
41
42 #include "PythonQtInstanceWrapper.h"
42 #include "PythonQtInstanceWrapper.h"
43 #include <QObject>
43 #include <QObject>
44 #include "PythonQt.h"
44 #include "PythonQt.h"
45 #include "PythonQtSlot.h"
45 #include "PythonQtSlot.h"
46 #include "PythonQtClassInfo.h"
46 #include "PythonQtClassInfo.h"
47 #include "PythonQtConversion.h"
47 #include "PythonQtConversion.h"
48 #include "PythonQtClassWrapper.h"
48 #include "PythonQtClassWrapper.h"
49
49
50 PythonQtClassInfo* PythonQtInstanceWrapperStruct::classInfo()
50 PythonQtClassInfo* PythonQtInstanceWrapperStruct::classInfo()
51 {
51 {
52 // take the class info from our type object
52 // take the class info from our type object
53 return ((PythonQtClassWrapper*)ob_type)->_classInfo;
53 return ((PythonQtClassWrapper*)ob_type)->_classInfo;
54 }
54 }
55
55
56 static void PythonQtInstanceWrapper_deleteObject(PythonQtInstanceWrapper* self, bool force = false) {
56 static void PythonQtInstanceWrapper_deleteObject(PythonQtInstanceWrapper* self, bool force = false) {
57
57
58 // is this a C++ wrapper?
58 // is this a C++ wrapper?
59 if (self->_wrappedPtr) {
59 if (self->_wrappedPtr) {
60 //mlabDebugConst("Python","c++ wrapper removed " << self->_wrappedPtr << " " << self->_obj->className() << " " << self->classInfo()->wrappedClassName().latin1());
60 //mlabDebugConst("Python","c++ wrapper removed " << self->_wrappedPtr << " " << self->_obj->className() << " " << self->classInfo()->wrappedClassName().latin1());
61
61
62 PythonQt::priv()->removeWrapperPointer(self->_wrappedPtr);
62 PythonQt::priv()->removeWrapperPointer(self->_wrappedPtr);
63 // we own our qobject, so we delete it now:
63 // we own our qobject, so we delete it now:
64 delete self->_obj;
64 delete self->_obj;
65 self->_obj = NULL;
65 self->_obj = NULL;
66 if (force || self->classInfo()->hasOwnerMethodButNoOwner(self->_wrappedPtr) || self->_ownedByPythonQt) {
66 if (force || self->classInfo()->hasOwnerMethodButNoOwner(self->_wrappedPtr) || self->_ownedByPythonQt) {
67 int type = self->classInfo()->metaTypeId();
67 int type = self->classInfo()->metaTypeId();
68 if (self->_useQMetaTypeDestroy && type>=0) {
68 if (self->_useQMetaTypeDestroy && type>=0) {
69 // use QMetaType to destroy the object
69 // use QMetaType to destroy the object
70 QMetaType::destroy(type, self->_wrappedPtr);
70 QMetaType::destroy(type, self->_wrappedPtr);
71 } else {
71 } else {
72 PythonQtSlotInfo* slot = self->classInfo()->destructor();
72 PythonQtSlotInfo* slot = self->classInfo()->destructor();
73 if (slot) {
73 if (slot) {
74 void* args[2];
74 void* args[2];
75 args[0] = NULL;
75 args[0] = NULL;
76 args[1] = &self->_wrappedPtr;
76 args[1] = &self->_wrappedPtr;
77 slot->decorator()->qt_metacall(QMetaObject::InvokeMetaMethod, slot->slotIndex(), args);
77 slot->decorator()->qt_metacall(QMetaObject::InvokeMetaMethod, slot->slotIndex(), args);
78 self->_wrappedPtr = NULL;
78 self->_wrappedPtr = NULL;
79 } else {
79 } else {
80 if (type>=0) {
80 if (type>=0) {
81 // use QMetaType to destroy the object
81 // use QMetaType to destroy the object
82 QMetaType::destroy(type, self->_wrappedPtr);
82 QMetaType::destroy(type, self->_wrappedPtr);
83 } else {
83 } else {
84 // TODO: warn about not being able to destroy the object?
84 // TODO: warn about not being able to destroy the object?
85 }
85 }
86 }
86 }
87 }
87 }
88 }
88 }
89 } else {
89 } else {
90 //mlabDebugConst("Python","qobject wrapper removed " << self->_obj->className() << " " << self->classInfo()->wrappedClassName().latin1());
90 //mlabDebugConst("Python","qobject wrapper removed " << self->_obj->className() << " " << self->classInfo()->wrappedClassName().latin1());
91 if (self->_objPointerCopy) {
91 if (self->_objPointerCopy) {
92 PythonQt::priv()->removeWrapperPointer(self->_objPointerCopy);
92 PythonQt::priv()->removeWrapperPointer(self->_objPointerCopy);
93 }
93 }
94 if (self->_obj) {
94 if (self->_obj) {
95 if (force || self->_ownedByPythonQt) {
95 if (force || self->_ownedByPythonQt) {
96 if (force || !self->_obj->parent()) {
96 if (force || !self->_obj->parent()) {
97 delete self->_obj;
97 delete self->_obj;
98 }
98 }
99 } else {
99 } else {
100 if (self->_obj->parent()==NULL) {
100 if (self->_obj->parent()==NULL) {
101 // tell someone who is interested that the qobject is no longer wrapped, if it has no parent
101 // tell someone who is interested that the qobject is no longer wrapped, if it has no parent
102 PythonQt::qObjectNoLongerWrappedCB(self->_obj);
102 PythonQt::qObjectNoLongerWrappedCB(self->_obj);
103 }
103 }
104 }
104 }
105 }
105 }
106 }
106 }
107 self->_obj = NULL;
107 self->_obj = NULL;
108 }
108 }
109
109
110 static void PythonQtInstanceWrapper_dealloc(PythonQtInstanceWrapper* self)
110 static void PythonQtInstanceWrapper_dealloc(PythonQtInstanceWrapper* self)
111 {
111 {
112 PythonQtInstanceWrapper_deleteObject(self);
112 PythonQtInstanceWrapper_deleteObject(self);
113 self->_obj.~QPointer<QObject>();
113 self->_obj.~QPointer<QObject>();
114 self->ob_type->tp_free((PyObject*)self);
114 self->ob_type->tp_free((PyObject*)self);
115 }
115 }
116
116
117 static PyObject* PythonQtInstanceWrapper_new(PyTypeObject *type, PyObject * args, PyObject * /*kwds*/)
117 static PyObject* PythonQtInstanceWrapper_new(PyTypeObject *type, PyObject * args, PyObject * /*kwds*/)
118 {
118 {
119 //PythonQtClassWrapper *classType = (PythonQtClassWrapper*)type;
119 //PythonQtClassWrapper *classType = (PythonQtClassWrapper*)type;
120 PythonQtInstanceWrapper *self;
120 PythonQtInstanceWrapper *self;
121 static PyObject* emptyTuple = NULL;
121 static PyObject* emptyTuple = NULL;
122 if (emptyTuple==NULL) {
122 if (emptyTuple==NULL) {
123 emptyTuple = PyTuple_New(0);
123 emptyTuple = PyTuple_New(0);
124 }
124 }
125
125
126 self = (PythonQtInstanceWrapper*)PyBaseObject_Type.tp_new(type, emptyTuple, NULL);
126 self = (PythonQtInstanceWrapper*)PyBaseObject_Type.tp_new(type, emptyTuple, NULL);
127
127
128 if (self != NULL) {
128 if (self != NULL) {
129 new (&self->_obj) QPointer<QObject>();
129 new (&self->_obj) QPointer<QObject>();
130 self->_wrappedPtr = NULL;
130 self->_wrappedPtr = NULL;
131 self->_ownedByPythonQt = false;
131 self->_ownedByPythonQt = false;
132 self->_useQMetaTypeDestroy = false;
132 self->_useQMetaTypeDestroy = false;
133 self->_isShellInstance = false;
133 self->_isShellInstance = false;
134 }
134 }
135 return (PyObject *)self;
135 return (PyObject *)self;
136 }
136 }
137
137
138 int PythonQtInstanceWrapper_init(PythonQtInstanceWrapper * self, PyObject * args, PyObject * kwds)
138 int PythonQtInstanceWrapper_init(PythonQtInstanceWrapper * self, PyObject * args, PyObject * kwds)
139 {
139 {
140 if (args == PythonQtPrivate::dummyTuple()) {
140 if (args == PythonQtPrivate::dummyTuple()) {
141 // we are called from the internal PythonQt API, so our data will be filled later on...
141 // we are called from the internal PythonQt API, so our data will be filled later on...
142 return 0;
142 return 0;
143 }
143 }
144
144
145 // we are called from python, try to construct our object
145 // we are called from python, try to construct our object
146 if (self->classInfo()->constructors()) {
146 if (self->classInfo()->constructors()) {
147 void* directCPPPointer = NULL;
147 void* directCPPPointer = NULL;
148 PythonQtSlotFunction_CallImpl(NULL, self->classInfo()->constructors(), args, kwds, NULL, &directCPPPointer);
148 PythonQtSlotFunction_CallImpl(NULL, self->classInfo()->constructors(), args, kwds, NULL, &directCPPPointer);
149 if (PyErr_Occurred()) {
149 if (PyErr_Occurred()) {
150 return -1;
150 return -1;
151 }
151 }
152 if (directCPPPointer) {
152 if (directCPPPointer) {
153 // change ownershipflag to be owned by PythonQt
153 // change ownershipflag to be owned by PythonQt
154 self->_ownedByPythonQt = true;
154 self->_ownedByPythonQt = true;
155 self->_useQMetaTypeDestroy = false;
155 self->_useQMetaTypeDestroy = false;
156 if (self->classInfo()->isCPPWrapper()) {
156 if (self->classInfo()->isCPPWrapper()) {
157 self->_wrappedPtr = directCPPPointer;
157 self->_wrappedPtr = directCPPPointer;
158 // TODO xxx: if there is a wrapper factory, we might want to generate a wrapper for our class?!
158 // TODO xxx: if there is a wrapper factory, we might want to generate a wrapper for our class?!
159 } else {
159 } else {
160 self->setQObject((QObject*)directCPPPointer);
160 self->setQObject((QObject*)directCPPPointer);
161 }
161 }
162 // register with PythonQt
162 // register with PythonQt
163 PythonQt::priv()->addWrapperPointer(directCPPPointer, self);
163 PythonQt::priv()->addWrapperPointer(directCPPPointer, self);
164
164
165 PythonQtShellSetInstanceWrapperCB* cb = self->classInfo()->shellSetInstanceWrapperCB();
165 PythonQtShellSetInstanceWrapperCB* cb = self->classInfo()->shellSetInstanceWrapperCB();
166 if (cb) {
166 if (cb) {
167 // if we are a derived python class, we set the wrapper
167 // if we are a derived python class, we set the wrapper
168 // to activate the shell class, otherwise we just ignore that it is a shell...
168 // to activate the shell class, otherwise we just ignore that it is a shell...
169 // we detect it be checking if the type does not have PythonQtInstanceWrapper_Type as direct base class,
169 // we detect it be checking if the type does not have PythonQtInstanceWrapper_Type as direct base class,
170 // which is the case for all non-python derived types
170 // which is the case for all non-python derived types
171 if (((PyObject*)self)->ob_type->tp_base != &PythonQtInstanceWrapper_Type) {
171 if (((PyObject*)self)->ob_type->tp_base != &PythonQtInstanceWrapper_Type) {
172 // set the wrapper and remember that we have a shell instance!
172 // set the wrapper and remember that we have a shell instance!
173 (*cb)(directCPPPointer, self);
173 (*cb)(directCPPPointer, self);
174 self->_isShellInstance = true;
174 self->_isShellInstance = true;
175 }
175 }
176 }
176 }
177 }
177 }
178 } else {
178 } else {
179 QString error = QString("No constructors available for ") + self->classInfo()->className();
179 QString error = QString("No constructors available for ") + self->classInfo()->className();
180 PyErr_SetString(PyExc_ValueError, error.toLatin1().data());
180 PyErr_SetString(PyExc_ValueError, error.toLatin1().data());
181 return -1;
181 return -1;
182 }
182 }
183 return 0;
183 return 0;
184 }
184 }
185
185
186 static PyObject *PythonQtInstanceWrapper_classname(PythonQtInstanceWrapper* type)
186 static PyObject *PythonQtInstanceWrapper_classname(PythonQtInstanceWrapper* obj)
187 {
187 {
188 return PyString_FromString(type->classInfo()->className());
188 return PyString_FromString(obj->ob_type->tp_name);
189 }
189 }
190
190
191 static PyObject *PythonQtInstanceWrapper_help(PythonQtInstanceWrapper* type)
191 static PyObject *PythonQtInstanceWrapper_help(PythonQtInstanceWrapper* obj)
192 {
192 {
193 return PythonQt::self()->helpCalled(type->classInfo());
193 return PythonQt::self()->helpCalled(obj->classInfo());
194 }
194 }
195
195
196 static PyObject *PythonQtInstanceWrapper_delete(PythonQtInstanceWrapper * self)
196 static PyObject *PythonQtInstanceWrapper_delete(PythonQtInstanceWrapper * self)
197 {
197 {
198 PythonQtInstanceWrapper_deleteObject(self, true);
198 PythonQtInstanceWrapper_deleteObject(self, true);
199 Py_INCREF(Py_None);
199 Py_INCREF(Py_None);
200 return Py_None;
200 return Py_None;
201 }
201 }
202
202
203
203
204 static PyMethodDef PythonQtInstanceWrapper_methods[] = {
204 static PyMethodDef PythonQtInstanceWrapper_methods[] = {
205 {"className", (PyCFunction)PythonQtInstanceWrapper_classname, METH_NOARGS,
205 {"className", (PyCFunction)PythonQtInstanceWrapper_classname, METH_NOARGS,
206 "Return the classname of the object"
206 "Return the classname of the object"
207 },
207 },
208 {"help", (PyCFunction)PythonQtInstanceWrapper_help, METH_NOARGS,
208 {"help", (PyCFunction)PythonQtInstanceWrapper_help, METH_NOARGS,
209 "Shows the help of available methods for this class"
209 "Shows the help of available methods for this class"
210 },
210 },
211 {"delete", (PyCFunction)PythonQtInstanceWrapper_delete, METH_NOARGS,
211 {"delete", (PyCFunction)PythonQtInstanceWrapper_delete, METH_NOARGS,
212 "Deletes the C++ object (at your own risk, my friend!)"
212 "Deletes the C++ object (at your own risk, my friend!)"
213 },
213 },
214 {NULL, NULL, 0, NULL} /* Sentinel */
214 {NULL, NULL, 0, NULL} /* Sentinel */
215 };
215 };
216
216
217
217
218 static PyObject *PythonQtInstanceWrapper_getattro(PyObject *obj,PyObject *name)
218 static PyObject *PythonQtInstanceWrapper_getattro(PyObject *obj,PyObject *name)
219 {
219 {
220 const char *attributeName;
220 const char *attributeName;
221 PythonQtInstanceWrapper *wrapper = (PythonQtInstanceWrapper *)obj;
221 PythonQtInstanceWrapper *wrapper = (PythonQtInstanceWrapper *)obj;
222
222
223 if ((attributeName = PyString_AsString(name)) == NULL) {
223 if ((attributeName = PyString_AsString(name)) == NULL) {
224 return NULL;
224 return NULL;
225 }
225 }
226
226
227 if (qstrcmp(attributeName, "__dict__")==0) {
227 if (qstrcmp(attributeName, "__dict__")==0) {
228 QStringList l = wrapper->classInfo()->memberList(false);
228 QStringList l = wrapper->classInfo()->memberList(false);
229 PyObject* dict = PyDict_New();
229 PyObject* dict = PyDict_New();
230 foreach (QString name, l) {
230 foreach (QString name, l) {
231 PyObject* o = PyObject_GetAttrString(obj, name.toLatin1().data());
231 PyObject* o = PyObject_GetAttrString(obj, name.toLatin1().data());
232 PyDict_SetItemString(dict, name.toLatin1().data(), o);
232 PyDict_SetItemString(dict, name.toLatin1().data(), o);
233 Py_DECREF(o);
233 Py_DECREF(o);
234 }
234 }
235 // TODO xxx:
236 // this does include python member methods, but not attributes, from where can we get
237 // the correct dict with the attributes of the derive
238
235 // Note: we do not put children into the dict, is would look confusing?!
239 // Note: we do not put children into the dict, is would look confusing?!
236 return dict;
240 return dict;
237 }
241 }
238
242
239 // first look in super, to return derived methods from base object first
243 // first look in super, to return derived methods from base object first
240 PyObject* superAttr = PyBaseObject_Type.tp_getattro(obj, name);
244 PyObject* superAttr = PyBaseObject_Type.tp_getattro(obj, name);
241 if (superAttr) {
245 if (superAttr) {
242 return superAttr;
246 return superAttr;
243 }
247 }
244 PyErr_Clear();
248 PyErr_Clear();
245
249
246 if (!wrapper->_obj && !wrapper->_wrappedPtr) {
250 if (!wrapper->_obj && !wrapper->_wrappedPtr) {
247 QString error = QString("Trying to read attribute '") + attributeName + "' from a destroyed " + wrapper->classInfo()->className() + " object";
251 QString error = QString("Trying to read attribute '") + attributeName + "' from a destroyed " + wrapper->classInfo()->className() + " object";
248 PyErr_SetString(PyExc_ValueError, error.toLatin1().data());
252 PyErr_SetString(PyExc_ValueError, error.toLatin1().data());
249 return NULL;
253 return NULL;
250 }
254 }
251
255
252 // mlabDebugConst("Python","get " << attributeName);
256 // mlabDebugConst("Python","get " << attributeName);
253
257
254 // TODO: dynamic properties are missing
258 // TODO: dynamic properties are missing
255
259
256 PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName);
260 PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName);
257 switch (member._type) {
261 switch (member._type) {
258 case PythonQtMemberInfo::Property:
262 case PythonQtMemberInfo::Property:
259 if (wrapper->_obj) {
263 if (wrapper->_obj) {
260 if (member._property.userType() != QVariant::Invalid) {
264 if (member._property.userType() != QVariant::Invalid) {
261 return PythonQtConv::QVariantToPyObject(member._property.read(wrapper->_obj));
265 return PythonQtConv::QVariantToPyObject(member._property.read(wrapper->_obj));
262 } else {
266 } else {
263 Py_INCREF(Py_None);
267 Py_INCREF(Py_None);
264 return Py_None;
268 return Py_None;
265 }
269 }
266 }
270 }
267 break;
271 break;
268 case PythonQtMemberInfo::Slot:
272 case PythonQtMemberInfo::Slot:
269 return PythonQtSlotFunction_New(member._slot, obj, NULL);
273 return PythonQtSlotFunction_New(member._slot, obj, NULL);
270 break;
274 break;
271 case PythonQtMemberInfo::EnumValue:
275 case PythonQtMemberInfo::EnumValue:
272 return PyInt_FromLong(member._enumValue);
276 return PyInt_FromLong(member._enumValue);
273 break;
277 break;
274 default:
278 default:
275 // is an invalid type, go on
279 // is an invalid type, go on
276 break;
280 break;
277 }
281 }
278
282
279 // look for the interal methods (className(), help())
283 // look for the interal methods (className(), help())
280 PyObject* internalMethod = Py_FindMethod( PythonQtInstanceWrapper_methods, obj, (char*)attributeName);
284 PyObject* internalMethod = Py_FindMethod( PythonQtInstanceWrapper_methods, obj, (char*)attributeName);
281 if (internalMethod) {
285 if (internalMethod) {
282 return internalMethod;
286 return internalMethod;
283 }
287 }
284 PyErr_Clear();
288 PyErr_Clear();
285
289
286 if (wrapper->_obj) {
290 if (wrapper->_obj) {
287 // look for a child
291 // look for a child
288 QObjectList children = wrapper->_obj->children();
292 QObjectList children = wrapper->_obj->children();
289 for (int i = 0; i < children.count(); i++) {
293 for (int i = 0; i < children.count(); i++) {
290 QObject *child = children.at(i);
294 QObject *child = children.at(i);
291 if (child->objectName() == attributeName) {
295 if (child->objectName() == attributeName) {
292 return PythonQt::self()->priv()->wrapQObject(child);
296 return PythonQt::self()->priv()->wrapQObject(child);
293 }
297 }
294 }
298 }
295 }
299 }
296
300
297 QString error = QString(wrapper->classInfo()->className()) + " has no attribute named '" + QString(attributeName) + "'";
301 QString error = QString(wrapper->classInfo()->className()) + " has no attribute named '" + QString(attributeName) + "'";
298 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
302 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
299 return NULL;
303 return NULL;
300 }
304 }
301
305
302 static int PythonQtInstanceWrapper_setattro(PyObject *obj,PyObject *name,PyObject *value)
306 static int PythonQtInstanceWrapper_setattro(PyObject *obj,PyObject *name,PyObject *value)
303 {
307 {
304 QString error;
308 QString error;
305 char *attributeName;
309 char *attributeName;
306 PythonQtInstanceWrapper *wrapper = (PythonQtInstanceWrapper *)obj;
310 PythonQtInstanceWrapper *wrapper = (PythonQtInstanceWrapper *)obj;
307
311
308 if ((attributeName = PyString_AsString(name)) == NULL)
312 if ((attributeName = PyString_AsString(name)) == NULL)
309 return -1;
313 return -1;
310
314
311 if (!wrapper->_obj) {
315 if (!wrapper->_obj) {
312 error = QString("Trying to set attribute '") + attributeName + "' on a destroyed " + wrapper->classInfo()->className() + " object";
316 error = QString("Trying to set attribute '") + attributeName + "' on a destroyed " + wrapper->classInfo()->className() + " object";
313 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
317 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
314 return -1;
318 return -1;
315 }
319 }
316
320
317 PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName);
321 PythonQtMemberInfo member = wrapper->classInfo()->member(attributeName);
318 if (member._type == PythonQtMemberInfo::Property) {
322 if (member._type == PythonQtMemberInfo::Property) {
319 QMetaProperty prop = member._property;
323 QMetaProperty prop = member._property;
320 if (prop.isWritable()) {
324 if (prop.isWritable()) {
321 QVariant v;
325 QVariant v;
322 if (prop.isEnumType()) {
326 if (prop.isEnumType()) {
323 // this will give us either a string or an int, everything else will probably be an error
327 // this will give us either a string or an int, everything else will probably be an error
324 v = PythonQtConv::PyObjToQVariant(value);
328 v = PythonQtConv::PyObjToQVariant(value);
325 } else {
329 } else {
326 int t = prop.userType();
330 int t = prop.userType();
327 v = PythonQtConv::PyObjToQVariant(value, t);
331 v = PythonQtConv::PyObjToQVariant(value, t);
328 }
332 }
329 bool success = false;
333 bool success = false;
330 if (v.isValid()) {
334 if (v.isValid()) {
331 success = prop.write(wrapper->_obj, v);
335 success = prop.write(wrapper->_obj, v);
332 }
336 }
333 if (success) {
337 if (success) {
334 return 0;
338 return 0;
335 } else {
339 } else {
336 error = QString("Property '") + attributeName + "' of type '" +
340 error = QString("Property '") + attributeName + "' of type '" +
337 prop.typeName() + "' does not accept an object of type "
341 prop.typeName() + "' does not accept an object of type "
338 + QString(value->ob_type->tp_name) + " (" + PythonQtConv::PyObjGetRepresentation(value) + ")";
342 + QString(value->ob_type->tp_name) + " (" + PythonQtConv::PyObjGetRepresentation(value) + ")";
339 }
343 }
340 } else {
344 } else {
341 error = QString("Property '") + attributeName + "' of " + wrapper->classInfo()->className() + " object is not writable";
345 error = QString("Property '") + attributeName + "' of " + obj->ob_type->tp_name + " object is not writable";
342 }
346 }
343 } else {
347 } else if (member._type == PythonQtMemberInfo::Slot) {
344 if (member._type == PythonQtMemberInfo::Slot) {
348 error = QString("Slot '") + attributeName + "' can not be overwritten on " + obj->ob_type->tp_name + " object";
345 error = QString("Slot '") + attributeName + "' can not be overwritten on " + wrapper->classInfo()->className() + " object";
349 } else if (member._type == PythonQtMemberInfo::EnumValue) {
346 } else if (member._type == PythonQtMemberInfo::EnumValue) {
350 error = QString("EnumValue '") + attributeName + "' can not be overwritten on " + obj->ob_type->tp_name + " object";
347 error = QString("EnumValue '") + attributeName + "' can not be overwritten on " + wrapper->classInfo()->className() + " object";
351 } else if (member._type == PythonQtMemberInfo::NotFound) {
352 // if we are a derived python class, we allow setting attributes.
353 // if we are a direct CPP wrapper, we do NOT allow it, since
354 // it would be confusing to allow it because a wrapper will go away when it is not seen by python anymore
355 // and when it is recreated from a CPP pointer the attributes are gone...
356 if (obj->ob_type->tp_base != &PythonQtInstanceWrapper_Type) {
357 return PyBaseObject_Type.tp_setattro(obj,name,value);
358 } else {
359 error = QString("'") + attributeName + "' does not exist on " + obj->ob_type->tp_name + " and creating new attributes on C++ objects is not allowed";
348 }
360 }
349 }
361 }
350
362
351 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
363 PyErr_SetString(PyExc_AttributeError, error.toLatin1().data());
352 return -1;
364 return -1;
353 }
365 }
354
366
355 static PyObject * PythonQtInstanceWrapper_str(PyObject * obj)
367 static PyObject * PythonQtInstanceWrapper_str(PyObject * obj)
356 {
368 {
357 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)obj;
369 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)obj;
358 const char* typeName = obj->ob_type->tp_name;
370 const char* typeName = obj->ob_type->tp_name;
359 QObject *qobj = wrapper->_obj;
371 QObject *qobj = wrapper->_obj;
360 if (wrapper->_wrappedPtr) {
372 if (wrapper->_wrappedPtr) {
361 QString str = PythonQtConv::CPPObjectToString(wrapper->classInfo()->metaTypeId(), wrapper->_wrappedPtr);
373 QString str = PythonQtConv::CPPObjectToString(wrapper->classInfo()->metaTypeId(), wrapper->_wrappedPtr);
362 if (!str.isEmpty()) {
374 if (!str.isEmpty()) {
363 return PyString_FromFormat("%s", str.toLatin1().constData());
375 return PyString_FromFormat("%s", str.toLatin1().constData());
364 } else
376 } else
365 if (wrapper->_obj) {
377 if (wrapper->_obj) {
366 return PyString_FromFormat("%s (C++ Object %p wrapped by %s %p))", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj);
378 return PyString_FromFormat("%s (C++ Object %p wrapped by %s %p))", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj);
367 } else {
379 } else {
368 return PyString_FromFormat("%s (C++ Object %p)", typeName, wrapper->_wrappedPtr);
380 return PyString_FromFormat("%s (C++ Object %p)", typeName, wrapper->_wrappedPtr);
369 }
381 }
370 } else {
382 } else {
371 return PyString_FromFormat("%s (QObject %p)", typeName, qobj);
383 return PyString_FromFormat("%s (QObject %p)", typeName, qobj);
372 }
384 }
373 }
385 }
374
386
375 static PyObject * PythonQtInstanceWrapper_repr(PyObject * obj)
387 static PyObject * PythonQtInstanceWrapper_repr(PyObject * obj)
376 {
388 {
377 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)obj;
389 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)obj;
378 const char* typeName = obj->ob_type->tp_name;
390 const char* typeName = obj->ob_type->tp_name;
379
391
380 QObject *qobj = wrapper->_obj;
392 QObject *qobj = wrapper->_obj;
381 if (wrapper->_wrappedPtr) {
393 if (wrapper->_wrappedPtr) {
382 QString str = PythonQtConv::CPPObjectToString(wrapper->classInfo()->metaTypeId(), wrapper->_wrappedPtr);
394 QString str = PythonQtConv::CPPObjectToString(wrapper->classInfo()->metaTypeId(), wrapper->_wrappedPtr);
383 if (!str.isEmpty()) {
395 if (!str.isEmpty()) {
384 return PyString_FromFormat("%s(%s, %p)", typeName, str.toLatin1().constData(), wrapper->_wrappedPtr);
396 return PyString_FromFormat("%s(%s, %p)", typeName, str.toLatin1().constData(), wrapper->_wrappedPtr);
385 } else
397 } else
386 if (wrapper->_obj) {
398 if (wrapper->_obj) {
387 return PyString_FromFormat("%s (C++ Object %p wrapped by %s %p))", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj);
399 return PyString_FromFormat("%s (C++ Object %p wrapped by %s %p))", typeName, wrapper->_wrappedPtr, wrapper->_obj->metaObject()->className(), qobj);
388 } else {
400 } else {
389 return PyString_FromFormat("%s (C++ Object %p)", typeName, wrapper->_wrappedPtr);
401 return PyString_FromFormat("%s (C++ Object %p)", typeName, wrapper->_wrappedPtr);
390 }
402 }
391 } else {
403 } else {
392 return PyString_FromFormat("%s (QObject %p)", wrapper->classInfo()->className(), qobj);
404 return PyString_FromFormat("%s (QObject %p)", typeName, wrapper->classInfo()->className(), qobj);
393 }
405 }
394 }
406 }
395
407
396 static int PythonQtInstanceWrapper_compare(PyObject * obj1, PyObject * obj2)
408 static int PythonQtInstanceWrapper_compare(PyObject * obj1, PyObject * obj2)
397 {
409 {
398 if (PyObject_TypeCheck(obj1, &PythonQtInstanceWrapper_Type) &&
410 if (PyObject_TypeCheck(obj1, &PythonQtInstanceWrapper_Type) &&
399 PyObject_TypeCheck(obj2, &PythonQtInstanceWrapper_Type)) {
411 PyObject_TypeCheck(obj2, &PythonQtInstanceWrapper_Type)) {
400
412
401 PythonQtInstanceWrapper* w1 = (PythonQtInstanceWrapper*)obj1;
413 PythonQtInstanceWrapper* w1 = (PythonQtInstanceWrapper*)obj1;
402 PythonQtInstanceWrapper* w2 = (PythonQtInstanceWrapper*)obj2;
414 PythonQtInstanceWrapper* w2 = (PythonQtInstanceWrapper*)obj2;
403 // check pointers directly first:
415 // check pointers directly first:
404 if (w1->_wrappedPtr != NULL) {
416 if (w1->_wrappedPtr != NULL) {
405 if (w1->_wrappedPtr == w2->_wrappedPtr) {
417 if (w1->_wrappedPtr == w2->_wrappedPtr) {
406 return 0;
418 return 0;
407 }
419 }
408 } else if (w1->_obj == w2->_obj) {
420 } else if (w1->_obj == w2->_obj) {
409 return 0;
421 return 0;
410 }
422 }
411 const char* class1 = w1->classInfo()->className();
423 const char* class1 = w1->classInfo()->className();
412 const char* class2 = w2->classInfo()->className();
424 const char* class2 = w2->classInfo()->className();
413 if (strcmp(class1, class2) == 0) {
425 if (strcmp(class1, class2) == 0) {
414 // same class names, so we can try the operator_equal
426 // same class names, so we can try the operator_equal
415 PythonQtMemberInfo info = w1->classInfo()->member("operator_equal");
427 PythonQtMemberInfo info = w1->classInfo()->member("operator_equal");
416 if (info._type == PythonQtMemberInfo::Slot) {
428 if (info._type == PythonQtMemberInfo::Slot) {
417 bool result = false;
429 bool result = false;
418 void* obj1 = w1->_wrappedPtr;
430 void* obj1 = w1->_wrappedPtr;
419 if (!obj1) {
431 if (!obj1) {
420 obj1 = w1->_obj;
432 obj1 = w1->_obj;
421 }
433 }
422 if (!obj1) { return -1; }
434 if (!obj1) { return -1; }
423 void* obj2 = w2->_wrappedPtr;
435 void* obj2 = w2->_wrappedPtr;
424 if (!obj2) {
436 if (!obj2) {
425 obj2 = w2->_obj;
437 obj2 = w2->_obj;
426 }
438 }
427 if (!obj2) { return -1; }
439 if (!obj2) { return -1; }
428 if (info._slot->isInstanceDecorator()) {
440 if (info._slot->isInstanceDecorator()) {
429 // call on decorator QObject
441 // call on decorator QObject
430 void* args[3];
442 void* args[3];
431 args[0] = &result;
443 args[0] = &result;
432 args[1] = &obj1; // this is a pointer, so it needs a pointer to a pointer
444 args[1] = &obj1; // this is a pointer, so it needs a pointer to a pointer
433 args[2] = obj2; // this is a reference, so it needs the direct pointer
445 args[2] = obj2; // this is a reference, so it needs the direct pointer
434 info._slot->decorator()->qt_metacall(QMetaObject::InvokeMetaMethod, info._slot->slotIndex(), args);
446 info._slot->decorator()->qt_metacall(QMetaObject::InvokeMetaMethod, info._slot->slotIndex(), args);
435 return result?0:-1;
447 return result?0:-1;
436 } else {
448 } else {
437 // call directly on QObject
449 // call directly on QObject
438 if (w1->_obj && w2->_obj) {
450 if (w1->_obj && w2->_obj) {
439 void* args[2];
451 void* args[2];
440 args[0] = &result;
452 args[0] = &result;
441 args[2] = obj2; // this is a reference, so it needs the direct pointer
453 args[2] = obj2; // this is a reference, so it needs the direct pointer
442 w1->_obj->qt_metacall(QMetaObject::InvokeMetaMethod, info._slot->slotIndex(), args);
454 w1->_obj->qt_metacall(QMetaObject::InvokeMetaMethod, info._slot->slotIndex(), args);
443 }
455 }
444 }
456 }
445 }
457 }
446 }
458 }
447 }
459 }
448 return -1;
460 return -1;
449 }
461 }
450
462
451 static int PythonQtInstanceWrapper_nonzero(PyObject *obj)
463 static int PythonQtInstanceWrapper_nonzero(PyObject *obj)
452 {
464 {
453 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)obj;
465 PythonQtInstanceWrapper* wrapper = (PythonQtInstanceWrapper*)obj;
454 return (wrapper->_wrappedPtr == NULL && wrapper->_obj == NULL)?0:1;
466 return (wrapper->_wrappedPtr == NULL && wrapper->_obj == NULL)?0:1;
455 }
467 }
456
468
457
469
458 static long PythonQtInstanceWrapper_hash(PythonQtInstanceWrapper *obj)
470 static long PythonQtInstanceWrapper_hash(PythonQtInstanceWrapper *obj)
459 {
471 {
460 if (obj->_wrappedPtr != NULL) {
472 if (obj->_wrappedPtr != NULL) {
461 return reinterpret_cast<long>(obj->_wrappedPtr);
473 return reinterpret_cast<long>(obj->_wrappedPtr);
462 } else {
474 } else {
463 QObject* qobj = obj->_obj; // get pointer from QPointer wrapper
475 QObject* qobj = obj->_obj; // get pointer from QPointer wrapper
464 return reinterpret_cast<long>(qobj);
476 return reinterpret_cast<long>(qobj);
465 }
477 }
466 }
478 }
467
479
468
480
469
481
470 // we override nb_nonzero, so that one can do 'if' expressions to test for a NULL ptr
482 // we override nb_nonzero, so that one can do 'if' expressions to test for a NULL ptr
471 static PyNumberMethods PythonQtInstanceWrapper_as_number = {
483 static PyNumberMethods PythonQtInstanceWrapper_as_number = {
472 0, /* nb_add */
484 0, /* nb_add */
473 0, /* nb_subtract */
485 0, /* nb_subtract */
474 0, /* nb_multiply */
486 0, /* nb_multiply */
475 0, /* nb_divide */
487 0, /* nb_divide */
476 0, /* nb_remainder */
488 0, /* nb_remainder */
477 0, /* nb_divmod */
489 0, /* nb_divmod */
478 0, /* nb_power */
490 0, /* nb_power */
479 0, /* nb_negative */
491 0, /* nb_negative */
480 0, /* nb_positive */
492 0, /* nb_positive */
481 0, /* nb_absolute */
493 0, /* nb_absolute */
482 PythonQtInstanceWrapper_nonzero, /* nb_nonzero */
494 PythonQtInstanceWrapper_nonzero, /* nb_nonzero */
483 0, /* nb_invert */
495 0, /* nb_invert */
484 0, /* nb_lshift */
496 0, /* nb_lshift */
485 0, /* nb_rshift */
497 0, /* nb_rshift */
486 0, /* nb_and */
498 0, /* nb_and */
487 0, /* nb_xor */
499 0, /* nb_xor */
488 0, /* nb_or */
500 0, /* nb_or */
489 0, /* nb_coerce */
501 0, /* nb_coerce */
490 0, /* nb_int */
502 0, /* nb_int */
491 0, /* nb_long */
503 0, /* nb_long */
492 0, /* nb_float */
504 0, /* nb_float */
493 0, /* nb_oct */
505 0, /* nb_oct */
494 0, /* nb_hex */
506 0, /* nb_hex */
495 0, /* nb_inplace_add */
507 0, /* nb_inplace_add */
496 0, /* nb_inplace_subtract */
508 0, /* nb_inplace_subtract */
497 0, /* nb_inplace_multiply */
509 0, /* nb_inplace_multiply */
498 0, /* nb_inplace_divide */
510 0, /* nb_inplace_divide */
499 0, /* nb_inplace_remainder */
511 0, /* nb_inplace_remainder */
500 0, /* nb_inplace_power */
512 0, /* nb_inplace_power */
501 0, /* nb_inplace_lshift */
513 0, /* nb_inplace_lshift */
502 0, /* nb_inplace_rshift */
514 0, /* nb_inplace_rshift */
503 0, /* nb_inplace_and */
515 0, /* nb_inplace_and */
504 0, /* nb_inplace_xor */
516 0, /* nb_inplace_xor */
505 0, /* nb_inplace_or */
517 0, /* nb_inplace_or */
506 0, /* nb_floor_divide */
518 0, /* nb_floor_divide */
507 0, /* nb_true_divide */
519 0, /* nb_true_divide */
508 0, /* nb_inplace_floor_divide */
520 0, /* nb_inplace_floor_divide */
509 0, /* nb_inplace_true_divide */
521 0, /* nb_inplace_true_divide */
510 };
522 };
511
523
512 PyTypeObject PythonQtInstanceWrapper_Type = {
524 PyTypeObject PythonQtInstanceWrapper_Type = {
513 PyObject_HEAD_INIT(&PythonQtClassWrapper_Type)
525 PyObject_HEAD_INIT(&PythonQtClassWrapper_Type)
514 0, /*ob_size*/
526 0, /*ob_size*/
515 "PythonQt.PythonQtInstanceWrapper", /*tp_name*/
527 "PythonQt.PythonQtInstanceWrapper", /*tp_name*/
516 sizeof(PythonQtInstanceWrapper), /*tp_basicsize*/
528 sizeof(PythonQtInstanceWrapper), /*tp_basicsize*/
517 0, /*tp_itemsize*/
529 0, /*tp_itemsize*/
518 (destructor)PythonQtInstanceWrapper_dealloc, /*tp_dealloc*/
530 (destructor)PythonQtInstanceWrapper_dealloc, /*tp_dealloc*/
519 0, /*tp_print*/
531 0, /*tp_print*/
520 0, /*tp_getattr*/
532 0, /*tp_getattr*/
521 0, /*tp_setattr*/
533 0, /*tp_setattr*/
522 PythonQtInstanceWrapper_compare, /*tp_compare*/
534 PythonQtInstanceWrapper_compare, /*tp_compare*/
523 PythonQtInstanceWrapper_repr, /*tp_repr*/
535 PythonQtInstanceWrapper_repr, /*tp_repr*/
524 &PythonQtInstanceWrapper_as_number, /*tp_as_number*/
536 &PythonQtInstanceWrapper_as_number, /*tp_as_number*/
525 0, /*tp_as_sequence*/
537 0, /*tp_as_sequence*/
526 0, /*tp_as_mapping*/
538 0, /*tp_as_mapping*/
527 (hashfunc)PythonQtInstanceWrapper_hash, /*tp_hash */
539 (hashfunc)PythonQtInstanceWrapper_hash, /*tp_hash */
528 0, /*tp_call*/
540 0, /*tp_call*/
529 PythonQtInstanceWrapper_str, /*tp_str*/
541 PythonQtInstanceWrapper_str, /*tp_str*/
530 PythonQtInstanceWrapper_getattro, /*tp_getattro*/
542 PythonQtInstanceWrapper_getattro, /*tp_getattro*/
531 PythonQtInstanceWrapper_setattro, /*tp_setattro*/
543 PythonQtInstanceWrapper_setattro, /*tp_setattro*/
532 0, /*tp_as_buffer*/
544 0, /*tp_as_buffer*/
533 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
545 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
534 "PythonQtInstanceWrapper object", /* tp_doc */
546 "PythonQtInstanceWrapper object", /* tp_doc */
535 0, /* tp_traverse */
547 0, /* tp_traverse */
536 0, /* tp_clear */
548 0, /* tp_clear */
537 0, /* tp_richcompare */
549 0, /* tp_richcompare */
538 0, /* tp_weaklistoffset */
550 0, /* tp_weaklistoffset */
539 0, /* tp_iter */
551 0, /* tp_iter */
540 0, /* tp_iternext */
552 0, /* tp_iternext */
541 0, /* tp_methods */
553 0, /* tp_methods */
542 0, /* tp_members */
554 0, /* tp_members */
543 0, /* tp_getset */
555 0, /* tp_getset */
544 0, /* tp_base */
556 0, /* tp_base */
545 0, /* tp_dict */
557 0, /* tp_dict */
546 0, /* tp_descr_get */
558 0, /* tp_descr_get */
547 0, /* tp_descr_set */
559 0, /* tp_descr_set */
548 0, /* tp_dictoffset */
560 0, /* tp_dictoffset */
549 (initproc)PythonQtInstanceWrapper_init, /* tp_init */
561 (initproc)PythonQtInstanceWrapper_init, /* tp_init */
550 0, /* tp_alloc */
562 0, /* tp_alloc */
551 PythonQtInstanceWrapper_new, /* tp_new */
563 PythonQtInstanceWrapper_new, /* tp_new */
552 };
564 };
553
565
554 //-------------------------------------------------------
566 //-------------------------------------------------------
555
567
General Comments 0
You need to be logged in to leave comments. Login now