/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. ** ** $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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/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 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. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QQMLTHREAD_P_H #define QQMLTHREAD_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include QT_BEGIN_NAMESPACE class QThread; class QQmlThreadPrivate; class QQmlThread { public: QQmlThread(); virtual ~QQmlThread(); void shutdown(); bool isShutdown() const; void lock(); void unlock(); void wakeOne(); void wakeAll(); void wait(); QThread *thread() const; bool isThisThread() const; // Synchronously invoke a method in the thread template inline void callMethodInThread(void (O::*Member)()); template inline void callMethodInThread(void (O::*Member)(V), const T &); template inline void callMethodInThread(void (O::*Member)(V, V2), const T &, const T2 &); // Synchronously invoke a method in the main thread. If the main thread is // blocked in a callMethodInThread() call, the call is made from within that // call. template inline void callMethodInMain(void (O::*Member)()); template inline void callMethodInMain(void (O::*Member)(V), const T &); template inline void callMethodInMain(void (O::*Member)(V, V2), const T &, const T2 &); // Asynchronously invoke a method in the thread. template inline void postMethodToThread(void (O::*Member)()); template inline void postMethodToThread(void (O::*Member)(V), const T &); template inline void postMethodToThread(void (O::*Member)(V, V2), const T &, const T2 &); // Asynchronously invoke a method in the main thread. template inline void postMethodToMain(void (O::*Member)()); template inline void postMethodToMain(void (O::*Member)(V), const T &); template inline void postMethodToMain(void (O::*Member)(V, V2), const T &, const T2 &); protected: virtual void startupThread(); virtual void shutdownThread(); private: friend class QQmlThreadPrivate; struct Message { Message() : next(0) {} virtual ~Message() {} Message *next; virtual void call(QQmlThread *) = 0; }; void internalCallMethodInThread(Message *); void internalCallMethodInMain(Message *); void internalPostMethodToThread(Message *); void internalPostMethodToMain(Message *); QQmlThreadPrivate *d; }; template void QQmlThread::callMethodInThread(void (O::*Member)()) { struct I : public Message { void (O::*Member)(); I(void (O::*Member)()) : Member(Member) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(); } }; internalCallMethodInThread(new I(Member)); } template void QQmlThread::callMethodInThread(void (O::*Member)(V), const T &arg) { struct I : public Message { void (O::*Member)(V); T arg; I(void (O::*Member)(V), const T &arg) : Member(Member), arg(arg) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg); } }; internalCallMethodInThread(new I(Member, arg)); } template void QQmlThread::callMethodInThread(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) { struct I : public Message { void (O::*Member)(V, V2); T arg; T2 arg2; I(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) : Member(Member), arg(arg), arg2(arg2) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg, arg2); } }; internalCallMethodInThread(new I(Member, arg, arg2)); } template void QQmlThread::callMethodInMain(void (O::*Member)()) { struct I : public Message { void (O::*Member)(); I(void (O::*Member)()) : Member(Member) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(); } }; internalCallMethodInMain(new I(Member)); } template void QQmlThread::callMethodInMain(void (O::*Member)(V), const T &arg) { struct I : public Message { void (O::*Member)(V); T arg; I(void (O::*Member)(V), const T &arg) : Member(Member), arg(arg) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg); } }; internalCallMethodInMain(new I(Member, arg)); } template void QQmlThread::callMethodInMain(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) { struct I : public Message { void (O::*Member)(V, V2); T arg; T2 arg2; I(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) : Member(Member), arg(arg), arg2(arg2) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg, arg2); } }; internalCallMethodInMain(new I(Member, arg, arg2)); } template void QQmlThread::postMethodToThread(void (O::*Member)()) { struct I : public Message { void (O::*Member)(); I(void (O::*Member)()) : Member(Member) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(); } }; internalPostMethodToThread(new I(Member)); } template void QQmlThread::postMethodToThread(void (O::*Member)(V), const T &arg) { struct I : public Message { void (O::*Member)(V); T arg; I(void (O::*Member)(V), const T &arg) : Member(Member), arg(arg) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg); } }; internalPostMethodToThread(new I(Member, arg)); } template void QQmlThread::postMethodToThread(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) { struct I : public Message { void (O::*Member)(V, V2); T arg; T2 arg2; I(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) : Member(Member), arg(arg), arg2(arg2) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg, arg2); } }; internalPostMethodToThread(new I(Member, arg, arg2)); } template void QQmlThread::postMethodToMain(void (O::*Member)()) { struct I : public Message { void (O::*Member)(); I(void (O::*Member)()) : Member(Member) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(); } }; internalPostMethodToMain(new I(Member)); } template void QQmlThread::postMethodToMain(void (O::*Member)(V), const T &arg) { struct I : public Message { void (O::*Member)(V); T arg; I(void (O::*Member)(V), const T &arg) : Member(Member), arg(arg) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg); } }; internalPostMethodToMain(new I(Member, arg)); } template void QQmlThread::postMethodToMain(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) { struct I : public Message { void (O::*Member)(V, V2); T arg; T2 arg2; I(void (O::*Member)(V, V2), const T &arg, const T2 &arg2) : Member(Member), arg(arg), arg2(arg2) {} virtual void call(QQmlThread *thread) { O *me = static_cast(thread); (me->*Member)(arg, arg2); } }; internalPostMethodToMain(new I(Member, arg, arg2)); } QT_END_NAMESPACE #endif // QQMLTHREAD_P_H