2019-07-23 22:18:36 +02:00
|
|
|
#pragma once
|
|
|
|
|
2022-10-30 14:01:54 +01:00
|
|
|
#include "debug/AssertInGuiThread.hpp"
|
2019-07-23 22:18:36 +02:00
|
|
|
|
2022-10-30 14:01:54 +01:00
|
|
|
#include <QCoreApplication>
|
2019-07-23 22:18:36 +02:00
|
|
|
#include <QRunnable>
|
|
|
|
#include <QThreadPool>
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#define async_exec(a) \
|
|
|
|
QThreadPool::globalInstance()->start(new LambdaRunnable(a));
|
|
|
|
|
2019-10-07 15:46:08 +02:00
|
|
|
namespace chatterino {
|
2019-07-23 22:18:36 +02:00
|
|
|
|
|
|
|
class LambdaRunnable : public QRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LambdaRunnable(std::function<void()> action)
|
|
|
|
{
|
2021-04-10 14:34:40 +02:00
|
|
|
this->action_ = std::move(action);
|
2019-07-23 22:18:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void run()
|
|
|
|
{
|
|
|
|
this->action_();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::function<void()> action_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Taken from
|
|
|
|
// https://stackoverflow.com/questions/21646467/how-to-execute-a-functor-or-a-lambda-in-a-given-thread-in-qt-gcd-style
|
|
|
|
// Qt 5/4 - preferred, has least allocations
|
|
|
|
template <typename F>
|
|
|
|
static void postToThread(F &&fun, QObject *obj = qApp)
|
|
|
|
{
|
|
|
|
struct Event : public QEvent {
|
|
|
|
using Fun = typename std::decay<F>::type;
|
|
|
|
Fun fun;
|
|
|
|
Event(Fun &&fun)
|
|
|
|
: QEvent(QEvent::None)
|
|
|
|
, fun(std::move(fun))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
Event(const Fun &fun)
|
|
|
|
: QEvent(QEvent::None)
|
|
|
|
, fun(fun)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~Event() override
|
|
|
|
{
|
|
|
|
fun();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QCoreApplication::postEvent(obj, new Event(std::forward<F>(fun)));
|
|
|
|
}
|
|
|
|
|
2022-11-13 12:07:41 +01:00
|
|
|
template <typename F>
|
|
|
|
static void runInGuiThread(F &&fun)
|
|
|
|
{
|
|
|
|
if (isGuiThread())
|
|
|
|
{
|
|
|
|
fun();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
postToThread(fun);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-07 15:46:08 +02:00
|
|
|
} // namespace chatterino
|