qtconcurrentmap.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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_MAP_H
  40. #define QTCONCURRENT_MAP_H
  41. #include <QtConcurrent/qtconcurrent_global.h>
  42. #ifndef QT_NO_CONCURRENT
  43. #include <QtConcurrent/qtconcurrentmapkernel.h>
  44. #include <QtConcurrent/qtconcurrentreducekernel.h>
  45. #include <QtConcurrent/qtconcurrentfunctionwrappers.h>
  46. #include <QtCore/qstringlist.h>
  47. QT_BEGIN_NAMESPACE
  48. #ifdef Q_QDOC
  49. namespace QtConcurrent {
  50. QFuture<void> map(Sequence &sequence, MapFunction function);
  51. QFuture<void> map(Iterator begin, Iterator end, MapFunction function);
  52. template <typename T>
  53. QFuture<T> mapped(const Sequence &sequence, MapFunction function);
  54. template <typename T>
  55. QFuture<T> mapped(ConstIterator begin, ConstIterator end, MapFunction function);
  56. template <typename T>
  57. QFuture<T> mappedReduced(const Sequence &sequence,
  58. MapFunction function,
  59. ReduceFunction function,
  60. QtConcurrent::ReduceOptions options = UnorderedReduce | SequentialReduce);
  61. template <typename T>
  62. QFuture<T> mappedReduced(ConstIterator begin,
  63. ConstIterator end,
  64. MapFunction function,
  65. ReduceFunction function,
  66. QtConcurrent::ReduceOptions options = UnorderedReduce | SequentialReduce);
  67. void blockingMap(Sequence &sequence, MapFunction function);
  68. void blockingMap(Iterator begin, Iterator end, MapFunction function);
  69. template <typename T>
  70. T blockingMapped(const Sequence &sequence, MapFunction function);
  71. template <typename T>
  72. T blockingMapped(ConstIterator begin, ConstIterator end, MapFunction function);
  73. template <typename T>
  74. T blockingMappedReduced(const Sequence &sequence,
  75. MapFunction function,
  76. ReduceFunction function,
  77. QtConcurrent::ReduceOptions options = UnorderedReduce | SequentialReduce);
  78. template <typename T>
  79. T blockingMappedReduced(ConstIterator begin,
  80. ConstIterator end,
  81. MapFunction function,
  82. ReduceFunction function,
  83. QtConcurrent::ReduceOptions options = UnorderedReduce | SequentialReduce);
  84. } // namespace QtConcurrent
  85. #else
  86. namespace QtConcurrent {
  87. // map() on sequences
  88. template <typename Sequence, typename MapFunctor>
  89. QFuture<void> map(Sequence &sequence, MapFunctor map)
  90. {
  91. return startMap(sequence.begin(), sequence.end(), QtPrivate::createFunctionWrapper(map));
  92. }
  93. // map() on iterators
  94. template <typename Iterator, typename MapFunctor>
  95. QFuture<void> map(Iterator begin, Iterator end, MapFunctor map)
  96. {
  97. return startMap(begin, end, QtPrivate::createFunctionWrapper(map));
  98. }
  99. // mappedReduced() for sequences.
  100. template <typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor>
  101. QFuture<ResultType> mappedReduced(const Sequence &sequence,
  102. MapFunctor map,
  103. ReduceFunctor reduce,
  104. ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
  105. {
  106. return startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, ResultType>
  107. (sequence,
  108. QtPrivate::createFunctionWrapper(map),
  109. QtPrivate::createFunctionWrapper(reduce),
  110. options);
  111. }
  112. template <typename Sequence, typename MapFunctor, typename ReduceFunctor>
  113. QFuture<typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType> mappedReduced(const Sequence &sequence,
  114. MapFunctor map,
  115. ReduceFunctor reduce,
  116. ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
  117. {
  118. return startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType>
  119. (sequence,
  120. QtPrivate::createFunctionWrapper(map),
  121. QtPrivate::createFunctionWrapper(reduce),
  122. options);
  123. }
  124. // mappedReduced() for iterators
  125. template <typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor>
  126. QFuture<ResultType> mappedReduced(Iterator begin,
  127. Iterator end,
  128. MapFunctor map,
  129. ReduceFunctor reduce,
  130. ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
  131. {
  132. return startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, ResultType>
  133. (begin, end,
  134. QtPrivate::createFunctionWrapper(map),
  135. QtPrivate::createFunctionWrapper(reduce),
  136. options);
  137. }
  138. template <typename Iterator, typename MapFunctor, typename ReduceFunctor>
  139. QFuture<typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType> mappedReduced(Iterator begin,
  140. Iterator end,
  141. MapFunctor map,
  142. ReduceFunctor reduce,
  143. ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
  144. {
  145. return startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType>
  146. (begin, end,
  147. QtPrivate::createFunctionWrapper(map),
  148. QtPrivate::createFunctionWrapper(reduce),
  149. options);
  150. }
  151. // mapped() for sequences
  152. template <typename Sequence, typename MapFunctor>
  153. QFuture<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType> mapped(const Sequence &sequence, MapFunctor map)
  154. {
  155. return startMapped<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType>(sequence, QtPrivate::createFunctionWrapper(map));
  156. }
  157. // mapped() for iterator ranges.
  158. template <typename Iterator, typename MapFunctor>
  159. QFuture<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType> mapped(Iterator begin, Iterator end, MapFunctor map)
  160. {
  161. return startMapped<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType>(begin, end, QtPrivate::createFunctionWrapper(map));
  162. }
  163. // blockingMap() for sequences
  164. template <typename Sequence, typename MapFunctor>
  165. void blockingMap(Sequence &sequence, MapFunctor map)
  166. {
  167. startMap(sequence.begin(), sequence.end(), QtPrivate::createFunctionWrapper(map)).startBlocking();
  168. }
  169. // blockingMap() for iterator ranges
  170. template <typename Iterator, typename MapFunctor>
  171. void blockingMap(Iterator begin, Iterator end, MapFunctor map)
  172. {
  173. startMap(begin, end, QtPrivate::createFunctionWrapper(map)).startBlocking();
  174. }
  175. // blockingMappedReduced() for sequences
  176. template <typename ResultType, typename Sequence, typename MapFunctor, typename ReduceFunctor>
  177. ResultType blockingMappedReduced(const Sequence &sequence,
  178. MapFunctor map,
  179. ReduceFunctor reduce,
  180. ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
  181. {
  182. return QtConcurrent::startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, ResultType>
  183. (sequence,
  184. QtPrivate::createFunctionWrapper(map),
  185. QtPrivate::createFunctionWrapper(reduce),
  186. options)
  187. .startBlocking();
  188. }
  189. template <typename MapFunctor, typename ReduceFunctor, typename Sequence>
  190. typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType blockingMappedReduced(const Sequence &sequence,
  191. MapFunctor map,
  192. ReduceFunctor reduce,
  193. ReduceOptions options = ReduceOptions(UnorderedReduce | SequentialReduce))
  194. {
  195. return QtConcurrent::startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType>
  196. (sequence,
  197. QtPrivate::createFunctionWrapper(map),
  198. QtPrivate::createFunctionWrapper(reduce),
  199. options)
  200. .startBlocking();
  201. }
  202. // blockingMappedReduced() for iterator ranges
  203. template <typename ResultType, typename Iterator, typename MapFunctor, typename ReduceFunctor>
  204. ResultType blockingMappedReduced(Iterator begin,
  205. Iterator end,
  206. MapFunctor map,
  207. ReduceFunctor reduce,
  208. QtConcurrent::ReduceOptions options = QtConcurrent::ReduceOptions(QtConcurrent::UnorderedReduce | QtConcurrent::SequentialReduce))
  209. {
  210. return QtConcurrent::startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, ResultType>
  211. (begin, end,
  212. QtPrivate::createFunctionWrapper(map),
  213. QtPrivate::createFunctionWrapper(reduce),
  214. options)
  215. .startBlocking();
  216. }
  217. template <typename Iterator, typename MapFunctor, typename ReduceFunctor>
  218. typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType blockingMappedReduced(Iterator begin,
  219. Iterator end,
  220. MapFunctor map,
  221. ReduceFunctor reduce,
  222. QtConcurrent::ReduceOptions options = QtConcurrent::ReduceOptions(QtConcurrent::UnorderedReduce | QtConcurrent::SequentialReduce))
  223. {
  224. return QtConcurrent::startMappedReduced<typename QtPrivate::MapResultType<void, MapFunctor>::ResultType, typename QtPrivate::ReduceResultType<ReduceFunctor>::ResultType>
  225. (begin, end,
  226. QtPrivate::createFunctionWrapper(map),
  227. QtPrivate::createFunctionWrapper(reduce),
  228. options)
  229. .startBlocking();
  230. }
  231. // mapped() for sequences with a different putput sequence type.
  232. template <typename OutputSequence, typename InputSequence, typename MapFunctor>
  233. OutputSequence blockingMapped(const InputSequence &sequence, MapFunctor map)
  234. {
  235. return blockingMappedReduced<OutputSequence>
  236. (sequence,
  237. QtPrivate::createFunctionWrapper(map),
  238. QtPrivate::PushBackWrapper(),
  239. QtConcurrent::OrderedReduce);
  240. }
  241. template <typename MapFunctor, typename InputSequence>
  242. typename QtPrivate::MapResultType<InputSequence, MapFunctor>::ResultType blockingMapped(const InputSequence &sequence, MapFunctor map)
  243. {
  244. typedef typename QtPrivate::MapResultType<InputSequence, MapFunctor>::ResultType OutputSequence;
  245. return blockingMappedReduced<OutputSequence>
  246. (sequence,
  247. QtPrivate::createFunctionWrapper(map),
  248. QtPrivate::PushBackWrapper(),
  249. QtConcurrent::OrderedReduce);
  250. }
  251. // mapped() for iterator ranges
  252. template <typename Sequence, typename Iterator, typename MapFunctor>
  253. Sequence blockingMapped(Iterator begin, Iterator end, MapFunctor map)
  254. {
  255. return blockingMappedReduced<Sequence>
  256. (begin, end,
  257. QtPrivate::createFunctionWrapper(map),
  258. QtPrivate::PushBackWrapper(),
  259. QtConcurrent::OrderedReduce);
  260. }
  261. template <typename Iterator, typename MapFunctor>
  262. typename QtPrivate::MapResultType<Iterator, MapFunctor>::ResultType blockingMapped(Iterator begin, Iterator end, MapFunctor map)
  263. {
  264. typedef typename QtPrivate::MapResultType<Iterator, MapFunctor>::ResultType OutputSequence;
  265. return blockingMappedReduced<OutputSequence>
  266. (begin, end,
  267. QtPrivate::createFunctionWrapper(map),
  268. QtPrivate::PushBackWrapper(),
  269. QtConcurrent::OrderedReduce);
  270. }
  271. } // namespace QtConcurrent
  272. #endif // Q_QDOC
  273. QT_END_NAMESPACE
  274. #endif // QT_NO_CONCURRENT
  275. #endif