mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
1ff8a2aaf4
Co-authored-by: xiphon <xiphon@protonmail.com>
97 lines
2.2 KiB
C++
97 lines
2.2 KiB
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// Copyright (c) 2014-2020, The Monero Project.
|
|
|
|
#include "scheduler.h"
|
|
|
|
FutureScheduler::FutureScheduler(QObject *parent)
|
|
: QObject(parent), Alive(0), Stopping(false)
|
|
{
|
|
}
|
|
|
|
FutureScheduler::~FutureScheduler()
|
|
{
|
|
shutdownWaitForFinished();
|
|
}
|
|
|
|
void FutureScheduler::shutdownWaitForFinished() noexcept
|
|
{
|
|
QMutexLocker locker(&Mutex);
|
|
|
|
Stopping = true;
|
|
while (Alive > 0)
|
|
{
|
|
Condition.wait(&Mutex);
|
|
}
|
|
}
|
|
|
|
QPair<bool, QFuture<void>> FutureScheduler::run(std::function<void()> function) noexcept
|
|
{
|
|
return execute<void>([this, function](QFutureWatcher<void> *) {
|
|
return QtConcurrent::run([this, function] {
|
|
try
|
|
{
|
|
function();
|
|
}
|
|
catch (const std::exception &exception)
|
|
{
|
|
qWarning() << "Exception thrown from async function: " << exception.what();
|
|
}
|
|
done();
|
|
});
|
|
});
|
|
}
|
|
|
|
//QPair<bool, QFuture<QJSValueList>> FutureScheduler::run(std::function<QJSValueList()> function, const QJSValue &callback)
|
|
//{
|
|
// if (!callback.isCallable())
|
|
// {
|
|
// throw std::runtime_error("js callback must be callable");
|
|
// }
|
|
|
|
// return execute<QJSValueList>([this, function, callback](QFutureWatcher<QJSValueList> *watcher) {
|
|
// connect(watcher, &QFutureWatcher<QJSValueList>::finished, [watcher, callback] {
|
|
// QJSValue(callback).call(watcher->future().result());
|
|
// });
|
|
// return QtConcurrent::run([this, function] {
|
|
// QJSValueList result;
|
|
// try
|
|
// {
|
|
// result = function();
|
|
// }
|
|
// catch (const std::exception &exception)
|
|
// {
|
|
// qWarning() << "Exception thrown from async function: " << exception.what();
|
|
// }
|
|
// done();
|
|
// return result;
|
|
// });
|
|
// });
|
|
//}
|
|
|
|
bool FutureScheduler::stopping() const noexcept
|
|
{
|
|
return Stopping;
|
|
}
|
|
|
|
bool FutureScheduler::add() noexcept
|
|
{
|
|
QMutexLocker locker(&Mutex);
|
|
|
|
if (Stopping)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
++Alive;
|
|
return true;
|
|
}
|
|
|
|
void FutureScheduler::done() noexcept
|
|
{
|
|
{
|
|
QMutexLocker locker(&Mutex);
|
|
--Alive;
|
|
}
|
|
|
|
Condition.wakeAll();
|
|
}
|