/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of PySide2. ** ** $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 "pysideclassinfo.h" #include "pysideclassinfo_p.h" #include "dynamicqmetaobject.h" #include #include #define CLASSINFO_CLASS_NAME "ClassInfo" extern "C" { static PyObject* classInfoTpNew(PyTypeObject* subtype, PyObject* args, PyObject* kwds); static int classInfoTpInit(PyObject*, PyObject*, PyObject*); static void classInfoFree(void*); static PyObject* classCall(PyObject*, PyObject*, PyObject*); PyTypeObject PySideClassInfoType = { PyVarObject_HEAD_INIT(0, 0) "PySide2.QtCore." CLASSINFO_CLASS_NAME, /*tp_name*/ sizeof(PySideClassInfo), /*tp_basicsize*/ 0, /*tp_itemsize*/ 0, /*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 */ classCall, /*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 */ classInfoTpInit, /*tp_init */ 0, /*tp_alloc */ classInfoTpNew, /*tp_new */ classInfoFree, /*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 */ }; PyObject *classCall(PyObject *self, PyObject *args, PyObject * /* kw */) { if (!PyTuple_Check(args) || PyTuple_Size(args) != 1) { PyErr_Format(PyExc_TypeError, "The ClassInfo decorator takes exactly 1 positional argument (%zd given)", PyTuple_Size(args)); return 0; } PySideClassInfo* data = reinterpret_cast(self); PySideClassInfoPrivate* pData = data->d; if (pData->m_alreadyWrapped) { PyErr_SetString(PyExc_TypeError, "This instance of ClassInfo() was already used to wrap an object"); return 0; } PyObject* klass; klass = PyTuple_GetItem(args, 0); bool validClass = false; // This will sometimes segfault if you mistakenly use it on a function declaration if (!PyType_Check(klass)) { PyErr_SetString(PyExc_TypeError, "This decorator can only be used on class declarations"); return 0; } if (Shiboken::ObjectType::checkType(reinterpret_cast(klass))) { PySide::DynamicQMetaObject* mo = reinterpret_cast(Shiboken::ObjectType::getTypeUserData(reinterpret_cast(klass))); if (mo) { mo->addInfo(PySide::ClassInfo::getMap(data)); pData->m_alreadyWrapped = true; validClass = true; } } if (!validClass) { PyErr_SetString(PyExc_TypeError, "This decorator can only be used on classes that are subclasses of QObject"); return 0; } Py_INCREF(klass); return klass; } static PyObject *classInfoTpNew(PyTypeObject *subtype, PyObject * /* args */, PyObject * /* kwds */) { PySideClassInfo* me = reinterpret_cast(subtype->tp_alloc(subtype, 0)); me->d = new PySideClassInfoPrivate; me->d->m_alreadyWrapped = false; return reinterpret_cast(me); } int classInfoTpInit(PyObject* self, PyObject* args, PyObject* kwds) { if (PyTuple_Check(args) && PyTuple_Size(args) > 0) { PyErr_Format(PyExc_TypeError, "ClassInfo() takes exactly 0 positional arguments (%zd given)", PyTuple_Size(args)); return -1; } PySideClassInfo* data = reinterpret_cast(self); PySideClassInfoPrivate* pData = data->d; PyObject* key; PyObject* value; Py_ssize_t pos = 0; // PyDict_Next causes a segfault if kwds is empty if (kwds && PyDict_Check(kwds) && PyDict_Size(kwds) > 0) { while (PyDict_Next(kwds, &pos, &key, &value)) { if (Shiboken::String::check(key) && Shiboken::String::check(value)) { pData->m_data[Shiboken::String::toCString(key)] = Shiboken::String::toCString(value); } else { PyErr_SetString(PyExc_TypeError, "All keys and values provided to ClassInfo() must be strings"); return -1; } } } return PyErr_Occurred() ? -1 : 1; } void classInfoFree(void *self) { PyObject* pySelf = reinterpret_cast(self); PySideClassInfo* data = reinterpret_cast(self); delete data->d; pySelf->ob_type->tp_base->tp_free(self); } } // extern "C" namespace PySide { namespace ClassInfo { void init(PyObject* module) { if (PyType_Ready(&PySideClassInfoType) < 0) return; Py_INCREF(&PySideClassInfoType); PyModule_AddObject(module, CLASSINFO_CLASS_NAME, reinterpret_cast(&PySideClassInfoType)); } bool checkType(PyObject* pyObj) { if (pyObj) return PyType_IsSubtype(pyObj->ob_type, &PySideClassInfoType); return false; } QMap getMap(PySideClassInfo* obj) { return obj->d->m_data; } } //namespace Property } //namespace PySide