/************************************************************************** ** ** Copyright (C) 2023 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Installer Framework. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** 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 The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** **************************************************************************/ #ifndef QTCONCURRENT_RUNEX_H #define QTCONCURRENT_RUNEX_H #include #include #include QT_BEGIN_NAMESPACE namespace QtConcurrent { template class StoredInterfaceFunctionCall : public QRunnable { public: StoredInterfaceFunctionCall(void (fn)(QFutureInterface &, Args...), const Args&&... args) : m_fn(fn), m_args(std::make_tuple(std::forward(args)...)) { } QFuture start() { m_futureInterface.reportStarted(); QFuture future = m_futureInterface.future(); QThreadPool::globalInstance()->start(this); return future; } void run() override { fn(m_futureInterface, std::forward(m_args)...); m_futureInterface.reportFinished(); } private: QFutureInterface m_futureInterface; FunctionPointer m_fn; std::tuple m_args; }; template class StoredInterfaceMemberFunctionCall : public QRunnable { public: StoredInterfaceMemberFunctionCall(void (Class::*fn)(QFutureInterface &, Args...), Class *object, const Args&&... args) : m_fn(fn), m_object(object), m_args(std::make_tuple(std::forward(args)...)) { } QFuture start() { m_futureInterface.reportStarted(); QFuture future = m_futureInterface.future(); QThreadPool::globalInstance()->start(this); return future; } void run() override { (m_object->*m_fn)(m_futureInterface, std::forward(m_args)...); m_futureInterface.reportFinished(); } private: QFutureInterface m_futureInterface; FunctionPointer m_fn; Class *m_object; std::tuple m_args; }; template QFuture run(void (*functionPointer)(QFutureInterface &, Args...), Args... args) { return (new StoredInterfaceFunctionCall &, Args...), Args...>(functionPointer, args...))->start(); } template QFuture run(void (Class::*fn)(QFutureInterface &, Args...), Class *object, Args... args) { return (new StoredInterfaceMemberFunctionCall &, Args...), Class, Args...>(fn, object, args...))->start(); } } // namespace QtConcurrent QT_END_NAMESPACE #endif // QTCONCURRENT_RUNEX_H