2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2021-05-11 16:53:03 +02:00
|
|
|
|
|
|
|
|
#include "futuresynchronizer.h"
|
|
|
|
|
|
|
|
|
|
/*! \class Utils::FutureSynchronizer
|
|
|
|
|
|
|
|
|
|
\brief The FutureSynchronizer is an enhanced version of QFutureSynchronizer.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
FutureSynchronizer::~FutureSynchronizer()
|
|
|
|
|
{
|
|
|
|
|
waitForFinished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FutureSynchronizer::isEmpty() const
|
|
|
|
|
{
|
|
|
|
|
return m_futures.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FutureSynchronizer::waitForFinished()
|
|
|
|
|
{
|
2021-05-12 15:58:39 +02:00
|
|
|
if (m_cancelOnWait)
|
|
|
|
|
cancelAllFutures();
|
2021-05-11 16:53:03 +02:00
|
|
|
for (QFuture<void> &future : m_futures)
|
|
|
|
|
future.waitForFinished();
|
|
|
|
|
clearFutures();
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-12 15:58:39 +02:00
|
|
|
void FutureSynchronizer::cancelAllFutures()
|
|
|
|
|
{
|
|
|
|
|
for (QFuture<void> &future : m_futures)
|
|
|
|
|
future.cancel();
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-11 16:53:03 +02:00
|
|
|
void FutureSynchronizer::clearFutures()
|
|
|
|
|
{
|
|
|
|
|
m_futures.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FutureSynchronizer::setCancelOnWait(bool enabled)
|
|
|
|
|
{
|
|
|
|
|
m_cancelOnWait = enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FutureSynchronizer::isCancelOnWait() const
|
|
|
|
|
{
|
|
|
|
|
return m_cancelOnWait;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FutureSynchronizer::flushFinishedFutures()
|
|
|
|
|
{
|
|
|
|
|
QList<QFuture<void>> newFutures;
|
2022-10-07 14:46:06 +02:00
|
|
|
for (const QFuture<void> &future : std::as_const(m_futures)) {
|
2021-05-11 16:53:03 +02:00
|
|
|
if (!future.isFinished())
|
|
|
|
|
newFutures.append(future);
|
|
|
|
|
}
|
|
|
|
|
m_futures = newFutures;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|