/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include "pysideproperty.h" #include "pysideproperty_p.h" #include "dynamicqmetaobject_p.h" #include "pysidesignal.h" #include "pysidesignal_p.h" #include #define QPROPERTY_CLASS_NAME "Property" extern "C" { static PyObject* qpropertyTpNew(PyTypeObject* subtype, PyObject* args, PyObject* kwds); static int qpropertyTpInit(PyObject*, PyObject*, PyObject*); static void qpropertyDeAlloc(PyObject* self); //methods static PyObject* qPropertyCall(PyObject*, PyObject*, PyObject*); static PyObject* qPropertySetter(PyObject*, PyObject*); static PyObject* qPropertyGetter(PyObject*, PyObject*); static int qpropertyTraverse(PyObject* self, visitproc visit, void* arg); static int qpropertyClear(PyObject* self); static PyMethodDef PySidePropertyMethods[] = { {"setter", (PyCFunction)qPropertySetter, METH_O, 0}, {"write", (PyCFunction)qPropertySetter, METH_O, 0}, {"getter", (PyCFunction)qPropertyGetter, METH_O, 0}, {"read", (PyCFunction)qPropertyGetter, METH_O, 0}, {0, 0, 0, 0} }; static PyType_Slot PySidePropertyType_slots[] = { {Py_tp_dealloc, (void *)qpropertyDeAlloc}, {Py_tp_call, (void *)qPropertyCall}, {Py_tp_traverse, (void *)qpropertyTraverse}, {Py_tp_clear, (void *)qpropertyClear}, {Py_tp_methods, (void *)PySidePropertyMethods}, {Py_tp_init, (void *)qpropertyTpInit}, {Py_tp_new, (void *)qpropertyTpNew}, {0, 0} }; // Dotted modulename is crucial for PyType_FromSpec to work. Is this name right? static PyType_Spec PySidePropertyType_spec = { "PySide2.QtCore." QPROPERTY_CLASS_NAME, sizeof(PySideProperty), 0, Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC|Py_TPFLAGS_BASETYPE, PySidePropertyType_slots, }; PyTypeObject *PySidePropertyTypeF(void) { static PyTypeObject *type = nullptr; if (!type) type = (PyTypeObject *)PyType_FromSpec(&PySidePropertyType_spec); return type; } static void qpropertyMetaCall(PySideProperty* pp, PyObject* self, QMetaObject::Call call, void** args) { Shiboken::Conversions::SpecificConverter converter(pp->d->typeName); Q_ASSERT(converter); QByteArray type(pp->d->typeName); switch(call) { case QMetaObject::ReadProperty: { Shiboken::GilState gil; PyObject* value = PySide::Property::getValue(pp, self); if (value) { converter.toCpp(value, args[0]); Py_DECREF(value); } break; } case QMetaObject::WriteProperty: { Shiboken::GilState gil; Shiboken::AutoDecRef value(converter.toPython(args[0])); PySide::Property::setValue(pp, self, value); break; } case QMetaObject::ResetProperty: { Shiboken::GilState gil; PySide::Property::reset(pp, self); break; } case QMetaObject::QueryPropertyDesignable: case QMetaObject::QueryPropertyScriptable: case QMetaObject::QueryPropertyStored: case QMetaObject::QueryPropertyEditable: case QMetaObject::QueryPropertyUser: // just to avoid gcc warnings case QMetaObject::InvokeMetaMethod: case QMetaObject::CreateInstance: case QMetaObject::IndexOfMethod: case QMetaObject::RegisterPropertyMetaType: case QMetaObject::RegisterMethodArgumentMetaType: break; } } static PyObject *qpropertyTpNew(PyTypeObject *subtype, PyObject * /* args */, PyObject * /* kwds */) { PySideProperty* me = reinterpret_cast(subtype->tp_alloc(subtype, 0)); me->d = new PySidePropertyPrivate; memset(me->d, 0, sizeof(PySidePropertyPrivate)); PySidePropertyPrivate* pData = me->d; pData->designable = true; pData->scriptable = true; pData->stored = true; return reinterpret_cast(me); } int qpropertyTpInit(PyObject* self, PyObject* args, PyObject* kwds) { PyObject* type = 0; PySideProperty* data = reinterpret_cast(self); PySidePropertyPrivate* pData = data->d; pData->metaCallHandler = &qpropertyMetaCall; static const char *kwlist[] = {"type", "fget", "fset", "freset", "fdel", "doc", "notify", "designable", "scriptable", "stored", "user", "constant", "final", 0}; if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|OOOOsObbbbbb:QtCore.QProperty", const_cast(kwlist), /*OO*/ &type, &(pData->fget), /*OOO*/ &(pData->fset), &(pData->freset), &(pData->fdel), /*s*/ &(pData->doc), /*O*/ &(pData->notify), /*bbbbbb*/ &(pData->designable), &(pData->scriptable), &(pData->stored), &(pData->user), &(pData->constant), &(pData->final))) { return 0; } pData->typeName = PySide::Signal::getTypeName(type); if (!pData->typeName) PyErr_SetString(PyExc_TypeError, "Invalid property type or type name."); else if (pData->constant && (pData->fset || pData->notify)) PyErr_SetString(PyExc_TypeError, "A constant property cannot have a WRITE method or a NOTIFY signal."); if (!PyErr_Occurred()) { Py_XINCREF(pData->fget); Py_XINCREF(pData->fset); Py_XINCREF(pData->freset); Py_XINCREF(pData->fdel); Py_XINCREF(pData->notify); return 1; } pData->fget = nullptr; pData->fset = nullptr; pData->freset = nullptr; pData->fdel = nullptr; pData->notify = nullptr; return -1; } void qpropertyDeAlloc(PyObject* self) { qpropertyClear(self); Py_TYPE(self)->tp_free(self); } PyObject *qPropertyCall(PyObject *self, PyObject *args, PyObject * /* kw */) { PyObject *callback = PyTuple_GetItem(args, 0); if (PyFunction_Check(callback)) { PySideProperty *prop = reinterpret_cast(self); PySidePropertyPrivate* pData = prop->d; Py_INCREF(callback); pData->fget = callback; Py_INCREF(self); return self; } PyErr_SetString(PyExc_TypeError, "Invalid property usage."); return nullptr; } PyObject* qPropertySetter(PyObject* self, PyObject* callback) { if (PyFunction_Check(callback)) { PySideProperty *prop = reinterpret_cast(self); PySidePropertyPrivate* pData = prop->d; Py_INCREF(callback); pData->fset = callback; Py_INCREF(callback); return callback; } PyErr_SetString(PyExc_TypeError, "Invalid property setter agument."); return nullptr; } PyObject* qPropertyGetter(PyObject* self, PyObject* callback) { if (PyFunction_Check(callback)) { PySideProperty *prop = reinterpret_cast(self); PySidePropertyPrivate* pData = prop->d; Py_INCREF(callback); pData->fget = callback; Py_INCREF(callback); return callback; } PyErr_SetString(PyExc_TypeError, "Invalid property getter agument."); return nullptr; } static int qpropertyTraverse(PyObject* self, visitproc visit, void* arg) { PySidePropertyPrivate* data = reinterpret_cast(self)->d; if (!data) return 0; Py_VISIT(data->fget); Py_VISIT(data->fset); Py_VISIT(data->freset); Py_VISIT(data->fdel); Py_VISIT(data->notify); return 0; } static int qpropertyClear(PyObject* self) { PySidePropertyPrivate* data = reinterpret_cast(self)->d; if (!data) return 0; Py_CLEAR(data->fget); Py_CLEAR(data->fset); Py_CLEAR(data->freset); Py_CLEAR(data->fdel); Py_CLEAR(data->notify); free(data->typeName); free(data->doc); free(data->notifySignature); delete data; reinterpret_cast(self)->d = 0; return 0; } } // extern "C" namespace { static PyObject* getFromType(PyTypeObject* type, PyObject* name) { PyObject* attr = 0; attr = PyDict_GetItem(type->tp_dict, name); if (!attr) { PyObject* bases = type->tp_bases; int size = PyTuple_GET_SIZE(bases); for(int i=0; i < size; i++) { PyObject* base = PyTuple_GET_ITEM(bases, i); attr = getFromType(reinterpret_cast(base), name); if (attr) return attr; } } return attr; } } //namespace namespace PySide { namespace Property { void init(PyObject* module) { if (PyType_Ready(PySidePropertyTypeF()) < 0) return; Py_INCREF(PySidePropertyTypeF()); PyModule_AddObject(module, QPROPERTY_CLASS_NAME, reinterpret_cast(PySidePropertyTypeF())); } bool checkType(PyObject* pyObj) { if (pyObj) { return PyType_IsSubtype(Py_TYPE(pyObj), PySidePropertyTypeF()); } return false; } bool isPropertyType(PyObject* pyObj) { return checkType(pyObj); } int setValue(PySideProperty* self, PyObject* source, PyObject* value) { PyObject* fset = self->d->fset; if (fset) { Shiboken::AutoDecRef args(PyTuple_New(2)); PyTuple_SET_ITEM(args, 0, source); PyTuple_SET_ITEM(args, 1, value); Py_INCREF(source); Py_INCREF(value); Shiboken::AutoDecRef result(PyObject_CallObject(fset, args)); return (result.isNull() ? -1 : 0); } else { PyErr_SetString(PyExc_AttributeError, "Attibute read only"); } return -1; } PyObject* getValue(PySideProperty* self, PyObject* source) { PyObject* fget = self->d->fget; if (fget) { Shiboken::AutoDecRef args(PyTuple_New(1)); Py_INCREF(source); PyTuple_SET_ITEM(args, 0, source); return PyObject_CallObject(fget, args); } return 0; } int reset(PySideProperty* self, PyObject* source) { PyObject* freset = self->d->freset; if (freset) { Shiboken::AutoDecRef args(PyTuple_New(1)); Py_INCREF(source); PyTuple_SET_ITEM(args, 0, source); Shiboken::AutoDecRef result(PyObject_CallObject(freset, args)); return (result.isNull() ? -1 : 0); } return -1; } const char* getTypeName(const PySideProperty* self) { return self->d->typeName; } PySideProperty* getObject(PyObject* source, PyObject* name) { PyObject* attr = 0; if (Shiboken::Object::isUserType(source)) { PyObject* dict = reinterpret_cast(source)->ob_dict; if (dict) attr = PyDict_GetItem(dict, name); } attr = getFromType(Py_TYPE(source), name); if (attr && checkType(attr)) { Py_INCREF(attr); return reinterpret_cast(attr); } if (!attr) PyErr_Clear(); //Clear possible error caused by PyObject_GenericGetAttr return 0; } bool isReadable(const PySideProperty * /* self */) { return true; } bool isWritable(const PySideProperty* self) { return (self->d->fset != 0); } bool hasReset(const PySideProperty* self) { return (self->d->freset != 0); } bool isDesignable(const PySideProperty* self) { return self->d->designable; } bool isScriptable(const PySideProperty* self) { return self->d->scriptable; } bool isStored(const PySideProperty* self) { return self->d->stored; } bool isUser(const PySideProperty* self) { return self->d->user; } bool isConstant(const PySideProperty* self) { return self->d->constant; } bool isFinal(const PySideProperty* self) { return self->d->final; } const char* getNotifyName(PySideProperty* self) { if (!self->d->notifySignature) { PyObject* str = PyObject_Str(self->d->notify); self->d->notifySignature = strdup(Shiboken::String::toCString(str)); Py_DECREF(str); } return self->d->notifySignature; } void setMetaCallHandler(PySideProperty* self, MetaCallHandler handler) { self->d->metaCallHandler = handler; } void setTypeName(PySideProperty* self, const char* typeName) { self->d->typeName = strdup(typeName); } void setUserData(PySideProperty* self, void* data) { self->d->userData = data; } void* userData(PySideProperty* self) { return self->d->userData; } } //namespace Property } //namespace PySide