// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause //! [0] U function(const T &t); //! [0] //! [1] QImage scaled(const QImage &image) { return image.scaled(100, 100); } QList images = ...; QFuture thumbnails = QtConcurrent::mapped(images, scaled); //! [1] //! [2] U function(T &t); //! [2] //! [3] void scale(QImage &image) { image = image.scaled(100, 100); } QList images = ...; QFuture future = QtConcurrent::map(images, scale); //! [3] //! [4] V function(T &result, const U &intermediate) //! [4] //! [5] void addToCollage(QImage &collage, const QImage &thumbnail) { QPainter p(&collage); static QPoint offset = QPoint(0, 0); p.drawImage(offset, thumbnail); offset += ...; } QList images = ...; QFuture collage = QtConcurrent::mappedReduced(images, scaled, addToCollage); //! [5] //! [6] QList images = ...; QFuture thumbnails = QtConcurrent::mapped(images.constBegin(), images.constEnd(), scaled); // Map in-place only works on non-const iterators. QFuture future = QtConcurrent::map(images.begin(), images.end(), scale); QFuture collage = QtConcurrent::mappedReduced(images.constBegin(), images.constEnd(), scaled, addToCollage); //! [6] //! [7] QList images = ...; // Each call blocks until the entire operation is finished. QList future = QtConcurrent::blockingMapped(images, scaled); QtConcurrent::blockingMap(images, scale); QImage collage = QtConcurrent::blockingMappedReduced(images, scaled, addToCollage); //! [7] //! [8] // Squeeze all strings in a QStringList. QStringList strings = ...; QFuture squeezedStrings = QtConcurrent::map(strings, &QString::squeeze); // Swap the rgb values of all pixels on a list of images. QList images = ...; QFuture bgrImages = QtConcurrent::mapped(images, static_cast(&QImage::rgbSwapped)); // Create a set of the lengths of all strings in a list. QStringList strings = ...; QFuture> wordLengths = QtConcurrent::mappedReduced(strings, &QString::length, qOverload(&QSet::insert)); //! [8] //! [9] // Can mix normal functions and member functions with QtConcurrent::mappedReduced(). // Compute the average length of a list of strings. extern void computeAverage(int &average, int length); QStringList strings = ...; QFuture averageWordLength = QtConcurrent::mappedReduced(strings, &QString::length, computeAverage); // Create a set of the color distribution of all images in a list. extern int colorDistribution(const QImage &string); QList images = ...; QFuture> totalColorDistribution = QtConcurrent::mappedReduced(images, colorDistribution, qOverload(&QSet::insert)); //! [9] //! [10] QImage QImage::scaledToWidth(int width, Qt::TransformationMode) const; //! [10] //! [11] struct ImageTransform { void operator()(QImage &result, const QImage &value); }; QFuture thumbNails = QtConcurrent::mappedReduced(images, Scaled(100), ImageTransform(), QtConcurrent::SequentialReduce); //! [11] //! [13] QList images = ...; std::function scale = [](const QImage &img) { return img.scaledToWidth(100, Qt::SmoothTransformation); }; QFuture thumbnails = QtConcurrent::mapped(images, scale); //! [13] //! [14] struct Scaled { Scaled(int size) : m_size(size) { } typedef QImage result_type; QImage operator()(const QImage &image) { return image.scaled(m_size, m_size); } int m_size; }; QList images = ...; QFuture thumbnails = QtConcurrent::mapped(images, Scaled(100)); //! [14] //! [15] QList vector { 1, 2, 3, 4 }; QtConcurrent::blockingMap(vector, [](int &x) { x *= 2; }); int size = 100; QList images = ...; QList thumbnails = QtConcurrent::mapped(images, [&size](const QImage &image) { return image.scaled(size, size); } ).results(); //! [15] //! [16] QList collage = QtConcurrent::mappedReduced(images, [&size](const QImage &image) { return image.scaled(size, size); }, addToCollage ).results(); //! [16] //! [17] QList collage = QtConcurrent::mappedReduced(images, [&size](const QImage &image) { return image.scaled(size, size); }, [](QImage &result, const QImage &value) { // do some transformation } ).results(); //! [17]