108 lines
4.8 KiB
C++
108 lines
4.8 KiB
C++
// Copyright (C) 2022 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
|
|
#ifndef SBK_QTCONCURRENT_PYTHON_H
|
|
#define SBK_QTCONCURRENT_PYTHON_H
|
|
|
|
#include <sbkpython.h>
|
|
#include <sbkmodule.h>
|
|
#include <sbkconverter.h>
|
|
// Module Includes
|
|
#include <pyside6_qtcore_python.h>
|
|
|
|
// Bound library includes
|
|
#include <QtConcurrent/qtaskbuilder.h>
|
|
#include <QtConcurrent/qtconcurrentreducekernel.h>
|
|
#include <QtConcurrent/qtconcurrentrunbase.h>
|
|
#include <QtConcurrent/qtconcurrentthreadengine.h>
|
|
#if QT_CONFIG(future)
|
|
#include <QtCore/qfuture.h>
|
|
#include <QtCore/qfuturewatcher.h>
|
|
#endif
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
QT_END_NAMESPACE
|
|
|
|
// Type indices
|
|
enum : int {
|
|
SBK_QFutureQString_IDX = 1,
|
|
SBK_QFuture_QString_IDX = 1,
|
|
SBK_QFutureVoid_IDX = 2,
|
|
SBK_QFuture_void_IDX = 2,
|
|
SBK_QFutureWatcherQString_IDX = 3,
|
|
SBK_QFutureWatcher_QString_IDX = 3,
|
|
SBK_QFutureWatcherVoid_IDX = 4,
|
|
SBK_QFutureWatcher_void_IDX = 4,
|
|
SBK_QtConcurrent_FutureResult_IDX = 6,
|
|
SBK_QtConcurrent_ThreadFunctionResult_IDX = 8,
|
|
SBK_QtConcurrent_ReduceOption_IDX = 7,
|
|
SBK_QFlags_QtConcurrent_ReduceOption_IDX = 0,
|
|
SBK_QtConcurrentQtConcurrent_IDX = 5,
|
|
SBK_QtConcurrent_IDX_COUNT = 9,
|
|
};
|
|
|
|
// This variable stores all Python types exported by this module.
|
|
extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtConcurrentTypeStructs;
|
|
|
|
// This variable stores the Python module object exported by this module.
|
|
extern PyObject *SbkPySide6_QtConcurrentModuleObject;
|
|
|
|
// This variable stores all type converters exported by this module.
|
|
extern SbkConverter **SbkPySide6_QtConcurrentTypeConverters;
|
|
|
|
// Converter indices
|
|
enum [[deprecated]] : int {
|
|
SBK_QTCONCURRENT_QLIST_INT_IDX = 0, // QList<int>
|
|
SBK_QTCONCURRENT_QLIST_QVARIANT_IDX = 1, // QList<QVariant>
|
|
SBK_QTCONCURRENT_QLIST_QSTRING_IDX = 2, // QList<QString>
|
|
SBK_QTCONCURRENT_QMAP_QSTRING_QVARIANT_IDX = 3, // QMap<QString,QVariant>
|
|
SBK_QTCONCURRENT_CONVERTERS_IDX_COUNT = 4,
|
|
};
|
|
|
|
// Converter indices
|
|
enum : int {
|
|
SBK_QtConcurrent_QList_int_IDX = 0, // QList<int>
|
|
SBK_QtConcurrent_QList_QVariant_IDX = 1, // QList<QVariant>
|
|
SBK_QtConcurrent_QList_QString_IDX = 2, // QList<QString>
|
|
SBK_QtConcurrent_QMap_QString_QVariant_IDX = 3, // QMap<QString,QVariant>
|
|
SBK_QtConcurrent_CONVERTERS_IDX_COUNT = 4,
|
|
};
|
|
|
|
// typedef entries
|
|
using QFutureQString = QFuture<QString>;
|
|
using QFutureVoid = QFuture<void>;
|
|
using QFutureWatcherQString = QFutureWatcher<QString>;
|
|
using QFutureWatcherVoid = QFutureWatcher<void>;
|
|
|
|
// Macros for type check
|
|
|
|
QT_WARNING_PUSH
|
|
QT_WARNING_DISABLE_DEPRECATED
|
|
namespace Shiboken
|
|
{
|
|
|
|
// PyType functions, to get the PyObjectType for a type T
|
|
#if QT_CONFIG(future)
|
|
template<> inline PyTypeObject *SbkType< QFutureQString >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureQString_IDX]); }
|
|
#endif
|
|
#if QT_CONFIG(future)
|
|
template<> inline PyTypeObject *SbkType< QFutureVoid >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureVoid_IDX]); }
|
|
#endif
|
|
#if QT_CONFIG(future)
|
|
template<> inline PyTypeObject *SbkType< QFutureWatcherQString >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureWatcherQString_IDX]); }
|
|
#endif
|
|
#if QT_CONFIG(future)
|
|
template<> inline PyTypeObject *SbkType< QFutureWatcherVoid >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFutureWatcherVoid_IDX]); }
|
|
#endif
|
|
template<> inline PyTypeObject *SbkType< ::QtConcurrent::FutureResult >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QtConcurrent_FutureResult_IDX]); }
|
|
template<> inline PyTypeObject *SbkType< ::QtConcurrent::ThreadFunctionResult >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QtConcurrent_ThreadFunctionResult_IDX]); }
|
|
template<> inline PyTypeObject *SbkType< ::QtConcurrent::ReduceOption >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QtConcurrent_ReduceOption_IDX]); }
|
|
template<> inline PyTypeObject *SbkType< ::QFlags<QtConcurrent::ReduceOption> >() { return Shiboken::Module::get(SbkPySide6_QtConcurrentTypeStructs[SBK_QFlags_QtConcurrent_ReduceOption_IDX]); }
|
|
|
|
} // namespace Shiboken
|
|
|
|
QT_WARNING_POP
|
|
#endif // SBK_QTCONCURRENT_PYTHON_H
|
|
|