универсальный вызов std :: function из QVariantList - PullRequest
0 голосов
/ 24 апреля 2018

Я ищу общий способ вызова std :: function с аргументами из QVariantList. Эта версия работает, но имеет недостаток: необходимо указать параметры шаблона:

template <typename... T>
struct VariantFunc {
    static void Invoke(std::function<void(T...)> f, const QVariantList& args)
    {
        InvokeHelper(f, args);
    }

private:
    template <typename T1>
    static void InvokeHelper(std::function<void(T1)> f, const QVariantList& args)
    {
        f(args.at(0).value<T1>());
    }   
    template <typename T1, typename T2>
    static void InvokeHelper(std::function<void(T1, T2)> f, const QVariantList& args)
    {
        f(args.at(0).value<T1>(), args.at(1).value<T2>());
    }
    template <typename T1, typename T2, typename T3>
    static void InvokeHelper(std::function<void(T1, T2, T3)> f, const QVariantList& args)
    {
        f(args.at(0).value<T1>(), args.at(1).value<T2>(), args.at(2).value<T3>());
    }
};

auto args = QVariantList() << 100 << QString("hello") << QJsonValue(1234);
auto f = [](int i, QString s, QJsonValue j) { qDebug() << i << s << j;  };
VariantFunc<int, QString, QJsonValue>::Invoke(f, args);

Я бы хотел иметь такую ​​реализацию:

struct VariantFunc2 {
    template<typename Func>
    static void Invoke(Func f, const QVariantList& args)
    {
        // ???
    }
};

auto args = QVariantList() << 100 << QString("hello") << QJsonValue(1234);
auto f = [](int i, QString s, QJsonValue j) { qDebug() << i << s << j;  };
VariantFunc2::Invoke(f, args);

Есть ли способ сделать это в C ++ 11? Очевидно, что руководство по выводу для std :: function обеспечивает решение, но не с C ++ 11.

Ответы [ 3 ]

0 голосов
/ 25 апреля 2018

Ключ - правильный вывод типа из функтора.

namespace FunctorHelper {
template <typename R, typename... Args>
struct VariantFunc {
    static R invoke(const std::function<R(Args...)>& f, const QVariantList& args)
    {
        std::index_sequence_for<Args...> idxs;
        return invoke_helper(f, args, idxs);
    }

private:
    template <std::size_t... I>
    static R invoke_helper(const std::function<R(Args...)>& f, const QVariantList& args, std::index_sequence<I...>)
    {
        return f(args.at(I).value<std::remove_const<std::remove_reference<Args>::type>::type>()...);
    }
};

template <typename F>
struct function_traits;

// function pointer
template <typename R, class... Args>
struct function_traits<R(*)(Args...)> : public function_traits<R(Args...)>
{};

template <typename R, class... Args>
struct function_traits<R(Args...)>
{};

// const member function pointer
template <typename C, class R, class... Args>
struct function_traits<R(C::*)(Args...) const> : public function_traits<R(C&, Args...)>
{
    static constexpr std::size_t arity = sizeof...(Args);

    static R deduce_invoke(const std::function<R(Args...)>& f, const QVariantList& args)
    {
        return VariantFunc<R, Args...>::invoke(f, args);
    }
};
} // namespace

template <typename Func>
void Invoke(Func f, const QVariantList& args)
{
    using call_type = FunctorHelper::function_traits<decltype(&Func::operator())>;
    call_type::deduce_invoke(f, args);
}

void main()
{
    QString msg = "From Lambda";
    auto f = [msg](int i, const QString& s, const QJsonValue& j)
    {
        qDebug() << msg << i << s << j;
    };
    auto args = QVariantList() << 11 << "hello" << QJsonValue(123.456);
    Invoke(f, args);
    // "From Lambda" 11 "hello" QJsonValue(double, 123.456)
}
0 голосов
/ 25 апреля 2018

Вот реализация C ++ 14.Он не использует std::function, чтобы избежать накладных расходов, связанных с указанным классом.Вместо этого он использует совершенную пересылку вызываемого.Кроме того, функция Invoke возвращает результат вызова вызываемого объекта.

template <typename F>
struct function_traits;

template <typename R, class... Args>
struct function_traits<R(*)(Args...)> : public function_traits<R(Args...)> {};

template <typename R, class... Args>
struct function_traits<R(Args...)> {};

template <typename C, class R, class... Args>
struct function_traits<R(C::*)(Args...) const> : public function_traits<R(C&, Args...)>
{
    using args = std::tuple<Args...>;
};

template <typename F, typename Args, std::size_t ... I>
auto Invoke_impl(F&& f, const QVariantList& args, std::index_sequence<I ...>)
{
    return f(args.at(I).value<std::remove_const_t<std::remove_reference_t<std::tuple_element_t<I, Args>>>>() ...);
}

template <typename Func>
auto Invoke(Func&& f, const QVariantList& args)
{
    using F = typename std::remove_reference<Func>::type;
    using Args = typename function_traits<decltype(&F::operator())>::args;
    using Indices = std::make_index_sequence<std::tuple_size<Args>::value>;
    return Invoke_impl<Func, Args>(std::forward<Func>(f), args, Indices{});
}

int main()
{
    QString msg = "From Lambda";
    auto f = [msg](int i, const QString& s, const QJsonValue& j)
    {
        qDebug() << msg << i << s << j;
        return 5;
    };
    auto args = QVariantList() << 11 << "hello" << QJsonValue(123.456);
    qDebug() << Invoke(f, args);
}
0 голосов
/ 24 апреля 2018

Упаковка в класс только усложняет. Вы хотите, чтобы пакет T... был параметром шаблона Invoke

namespace detail {
template <typename... T, std::size_t... I>
void invoke_helper(std::function<void(T...)> f, const QVariantList& args, std::index_sequence<I...>) 
{
    f(args.at(I).value<T>()...);
}

template <typename... T>
void deduce_invoke(std::function<void(T...)> f, const QVariantList& args)
{
    std::index_sequence_for<T...> idxs;
    invoke_helper<T...>(std::move(f), args, idxs);
}

}

template <typename Func>
void Invoke(Func&& f, const QVariantList& args)
{
    detail::deduce_invoke(std::function{f}, args);
}

Это выведет T... для однозначных случаев.

Это имеет больше сходства с std::apply, чем с std::invoke, поэтому я думаю, что Apply будет лучшим именем.

...