Skip to content

Commit 5e0d26c

Browse files
committed
fixed ref counting of types
ignore eggs in importer
1 parent 488d8c4 commit 5e0d26c

7 files changed

+37
-18
lines changed

src/PythonQt.cpp

+10-6
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,9 @@ void PythonQt::init(int flags, const QByteArray& pythonQtModuleName)
264264

265265
_self->priv()->pythonQtModule().addObject("Debug", _self->priv()->_debugAPI);
266266

267+
Py_INCREF((PyObject*)&PythonQtSlotDecorator_Type);
268+
Py_INCREF((PyObject*)&PythonQtSignalFunction_Type);
269+
Py_INCREF((PyObject*)&PythonQtProperty_Type);
267270
PyModule_AddObject(pack, "Slot", (PyObject*)&PythonQtSlotDecorator_Type);
268271
PyModule_AddObject(pack, "Signal", (PyObject*)&PythonQtSignalFunction_Type);
269272
PyModule_AddObject(pack, "Property", (PyObject*)&PythonQtProperty_Type);
@@ -695,6 +698,7 @@ PythonQtClassWrapper* PythonQtPrivate::createNewPythonQtClassWrapper(PythonQtCla
695698
PyObject* className = PyString_FromString(pythonClassName.constData());
696699

697700
PyObject* baseClasses = PyTuple_New(1);
701+
Py_INCREF((PyObject*)&PythonQtInstanceWrapper_Type);
698702
PyTuple_SET_ITEM(baseClasses, 0, (PyObject*)&PythonQtInstanceWrapper_Type);
699703

700704
PyObject* typeDict = PyDict_New();
@@ -1677,11 +1681,13 @@ void PythonQt::initPythonQtModule(bool redirectStdOut, const QByteArray& pythonQ
16771681
#ifdef PY3K
16781682
PythonQtModuleDef.m_name = name.constData();
16791683
_p->_pythonQtModule = PyModule_Create(&PythonQtModuleDef);
1684+
_PyImport_FixupBuiltin(_p->_pythonQtModule, name);
16801685
#else
16811686
_p->_pythonQtModule = Py_InitModule(name.constData(), PythonQtMethods);
16821687
#endif
16831688
_p->_pythonQtModuleName = name;
1684-
1689+
1690+
Py_INCREF((PyObject*)&PythonQtBoolResult_Type);
16851691
PyModule_AddObject(_p->pythonQtModule().object(), "BoolResult", (PyObject*)&PythonQtBoolResult_Type);
16861692
PythonQtObjectPtr sys;
16871693
sys.setNewRef(PyImport_ImportModule("sys"));
@@ -1705,16 +1711,14 @@ void PythonQt::initPythonQtModule(bool redirectStdOut, const QByteArray& pythonQ
17051711
Py_ssize_t old_size = PyTuple_Size(old_module_names);
17061712
PyObject *module_names = PyTuple_New(old_size + 1);
17071713
for (Py_ssize_t i = 0; i < old_size; i++) {
1708-
PyTuple_SetItem(module_names, i, PyTuple_GetItem(old_module_names, i));
1714+
PyObject* val = PyTuple_GetItem(old_module_names, i);
1715+
Py_INCREF(val);
1716+
PyTuple_SetItem(module_names, i, val);
17091717
}
17101718
PyTuple_SetItem(module_names, old_size, PyString_FromString(name.constData()));
17111719
PyModule_AddObject(sys.object(), "builtin_module_names", module_names);
17121720
}
17131721
Py_XDECREF(old_module_names);
1714-
1715-
#ifdef PY3K
1716-
PyDict_SetItem(PyObject_GetAttrString(sys.object(), "modules"), PyUnicode_FromString(name.constData()), _p->_pythonQtModule.object());
1717-
#endif
17181722
}
17191723

17201724
QString PythonQt::getReturnTypeOfWrappedMethod(PyObject* module, const QString& name)

src/PythonQtConversion.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ void* PythonQtConv::ConvertPythonToQt(const PythonQtMethodInfo::ParameterInfo& i
591591
// since Qt uses QByteArray in many places for identifier strings,
592592
// we need to allow implicit conversion from unicode as well.
593593
// We allow that for both Python 2.x and 3.x to be compatible.
594-
bytes = PyObjGetString(obj, strict, ok).toUtf8();
594+
bytes = PyObjGetString(obj, true, ok).toUtf8();
595595
}
596596
if (ok) {
597597
PythonQtValueStorage_ADD_VALUE_IF_NEEDED(alreadyAllocatedCPPObject,global_variantStorage, QVariant, QVariant(bytes), ptr);

src/PythonQtImportFileInterface.h

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ class PythonQtImportFileInterface {
6464
//! returns if the file exists
6565
virtual bool exists(const QString& filename) = 0;
6666

67+
//! returns true if the given file is an egg archive (e.g. zip). If the egg is a directory
68+
//! then false is returned.
69+
virtual bool isEggArchive(const QString& filename) = 0;
70+
6771
//! get the last modified data of a file
6872
virtual QDateTime lastModifiedDate(const QString& filename) = 0;
6973

src/PythonQtImporter.cpp

+15-9
Original file line numberDiff line numberDiff line change
@@ -144,17 +144,23 @@ int PythonQtImporter_init(PythonQtImporter *self, PyObject *args, PyObject * /*k
144144

145145
QString path(cpath);
146146
if (PythonQt::importInterface()->exists(path)) {
147-
const QStringList& ignorePaths = PythonQt::self()->getImporterIgnorePaths();
148-
Q_FOREACH(QString ignorePath, ignorePaths) {
149-
if (path.startsWith(ignorePath)) {
150-
PyErr_SetString(PythonQtImportError,
151-
"path ignored");
152-
return -1;
147+
if (PythonQt::importInterface()->isEggArchive(path)) {
148+
PyErr_SetString(PythonQtImportError,
149+
"path is an egg archive, which is unsupported by PythonQt");
150+
return -1;
151+
} else {
152+
const QStringList& ignorePaths = PythonQt::self()->getImporterIgnorePaths();
153+
Q_FOREACH(QString ignorePath, ignorePaths) {
154+
if (path.startsWith(ignorePath)) {
155+
PyErr_SetString(PythonQtImportError,
156+
"path ignored");
157+
return -1;
158+
}
153159
}
154-
}
155160

156-
self->_path = new QString(path);
157-
return 0;
161+
self->_path = new QString(path);
162+
return 0;
163+
}
158164
} else {
159165
PyErr_SetString(PythonQtImportError,
160166
"path does not exist error");

src/PythonQtInstanceWrapper.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -832,10 +832,10 @@ static int PythonQtInstanceWrapper_builtin_nonzero(PyObject *obj)
832832
static long PythonQtInstanceWrapper_hash(PythonQtInstanceWrapper *obj)
833833
{
834834
if (obj->_wrappedPtr != NULL) {
835-
return reinterpret_cast<long>(obj->_wrappedPtr);
835+
return static_cast<long>(reinterpret_cast<size_t>(obj->_wrappedPtr));
836836
} else {
837837
QObject* qobj = obj->_obj; // get pointer from QPointer wrapper
838-
return reinterpret_cast<long>(qobj);
838+
return static_cast<long>(reinterpret_cast<size_t>(qobj));
839839
}
840840
}
841841

src/PythonQtQFileImporter.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ bool PythonQtQFileImporter::exists (const QString &filename) {
7474
return QFile::exists(filename);
7575
}
7676

77+
bool PythonQtQFileImporter::isEggArchive(const QString& filename) {
78+
return filename.toLower().endsWith(".egg") && !QFileInfo(filename).isDir();
79+
}
80+
7781
QDateTime PythonQtQFileImporter::lastModifiedDate (const QString &filename) {
7882
QFileInfo fi(filename);
7983
return fi.lastModified();

src/PythonQtQFileImporter.h

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ class PythonQtQFileImporter : public PythonQtImportFileInterface {
5555
QByteArray readSourceFile (const QString &filename, bool &ok);
5656

5757
bool exists (const QString &filename);
58+
bool isEggArchive(const QString& filename);
5859

5960
QDateTime lastModifiedDate (const QString &filename);
6061

0 commit comments

Comments
 (0)