qtconcurrentmapkernel.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtCore module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QTCONCURRENT_MAPKERNEL_H
  40. #define QTCONCURRENT_MAPKERNEL_H
  41. #include <QtConcurrent/qtconcurrent_global.h>
  42. #ifndef QT_NO_CONCURRENT
  43. #include <QtConcurrent/qtconcurrentiteratekernel.h>
  44. #include <QtConcurrent/qtconcurrentreducekernel.h>
  45. QT_BEGIN_NAMESPACE
  46. #ifndef Q_QDOC
  47. namespace QtConcurrent {
  48. // map kernel, works with both parallel-for and parallel-while
  49. template <typename Iterator, typename MapFunctor>
  50. class MapKernel : public IterateKernel<Iterator, void>
  51. {
  52. MapFunctor map;
  53. public:
  54. typedef void ReturnType;
  55. MapKernel(Iterator begin, Iterator end, MapFunctor _map)
  56. : IterateKernel<Iterator, void>(begin, end), map(_map)
  57. { }
  58. bool runIteration(Iterator it, int, void *)
  59. {
  60. map(*it);
  61. return false;
  62. }
  63. bool runIterations(Iterator sequenceBeginIterator, int beginIndex, int endIndex, void *)
  64. {
  65. Iterator it = sequenceBeginIterator;
  66. std::advance(it, beginIndex);
  67. for (int i = beginIndex; i < endIndex; ++i) {
  68. runIteration(it, i, 0);
  69. std::advance(it, 1);
  70. }
  71. return false;
  72. }
  73. };
  74. template <typename ReducedResultType,
  75. typename Iterator,
  76. typename MapFunctor,
  77. typename ReduceFunctor,
  78. typename Reducer = ReduceKernel<ReduceFunctor,
  79. ReducedResultType,
  80. typename MapFunctor::result_type> >
  81. class MappedReducedKernel : public IterateKernel<Iterator, ReducedResultType>
  82. {
  83. ReducedResultType reducedResult;
  84. MapFunctor map;
  85. ReduceFunctor reduce;
  86. Reducer reducer;
  87. public:
  88. typedef ReducedResultType ReturnType;
  89. MappedReducedKernel(Iterator begin, Iterator end, MapFunctor _map, ReduceFunctor _reduce, ReduceOptions reduceOptions)
  90. : IterateKernel<Iterator, ReducedResultType>(begin, end), reducedResult(), map(_map), reduce(_reduce), reducer(reduceOptions)
  91. { }
  92. MappedReducedKernel(ReducedResultType initialValue,
  93. MapFunctor _map,
  94. ReduceFunctor _reduce)
  95. : reducedResult(initialValue), map(_map), reduce(_reduce)
  96. { }
  97. bool runIteration(Iterator it, int index, ReducedResultType *)
  98. {
  99. IntermediateResults<typename MapFunctor::result_type> results;
  100. results.begin = index;
  101. results.end = index + 1;
  102. results.vector.append(map(*it));
  103. reducer.runReduce(reduce, reducedResult, results);
  104. return false;
  105. }
  106. bool runIterations(Iterator sequenceBeginIterator, int begin, int end, ReducedResultType *)
  107. {
  108. IntermediateResults<typename MapFunctor::result_type> results;
  109. results.begin = begin;
  110. results.end = end;
  111. results.vector.reserve(end - begin);
  112. Iterator it = sequenceBeginIterator;
  113. std::advance(it, begin);
  114. for (int i = begin; i < end; ++i) {
  115. results.vector.append(map(*(it)));
  116. std::advance(it, 1);
  117. }
  118. reducer.runReduce(reduce, reducedResult, results);
  119. return false;
  120. }
  121. void finish()
  122. {
  123. reducer.finish(reduce, reducedResult);
  124. }
  125. bool shouldThrottleThread()
  126. {
  127. return IterateKernel<Iterator, ReducedResultType>::shouldThrottleThread() || reducer.shouldThrottle();
  128. }
  129. bool shouldStartThread()
  130. {
  131. return IterateKernel<Iterator, ReducedResultType>::shouldStartThread() && reducer.shouldStartThread();
  132. }
  133. typedef ReducedResultType ResultType;
  134. ReducedResultType *result()
  135. {
  136. return &reducedResult;
  137. }
  138. };
  139. template <typename Iterator, typename MapFunctor>
  140. class MappedEachKernel : public IterateKernel<Iterator, typename MapFunctor::result_type>
  141. {
  142. MapFunctor map;
  143. typedef typename MapFunctor::result_type T;
  144. public:
  145. typedef T ReturnType;
  146. typedef T ResultType;
  147. MappedEachKernel(Iterator begin, Iterator end, MapFunctor _map)
  148. : IterateKernel<Iterator, T>(begin, end), map(_map) { }
  149. bool runIteration(Iterator it, int, T *result)
  150. {
  151. *result = map(*it);
  152. return true;
  153. }
  154. bool runIterations(Iterator sequenceBeginIterator, int begin, int end, T *results)
  155. {
  156. Iterator it = sequenceBeginIterator;
  157. std::advance(it, begin);
  158. for (int i = begin; i < end; ++i) {
  159. runIteration(it, i, results + (i - begin));
  160. std::advance(it, 1);
  161. }
  162. return true;
  163. }
  164. };
  165. template <typename Iterator, typename Functor>
  166. inline ThreadEngineStarter<void> startMap(Iterator begin, Iterator end, Functor functor)
  167. {
  168. return startThreadEngine(new MapKernel<Iterator, Functor>(begin, end, functor));
  169. }
  170. template <typename T, typename Iterator, typename Functor>
  171. inline ThreadEngineStarter<T> startMapped(Iterator begin, Iterator end, Functor functor)
  172. {
  173. return startThreadEngine(new MappedEachKernel<Iterator, Functor>(begin, end, functor));
  174. }
  175. /*
  176. The SequnceHolder class is used to hold a reference to the
  177. sequence we are working on.
  178. */
  179. template <typename Sequence, typename Base, typename Functor>
  180. struct SequenceHolder1 : public Base
  181. {
  182. SequenceHolder1(const Sequence &_sequence, Functor functor)
  183. : Base(_sequence.begin(), _sequence.end(), functor), sequence(_sequence)
  184. { }
  185. Sequence sequence;
  186. void finish()
  187. {
  188. Base::finish();
  189. // Clear the sequence to make sure all temporaries are destroyed
  190. // before finished is signaled.
  191. sequence = Sequence();
  192. }
  193. };
  194. template <typename T, typename Sequence, typename Functor>
  195. inline ThreadEngineStarter<T> startMapped(const Sequence &sequence, Functor functor)
  196. {
  197. typedef SequenceHolder1<Sequence,
  198. MappedEachKernel<typename Sequence::const_iterator , Functor>, Functor>
  199. SequenceHolderType;
  200. return startThreadEngine(new SequenceHolderType(sequence, functor));
  201. }
  202. template <typename IntermediateType, typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor>
  203. inline ThreadEngineStarter<ResultType> startMappedReduced(const Sequence & sequence,
  204. MapFunctor mapFunctor, ReduceFunctor reduceFunctor,
  205. ReduceOptions options)
  206. {
  207. typedef typename Sequence::const_iterator Iterator;
  208. typedef ReduceKernel<ReduceFunctor, ResultType, IntermediateType> Reducer;
  209. typedef MappedReducedKernel<ResultType, Iterator, MapFunctor, ReduceFunctor, Reducer> MappedReduceType;
  210. typedef SequenceHolder2<Sequence, MappedReduceType, MapFunctor, ReduceFunctor> SequenceHolderType;
  211. return startThreadEngine(new SequenceHolderType(sequence, mapFunctor, reduceFunctor, options));
  212. }
  213. template <typename IntermediateType, typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor>
  214. inline ThreadEngineStarter<ResultType> startMappedReduced(Iterator begin, Iterator end,
  215. MapFunctor mapFunctor, ReduceFunctor reduceFunctor,
  216. ReduceOptions options)
  217. {
  218. typedef ReduceKernel<ReduceFunctor, ResultType, IntermediateType> Reducer;
  219. typedef MappedReducedKernel<ResultType, Iterator, MapFunctor, ReduceFunctor, Reducer> MappedReduceType;
  220. return startThreadEngine(new MappedReduceType(begin, end, mapFunctor, reduceFunctor, options));
  221. }
  222. } // namespace QtConcurrent
  223. #endif //Q_QDOC
  224. QT_END_NAMESPACE
  225. #endif // QT_NO_CONCURRENT
  226. #endif