QGIS/python/sip_helpers/qgissiphelper.cpp

49 lines
1.8 KiB
C++
Raw Normal View History

2016-05-11 21:18:54 +02:00
/***************************************************************************
qgissiphelper.cpp
-------------------
begin : Wed, May 11 2016
copyright : (C) 2016 by Matthias Kuhn
email : matthias@opengis.ch
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "qgissiphelper.h"
#include "sipAPI_core.h"
#include <sip.h>
#include <QVariant>
#include <Python.h>
bool null_from_qvariant_convertor( const QVariant *varp, PyObject **objp )
{
2016-05-11 21:36:30 +02:00
static bool watchdog = false;
2016-05-11 21:18:54 +02:00
2016-05-11 21:36:30 +02:00
if ( watchdog )
return false;
2016-05-11 21:18:54 +02:00
2016-05-11 21:36:30 +02:00
// If we deal with a NULL QVariant (and it's not a QByteArray which properly
// maps NULL values)
// If there are more cases like this, we should consider to using a whitelist
// instead of a blacklist.
if ( varp->isNull() && varp->type() != QVariant::ByteArray )
{
2016-05-11 21:18:54 +02:00
watchdog = true;
2016-05-11 21:36:30 +02:00
PyObject* vartype = sipConvertFromEnum( varp->type(), sipType_QVariant_Type );
*objp = PyObject_Call(( PyObject * )sipTypeAsPyTypeObject( sipType_QVariant ), PyTuple_Pack( 1, vartype ), nullptr );
2016-05-11 21:18:54 +02:00
watchdog = false;
return true;
}
2016-05-11 21:36:30 +02:00
else
{
return false;
}
2016-05-11 21:18:54 +02:00
}