2016-04-19 20:41:59 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2016 Mnemosyne LLC
|
|
|
|
*
|
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
#include <QFutureInterface>
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPair>
|
|
|
|
#include <QQueue>
|
|
|
|
|
|
|
|
#include "RpcClient.h"
|
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
class RpcQueue : public QObject
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
public:
|
|
|
|
explicit RpcQueue(QObject* parent = nullptr);
|
2016-04-19 20:41:59 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
void setTolerateErrors(bool tolerateErrors = true)
|
|
|
|
{
|
|
|
|
myTolerateErrors = tolerateErrors;
|
|
|
|
}
|
2016-04-19 20:41:59 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func>
|
|
|
|
void add(Func func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-19 15:04:45 +03:00
|
|
|
myQueue.enqueue(qMakePair(normalizeFunc(func), ErrorHandlerFunction()));
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename ErrorHandler>
|
|
|
|
void add(Func func, ErrorHandler errorHandler)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-19 15:04:45 +03:00
|
|
|
myQueue.enqueue(qMakePair(normalizeFunc(func), normalizeErrorHandler(errorHandler)));
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
RpcResponseFuture future();
|
2016-04-19 20:41:59 +00:00
|
|
|
|
|
|
|
// The first function in queue is ran synchronously
|
|
|
|
// (hence it may be e. g. a lambda capturing local variables by reference).
|
2017-04-19 15:04:45 +03:00
|
|
|
void run();
|
2016-04-19 20:41:59 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
private:
|
2016-04-19 20:41:59 +00:00
|
|
|
// Internally queued function. Takes the last response future, makes a
|
|
|
|
// request and returns a new response future.
|
2019-02-10 14:05:16 +03:00
|
|
|
typedef std::function<RpcResponseFuture(RpcResponseFuture const&)> QueuedFunction;
|
2016-04-19 20:41:59 +00:00
|
|
|
|
|
|
|
// Internally stored error handler function. Takes the last response future and returns nothing.
|
2017-04-20 19:02:19 +03:00
|
|
|
typedef std::function<void (RpcResponseFuture const&)> ErrorHandlerFunction;
|
2016-04-19 20:41:59 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
private slots:
|
|
|
|
void stepFinished();
|
2016-04-19 20:41:59 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
private:
|
2017-04-20 19:02:19 +03:00
|
|
|
void runNext(RpcResponseFuture const& response);
|
2016-04-19 20:41:59 +00:00
|
|
|
|
|
|
|
// These overloads convert various forms of input closures to what we store internally.
|
|
|
|
|
|
|
|
// normal closure, takes response and returns new future
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename std::enable_if<
|
2017-04-20 19:02:19 +03:00
|
|
|
std::is_same<typename std::result_of<Func(RpcResponse const&)>::type, RpcResponseFuture>::value
|
2019-02-10 14:05:16 +03:00
|
|
|
>::type* = nullptr>
|
2017-04-20 19:02:19 +03:00
|
|
|
QueuedFunction normalizeFunc(Func const& func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-20 19:02:19 +03:00
|
|
|
return [func](RpcResponseFuture const& r)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
|
|
|
return func(r.result());
|
|
|
|
};
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// closure without argument (first step), takes nothing and returns new future
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename std::enable_if<
|
|
|
|
std::is_same<typename std::result_of<Func()>::type, RpcResponseFuture>::value
|
2019-02-10 14:05:16 +03:00
|
|
|
>::type* = nullptr>
|
2017-04-20 19:02:19 +03:00
|
|
|
QueuedFunction normalizeFunc(Func const& func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-20 19:02:19 +03:00
|
|
|
return [func](RpcResponseFuture const&)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
|
|
|
return func();
|
|
|
|
};
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// closure without return value ("auxiliary"), takes response and returns nothing -- internally we reuse the last future
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename std::enable_if<
|
2017-04-20 19:02:19 +03:00
|
|
|
std::is_same<typename std::result_of<Func(RpcResponse const&)>::type, void>::value
|
2019-02-10 14:05:16 +03:00
|
|
|
>::type* = nullptr>
|
2017-04-20 19:02:19 +03:00
|
|
|
QueuedFunction normalizeFunc(Func const& func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-20 19:02:19 +03:00
|
|
|
return [func](RpcResponseFuture const& r)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
|
|
|
func(r.result());
|
|
|
|
return r;
|
|
|
|
};
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// closure without argument and return value, takes nothing and returns nothing -- next function will also get nothing
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename std::enable_if<
|
|
|
|
std::is_same<typename std::result_of<Func()>::type, void>::value
|
2019-02-10 14:05:16 +03:00
|
|
|
>::type* = nullptr>
|
2017-04-20 19:02:19 +03:00
|
|
|
QueuedFunction normalizeFunc(Func const& func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-20 19:02:19 +03:00
|
|
|
return [func](RpcResponseFuture const& r)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
|
|
|
func();
|
|
|
|
return r;
|
|
|
|
};
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// normal error handler, takes last response
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename std::enable_if<
|
2017-04-20 19:02:19 +03:00
|
|
|
std::is_same<typename std::result_of<Func(RpcResponse const&)>::type, void>::value
|
2019-02-10 14:05:16 +03:00
|
|
|
>::type* = nullptr>
|
2017-04-20 19:02:19 +03:00
|
|
|
ErrorHandlerFunction normalizeErrorHandler(Func const& func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
2017-04-20 19:02:19 +03:00
|
|
|
return [func](RpcResponseFuture const& r)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
|
|
|
func(r.result());
|
|
|
|
};
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// error handler without an argument, takes nothing
|
2017-04-19 15:04:45 +03:00
|
|
|
template<typename Func, typename std::enable_if<
|
|
|
|
std::is_same<typename std::result_of<Func()>::type, void>::value
|
2019-02-10 14:05:16 +03:00
|
|
|
>::type* = nullptr>
|
2017-04-20 19:02:19 +03:00
|
|
|
ErrorHandlerFunction normalizeErrorHandler(Func const& func)
|
2016-04-19 20:41:59 +00:00
|
|
|
{
|
fix: gcc warnings in libtransmission/ and utils/ (#843)
* fix: __attribute__(__printf__) warnings
* fix: implicit fallthrough warning
* fixup! fix: implicit fallthrough warning
* fix: disable warnings for 3rd party code
Since we want to leave upstream code as-is
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: disable warnings for 3rd party code
* silence spurious alignment warning
Xrefs
Discussion: https://stackoverflow.com/a/35554349
Macro inspiration: https://pagure.io/SSSD/sssd/blob/90ac46f71068d131391492360a8553bdd005b5a7/f/src/util/util_safealign.h#_35
* fixup! fix: disable warnings for 3rd party code
* fixup! fix: implicit fallthrough warning
* make uncrustify happy
* remove uncrustify-test.sh
that's probably off-topic for this PR
* fixup! fix: __attribute__(__printf__) warnings
* Update libtransmission/CMakeLists.txt
Co-Authored-By: ckerr <ckerr@github.com>
* fixup! silence spurious alignment warning
* use -w for DISABLE_WARNINGS in Clang
* refactor: fix libtransmission deprecation warnings
* fix: pthread_create's start_routine's return value
This was defined as `void` on non-Windows but should have been `void*`
* chore: uncrustify
* fix: add DISABLE_WARNINGS option for SunPro Studio
* fix "unused in lambda capture" warnings by clang++
* fix 'increases required alignment' warning
Caused from storing int16_t's in a char array.
* fix net.c 'increases required alignment' warning
The code passes in a `struct sockaddr_storage*` which is a padded struct
large enough for the necessary alignment. Unfortunately it was recast as
a `struct sockaddr*` which has less padding and a smaller alignment. The
warning occrred because of these differing alignments.
* make building quieter so warnings are more visible
* fixup! fix 'increases required alignment' warning
* Fix -Wcast-function-type warnings in GTK+ app code
https://gitlab.gnome.org/GNOME/gnome-terminal/issues/96 talks about both
the issue and its solution.
GCC 8's -Wcast-function-type, enabled by -Wextra, is problematic in glib
applications because it's idiomatic there to recast function signatures,
e.g. `g_slist_free(list, (GFunc)g_free, NULL);`.
Disabling the warning with pragmas causes "unrecognized pragma" warnings
on clang and older versions of gcc, and disabling the warning could miss
actual bugs. GCC defines `void (*)(void)` as a special case that matches
anything so we can silence warnings by double-casting through GCallback.
In the previous example, the warning is silenced by changing the code to
read `g_slist_free(list, (GFunc)(GCallback)g_free, NULL);`).
* fixup! fix "unused in lambda capture" warnings by clang++
* fixup! fix "unused in lambda capture" warnings by clang++
* fix two more libtransmission compiler warnings
* fix: in watchdir, use TR_ENABLE_ASSERTS not NDEBUG
2019-11-06 11:27:03 -06:00
|
|
|
return [func](RpcResponseFuture const&)
|
2017-04-19 15:04:45 +03:00
|
|
|
{
|
|
|
|
func();
|
|
|
|
};
|
2016-04-19 20:41:59 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
private:
|
2016-04-19 20:41:59 +00:00
|
|
|
bool myTolerateErrors;
|
|
|
|
QFutureInterface<RpcResponse> myPromise;
|
|
|
|
QQueue<QPair<QueuedFunction, ErrorHandlerFunction>> myQueue;
|
|
|
|
ErrorHandlerFunction myNextErrorHandler;
|
|
|
|
QFutureWatcher<RpcResponse> myFutureWatcher;
|
|
|
|
};
|