2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef QTCONCURRENT_RUNEX_H
|
|
|
|
|
#define QTCONCURRENT_RUNEX_H
|
|
|
|
|
|
|
|
|
|
#include <qrunnable.h>
|
|
|
|
|
#include <qfutureinterface.h>
|
|
|
|
|
#include <qthreadpool.h>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace QtConcurrent {
|
|
|
|
|
|
|
|
|
|
template <typename T, typename FunctionPointer>
|
|
|
|
|
class StoredInterfaceFunctionCall0 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
StoredInterfaceFunctionCall0(void (fn)(QFutureInterface<T> &))
|
|
|
|
|
: fn(fn) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
fn(futureInterface);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Class>
|
|
|
|
|
class StoredInterfaceMemberFunctionCall0 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
StoredInterfaceMemberFunctionCall0(void (Class::*fn)(QFutureInterface<T> &), Class *object)
|
|
|
|
|
: fn(fn), object(object) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
(object->*fn)(futureInterface);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Class *object;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Arg1>
|
|
|
|
|
class StoredInterfaceFunctionCall1 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceFunctionCall1(void (fn)(QFutureInterface<T> &, Arg1), const Arg1 &arg1)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), arg1(arg1) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
fn(futureInterface, arg1);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Arg1 arg1;
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Class, typename Arg1>
|
|
|
|
|
class StoredInterfaceMemberFunctionCall1 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceMemberFunctionCall1(void (Class::*fn)(QFutureInterface<T> &, Arg1), Class *object, const Arg1 &arg1)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), object(object), arg1(arg1) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
(object->*fn)(futureInterface, arg1);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Class *object;
|
|
|
|
|
Arg1 arg1;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Arg1, typename Arg2>
|
|
|
|
|
class StoredInterfaceFunctionCall2 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceFunctionCall2(void (fn)(QFutureInterface<T> &, Arg1, Arg2), const Arg1 &arg1, const Arg2 &arg2)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), arg1(arg1), arg2(arg2) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
fn(futureInterface, arg1, arg2);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Arg1 arg1; Arg2 arg2;
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Class, typename Arg1, typename Arg2>
|
|
|
|
|
class StoredInterfaceMemberFunctionCall2 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceMemberFunctionCall2(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2), Class *object, const Arg1 &arg1, const Arg2 &arg2)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), object(object), arg1(arg1), arg2(arg2) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
(object->*fn)(futureInterface, arg1, arg2);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Class *object;
|
|
|
|
|
Arg1 arg1; Arg2 arg2;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Arg1, typename Arg2, typename Arg3>
|
|
|
|
|
class StoredInterfaceFunctionCall3 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceFunctionCall3(void (fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3), const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), arg1(arg1), arg2(arg2), arg3(arg3) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
fn(futureInterface, arg1, arg2, arg3);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Arg1 arg1; Arg2 arg2; Arg3 arg3;
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Class, typename Arg1, typename Arg2, typename Arg3>
|
|
|
|
|
class StoredInterfaceMemberFunctionCall3 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceMemberFunctionCall3(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3), Class *object, const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), object(object), arg1(arg1), arg2(arg2), arg3(arg3) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
(object->*fn)(futureInterface, arg1, arg2, arg3);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Class *object;
|
|
|
|
|
Arg1 arg1; Arg2 arg2; Arg3 arg3;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Arg1, typename Arg2, typename Arg3, typename Arg4>
|
|
|
|
|
class StoredInterfaceFunctionCall4 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceFunctionCall4(void (fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4), const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), arg1(arg1), arg2(arg2), arg3(arg3), arg4(arg4) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
fn(futureInterface, arg1, arg2, arg3, arg4);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Arg1 arg1; Arg2 arg2; Arg3 arg3; Arg4 arg4;
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Class, typename Arg1, typename Arg2, typename Arg3, typename Arg4>
|
|
|
|
|
class StoredInterfaceMemberFunctionCall4 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceMemberFunctionCall4(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4), Class *object, const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), object(object), arg1(arg1), arg2(arg2), arg3(arg3), arg4(arg4) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
(object->*fn)(futureInterface, arg1, arg2, arg3, arg4);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Class *object;
|
|
|
|
|
Arg1 arg1; Arg2 arg2; Arg3 arg3; Arg4 arg4;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Arg1, typename Arg2, typename Arg3, typename Arg4, typename Arg5>
|
|
|
|
|
class StoredInterfaceFunctionCall5 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceFunctionCall5(void (fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4, Arg5), const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4, const Arg5 &arg5)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), arg1(arg1), arg2(arg2), arg3(arg3), arg4(arg4), arg5(arg5) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
fn(futureInterface, arg1, arg2, arg3, arg4, arg5);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Arg1 arg1; Arg2 arg2; Arg3 arg3; Arg4 arg4; Arg5 arg5;
|
|
|
|
|
};
|
|
|
|
|
template <typename T, typename FunctionPointer, typename Class, typename Arg1, typename Arg2, typename Arg3, typename Arg4, typename Arg5>
|
|
|
|
|
class StoredInterfaceMemberFunctionCall5 : public QRunnable
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-02-16 17:27:46 +01:00
|
|
|
StoredInterfaceMemberFunctionCall5(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4, Arg5), Class *object, const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4, const Arg5 &arg5)
|
2008-12-02 12:01:29 +01:00
|
|
|
: fn(fn), object(object), arg1(arg1), arg2(arg2), arg3(arg3), arg4(arg4), arg5(arg5) { }
|
|
|
|
|
|
|
|
|
|
QFuture<T> start()
|
|
|
|
|
{
|
|
|
|
|
futureInterface.reportStarted();
|
|
|
|
|
QFuture<T> future = futureInterface.future();
|
|
|
|
|
QThreadPool::globalInstance()->start(this);
|
|
|
|
|
return future;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
|
{
|
|
|
|
|
(object->*fn)(futureInterface, arg1, arg2, arg3, arg4, arg5);
|
|
|
|
|
futureInterface.reportFinished();
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
QFutureInterface<T> futureInterface;
|
|
|
|
|
FunctionPointer fn;
|
|
|
|
|
Class *object;
|
|
|
|
|
Arg1 arg1; Arg2 arg2; Arg3 arg3; Arg4 arg4; Arg5 arg5;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
QFuture<T> run(void (*functionPointer)(QFutureInterface<T> &))
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceFunctionCall0<T, void (*)(QFutureInterface<T> &)>(functionPointer))->start();
|
|
|
|
|
}
|
|
|
|
|
template <typename T, typename Arg1>
|
2012-02-16 17:27:46 +01:00
|
|
|
QFuture<T> run(void (*functionPointer)(QFutureInterface<T> &, Arg1), const Arg1 &arg1)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceFunctionCall1<T, void (*)(QFutureInterface<T> &, Arg1), Arg1>(functionPointer, arg1))->start();
|
|
|
|
|
}
|
|
|
|
|
template <typename T, typename Arg1, typename Arg2>
|
2012-02-16 17:27:46 +01:00
|
|
|
QFuture<T> run(void (*functionPointer)(QFutureInterface<T> &, Arg1, Arg2), const Arg1 &arg1, const Arg2 &arg2)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceFunctionCall2<T, void (*)(QFutureInterface<T> &, Arg1, Arg2), Arg1, Arg2>(functionPointer, arg1, arg2))->start();
|
|
|
|
|
}
|
|
|
|
|
template <typename T, typename Arg1, typename Arg2, typename Arg3>
|
2012-02-16 17:27:46 +01:00
|
|
|
QFuture<T> run(void (*functionPointer)(QFutureInterface<T> &, Arg1, Arg2, Arg3), const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceFunctionCall3<T, void (*)(QFutureInterface<T> &, Arg1, Arg2, Arg3), Arg1, Arg2, Arg3>(functionPointer, arg1, arg2, arg3))->start();
|
|
|
|
|
}
|
|
|
|
|
template <typename T, typename Arg1, typename Arg2, typename Arg3, typename Arg4>
|
2012-02-16 17:27:46 +01:00
|
|
|
QFuture<T> run(void (*functionPointer)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4), const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceFunctionCall4<T, void (*)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4), Arg1, Arg2, Arg3, Arg4>(functionPointer, arg1, arg2, arg3, arg4))->start();
|
|
|
|
|
}
|
|
|
|
|
template <typename T, typename Arg1, typename Arg2, typename Arg3, typename Arg4, typename Arg5>
|
2012-02-16 17:27:46 +01:00
|
|
|
QFuture<T> run(void (*functionPointer)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4, Arg5), const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4, const Arg5 &arg5)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceFunctionCall5<T, void (*)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4, Arg5), Arg1, Arg2, Arg3, Arg4, Arg5>(functionPointer, arg1, arg2, arg3, arg4, arg5))->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename Class, typename T>
|
|
|
|
|
QFuture<T> run(void (Class::*fn)(QFutureInterface<T> &), Class *object)
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceMemberFunctionCall0<T, void (Class::*)(QFutureInterface<T> &), Class>(fn, object))->start();
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-16 17:27:46 +01:00
|
|
|
template <typename Class, typename T, typename Arg1>
|
|
|
|
|
QFuture<T> run(void (Class::*fn)(QFutureInterface<T> &, Arg1), Class *object, Arg1 arg1)
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceMemberFunctionCall1<T, void (Class::*)(QFutureInterface<T> &, Arg1), Class, Arg1>(fn, object, arg1))->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename Class, typename T, typename Arg1, typename Arg2>
|
|
|
|
|
QFuture<T> run(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2), Class *object, const Arg1 &arg1, const Arg2 &arg2)
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceMemberFunctionCall2<T, void (Class::*)(QFutureInterface<T> &, Arg1, Arg2), Class, Arg1, Arg2>(fn, object, arg1, arg2))->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename Class, typename T, typename Arg1, typename Arg2, typename Arg3>
|
|
|
|
|
QFuture<T> run(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3), Class *object, const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3)
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceMemberFunctionCall3<T, void (Class::*)(QFutureInterface<T> &, Arg1, Arg2, Arg3), Class, Arg1, Arg2, Arg3>(fn, object, arg1, arg2, arg3))->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename Class, typename T, typename Arg1, typename Arg2, typename Arg3, typename Arg4>
|
|
|
|
|
QFuture<T> run(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4), Class *object, const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4)
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceMemberFunctionCall4<T, void (Class::*)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4), Class, Arg1, Arg2, Arg3, Arg4>(fn, object, arg1, arg2, arg3, arg4))->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename Class, typename T, typename Arg1, typename Arg2, typename Arg3, typename Arg4, typename Arg5>
|
|
|
|
|
QFuture<T> run(void (Class::*fn)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4, Arg5), Class *object, const Arg1 &arg1, const Arg2 &arg2, const Arg3 &arg3, const Arg4 &arg4, const Arg5 &arg5)
|
|
|
|
|
{
|
|
|
|
|
return (new StoredInterfaceMemberFunctionCall5<T, void (Class::*)(QFutureInterface<T> &, Arg1, Arg2, Arg3, Arg4, Arg5), Class, Arg1, Arg2, Arg3, Arg4, Arg5>(fn, object, arg1, arg2, arg3, arg4, arg5))->start();
|
|
|
|
|
}
|
2008-12-02 14:09:21 +01:00
|
|
|
} // namespace QtConcurrent
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2008-12-02 14:09:21 +01:00
|
|
|
#endif // QTCONCURRENT_RUNEX_H
|