refs #628 Refactor CWorker::invoke into a free function and expand its API.

This commit is contained in:
Mathew Sutcliffe
2016-03-24 22:17:39 +00:00
parent eeac403cfc
commit 514d460e57
2 changed files with 59 additions and 16 deletions

56
src/blackmisc/invoke.h Normal file
View File

@@ -0,0 +1,56 @@
/* Copyright (C) 2015
* swift Project Community / Contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKMISC_INVOKE_H
#define BLACKMISC_INVOKE_H
#include <type_traits>
namespace BlackMisc
{
//! \cond PRIVATE
namespace Private
{
// Our own version of C++17 std::invoke().
template <typename F, typename T, typename = std::enable_if_t<std::is_member_object_pointer<F>::value>>
decltype(auto) invoke(F ptr, T &&object)
{
return std::forward<T>(object).*ptr;
}
template <typename F, typename T, typename... Ts, typename = std::enable_if_t<std::is_member_function_pointer<F>::value>>
decltype(auto) invoke(F ptr, T &&object, Ts &&... args)
{
return (std::forward<T>(object).*ptr)(std::forward<Ts>(args)...);
}
template <typename F, typename... Ts, typename = std::enable_if_t<! std::is_member_pointer<std::decay_t<F>>::value>>
decltype(auto) invoke(F &&func, Ts &&... args)
{
return std::forward<F>(func)(std::forward<Ts>(args)...);
}
// Like invoke() but ignores the first argument if callable is not a member function. For uniform calling of callables with slot semantics.
template <typename F, typename T, typename... Ts, typename = std::enable_if_t<std::is_member_function_pointer<F>::value>>
decltype(auto) invokeSlot(F ptr, T *object, Ts &&... args)
{
return (object->*ptr)(std::forward<Ts>(args)...);
}
template <typename F, typename T, typename... Ts, typename = std::enable_if_t<! std::is_member_pointer<std::decay_t<F>>::value>>
decltype(auto) invokeSlot(F &&func, T *, Ts &&... args)
{
return std::forward<F>(func)(std::forward<Ts>(args)...);
}
}
//! \endcond
}
#endif

View File

@@ -15,6 +15,7 @@
#include "blackmiscexport.h"
#include "variant.h"
#include "stacktrace.h"
#include "invoke.h"
#include <QThread>
#include <QMutex>
#include <QTimer>
@@ -109,7 +110,7 @@ namespace BlackMisc
Q_ASSERT(context->thread() == QThread::currentThread());
QMutexLocker lock(&m_finishedMutex);
connect(this, &CWorkerBase::finished, context, functor);
if (m_finished) { invoke(context, functor); }
if (m_finished) { Private::invokeSlot(functor, context); }
}
//! Connects to a functor which will be called when the task is finished.
@@ -185,20 +186,6 @@ namespace BlackMisc
emit finished();
}
//! Uniform way to invoke either a functor or a method.
template <typename T, typename F, typename... Ts>
static auto invoke(T *object, F func, Ts &&... args) -> std::enable_if_t<std::is_member_function_pointer<F>::value>
{
return (object->*func)(std::forward<Ts>(args)...);
}
//! Uniform way to invoke either a functor or a method.
template <typename T, typename F, typename... Ts>
static auto invoke(T *, F func, Ts &&... args) -> std::enable_if_t<! std::is_member_function_pointer<F>::value>
{
return func(std::forward<Ts>(args)...);
}
private:
virtual void quit() noexcept {}
virtual void quitAndWait() noexcept { waitForFinished(); }
@@ -250,7 +237,7 @@ namespace BlackMisc
void thenWithResult(T *context, F functor)
{
Q_ASSERT_X(m_result.canConvert<R>(), Q_FUNC_INFO, "Type in thenWithResult must match return type of task");
then(context, [this, context, functor]() { invoke(context, functor, this->result<R>()); });
then(context, [this, context, functor]() { Private::invokeSlot(functor, context, this->result<R>()); });
}
//! Returns the result of the task, waiting for it to finish if necessary.