2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2011-05-07 20:57:49 +00:00
|
|
|
#include <QtWidgets>
|
2012-02-03 13:17:26 +00:00
|
|
|
#include <QtConcurrent>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2017-08-03 13:43:26 +00:00
|
|
|
#include <functional>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2017-08-03 13:43:26 +00:00
|
|
|
using namespace QtConcurrent;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
2017-08-03 13:43:26 +00:00
|
|
|
const int iterations = 20;
|
|
|
|
|
2020-06-22 08:12:38 +00:00
|
|
|
// Prepare the list.
|
|
|
|
QList<int> list;
|
2011-04-27 10:05:43 +00:00
|
|
|
for (int i = 0; i < iterations; ++i)
|
2020-06-22 08:12:38 +00:00
|
|
|
list.append(i);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
// Create a progress dialog.
|
|
|
|
QProgressDialog dialog;
|
|
|
|
dialog.setLabelText(QString("Progressing using %1 thread(s)...").arg(QThread::idealThreadCount()));
|
2013-03-14 23:42:15 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
// Create a QFutureWatcher and connect signals and slots.
|
|
|
|
QFutureWatcher<void> futureWatcher;
|
2017-08-03 13:43:26 +00:00
|
|
|
QObject::connect(&futureWatcher, &QFutureWatcher<void>::finished, &dialog, &QProgressDialog::reset);
|
|
|
|
QObject::connect(&dialog, &QProgressDialog::canceled, &futureWatcher, &QFutureWatcher<void>::cancel);
|
|
|
|
QObject::connect(&futureWatcher, &QFutureWatcher<void>::progressRangeChanged, &dialog, &QProgressDialog::setRange);
|
|
|
|
QObject::connect(&futureWatcher, &QFutureWatcher<void>::progressValueChanged, &dialog, &QProgressDialog::setValue);
|
|
|
|
|
|
|
|
// Our function to compute
|
|
|
|
std::function<void(int&)> spin = [](int &iteration) {
|
|
|
|
const int work = 1000 * 1000 * 40;
|
|
|
|
volatile int v = 0;
|
|
|
|
for (int j = 0; j < work; ++j)
|
|
|
|
++v;
|
|
|
|
|
|
|
|
qDebug() << "iteration" << iteration << "in thread" << QThread::currentThreadId();
|
|
|
|
};
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
// Start the computation.
|
2020-06-22 08:12:38 +00:00
|
|
|
futureWatcher.setFuture(QtConcurrent::map(list, spin));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
// Display the dialog and start the event loop.
|
|
|
|
dialog.exec();
|
2013-03-14 23:42:15 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
futureWatcher.waitForFinished();
|
|
|
|
|
|
|
|
// Query the future to check if was canceled.
|
|
|
|
qDebug() << "Canceled?" << futureWatcher.future().isCanceled();
|
|
|
|
}
|